1 /* Target-dependent code for the Xtensa port of GDB, the GNU debugger.
3 Copyright (C) 2003-2023 Free Software Foundation, Inc.
5 This file is part of GDB.
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "solib-svr4.h"
29 #include "reggroups.h"
32 #include "dwarf2/frame.h"
33 #include "frame-base.h"
34 #include "frame-unwind.h"
36 #include "arch-utils.h"
42 #include "xtensa-isa.h"
43 #include "xtensa-tdep.h"
44 #include "xtensa-config.h"
48 static unsigned int xtensa_debug_level
= 0;
50 #define DEBUGWARN(args...) \
51 if (xtensa_debug_level > 0) \
52 gdb_printf (gdb_stdlog, "(warn ) " args)
54 #define DEBUGINFO(args...) \
55 if (xtensa_debug_level > 1) \
56 gdb_printf (gdb_stdlog, "(info ) " args)
58 #define DEBUGTRACE(args...) \
59 if (xtensa_debug_level > 2) \
60 gdb_printf (gdb_stdlog, "(trace) " args)
62 #define DEBUGVERB(args...) \
63 if (xtensa_debug_level > 3) \
64 gdb_printf (gdb_stdlog, "(verb ) " args)
67 /* According to the ABI, the SP must be aligned to 16-byte boundaries. */
68 #define SP_ALIGNMENT 16
71 /* On Windowed ABI, we use a6 through a11 for passing arguments
72 to a function called by GDB because CALL4 is used. */
73 #define ARGS_NUM_REGS 6
74 #define REGISTER_SIZE 4
77 /* Extract the call size from the return address or PS register. */
78 #define PS_CALLINC_SHIFT 16
79 #define PS_CALLINC_MASK 0x00030000
80 #define CALLINC(ps) (((ps) & PS_CALLINC_MASK) >> PS_CALLINC_SHIFT)
81 #define WINSIZE(ra) (4 * (( (ra) >> 30) & 0x3))
83 /* On TX, hardware can be configured without Exception Option.
84 There is no PS register in this case. Inside XT-GDB, let us treat
85 it as a virtual read-only register always holding the same value. */
88 /* ABI-independent macros. */
89 #define ARG_NOF(tdep) \
91 == CallAbiCall0Only ? C0_NARGS : (ARGS_NUM_REGS))
92 #define ARG_1ST(tdep) \
93 (tdep->call_abi == CallAbiCall0Only \
94 ? (tdep->a0_base + C0_ARGS) \
95 : (tdep->a0_base + 6))
97 /* XTENSA_IS_ENTRY tests whether the first byte of an instruction
98 indicates that the instruction is an ENTRY instruction. */
100 #define XTENSA_IS_ENTRY(gdbarch, op1) \
101 ((gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG) \
102 ? ((op1) == 0x6c) : ((op1) == 0x36))
104 #define XTENSA_ENTRY_LENGTH 3
106 /* windowing_enabled() returns true, if windowing is enabled.
107 WOE must be set to 1; EXCM to 0.
108 Note: We assume that EXCM is always 0 for XEA1. */
110 #define PS_WOE (1<<18)
111 #define PS_EXC (1<<4)
113 /* Big enough to hold the size of the largest register in bytes. */
114 #define XTENSA_MAX_REGISTER_SIZE 64
117 windowing_enabled (struct gdbarch
*gdbarch
, unsigned int ps
)
119 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
121 /* If we know CALL0 ABI is set explicitly, say it is Call0. */
122 if (tdep
->call_abi
== CallAbiCall0Only
)
125 return ((ps
& PS_EXC
) == 0 && (ps
& PS_WOE
) != 0);
128 /* Convert a live A-register number to the corresponding AR-register
131 arreg_number (struct gdbarch
*gdbarch
, int a_regnum
, ULONGEST wb
)
133 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
136 arreg
= a_regnum
- tdep
->a0_base
;
137 arreg
+= (wb
& ((tdep
->num_aregs
- 1) >> 2)) << WB_SHIFT
;
138 arreg
&= tdep
->num_aregs
- 1;
140 return arreg
+ tdep
->ar_base
;
143 /* Convert a live AR-register number to the corresponding A-register order
144 number in a range [0..15]. Return -1, if AR_REGNUM is out of WB window. */
146 areg_number (struct gdbarch
*gdbarch
, int ar_regnum
, unsigned int wb
)
148 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
151 areg
= ar_regnum
- tdep
->ar_base
;
152 if (areg
< 0 || areg
>= tdep
->num_aregs
)
154 areg
= (areg
- wb
* 4) & (tdep
->num_aregs
- 1);
155 return (areg
> 15) ? -1 : areg
;
158 /* Read Xtensa register directly from the hardware. */
160 xtensa_read_register (int regnum
)
164 regcache_raw_read_unsigned (get_current_regcache (), regnum
, &value
);
165 return (unsigned long) value
;
168 /* Write Xtensa register directly to the hardware. */
170 xtensa_write_register (int regnum
, ULONGEST value
)
172 regcache_raw_write_unsigned (get_current_regcache (), regnum
, value
);
175 /* Return the window size of the previous call to the function from which we
178 This function is used to extract the return value after a called function
179 has returned to the caller. On Xtensa, the register that holds the return
180 value (from the perspective of the caller) depends on what call
181 instruction was used. For now, we are assuming that the call instruction
182 precedes the current address, so we simply analyze the call instruction.
183 If we are in a dummy frame, we simply return 4 as we used a 'pseudo-call4'
184 method to call the inferior function. */
187 extract_call_winsize (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
189 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
194 DEBUGTRACE ("extract_call_winsize (pc = 0x%08x)\n", (int) pc
);
196 /* Read the previous instruction (should be a call[x]{4|8|12}. */
197 read_memory (pc
-3, buf
, 3);
198 insn
= extract_unsigned_integer (buf
, 3, byte_order
);
200 /* Decode call instruction:
202 call{0,4,8,12} OFFSET || {00,01,10,11} || 0101
203 callx{0,4,8,12} OFFSET || 11 || {00,01,10,11} || 0000
205 call{0,4,8,12} 0101 || {00,01,10,11} || OFFSET
206 callx{0,4,8,12} 0000 || {00,01,10,11} || 11 || OFFSET. */
208 if (byte_order
== BFD_ENDIAN_LITTLE
)
210 if (((insn
& 0xf) == 0x5) || ((insn
& 0xcf) == 0xc0))
211 winsize
= (insn
& 0x30) >> 2; /* 0, 4, 8, 12. */
215 if (((insn
>> 20) == 0x5) || (((insn
>> 16) & 0xf3) == 0x03))
216 winsize
= (insn
>> 16) & 0xc; /* 0, 4, 8, 12. */
222 /* REGISTER INFORMATION */
224 /* Find register by name. */
226 xtensa_find_register_by_name (struct gdbarch
*gdbarch
, const char *name
)
229 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
231 for (i
= 0; i
< gdbarch_num_cooked_regs (gdbarch
); i
++)
232 if (strcasecmp (tdep
->regmap
[i
].name
, name
) == 0)
238 /* Returns the name of a register. */
240 xtensa_register_name (struct gdbarch
*gdbarch
, int regnum
)
242 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
244 /* Return the name stored in the register map. */
245 return tdep
->regmap
[regnum
].name
;
248 /* Return the type of a register. Create a new type, if necessary. */
251 xtensa_register_type (struct gdbarch
*gdbarch
, int regnum
)
253 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
255 /* Return signed integer for ARx and Ax registers. */
256 if ((regnum
>= tdep
->ar_base
257 && regnum
< tdep
->ar_base
+ tdep
->num_aregs
)
258 || (regnum
>= tdep
->a0_base
259 && regnum
< tdep
->a0_base
+ 16))
260 return builtin_type (gdbarch
)->builtin_int
;
262 if (regnum
== gdbarch_pc_regnum (gdbarch
)
263 || regnum
== tdep
->a0_base
+ 1)
264 return builtin_type (gdbarch
)->builtin_data_ptr
;
266 /* Return the stored type for all other registers. */
267 else if (regnum
>= 0 && regnum
< gdbarch_num_cooked_regs (gdbarch
))
269 xtensa_register_t
* reg
= &tdep
->regmap
[regnum
];
271 /* Set ctype for this register (only the first time). */
275 struct ctype_cache
*tp
;
276 int size
= reg
->byte_size
;
278 /* We always use the memory representation,
279 even if the register width is smaller. */
283 reg
->ctype
= builtin_type (gdbarch
)->builtin_uint8
;
287 reg
->ctype
= builtin_type (gdbarch
)->builtin_uint16
;
291 reg
->ctype
= builtin_type (gdbarch
)->builtin_uint32
;
295 reg
->ctype
= builtin_type (gdbarch
)->builtin_uint64
;
299 reg
->ctype
= builtin_type (gdbarch
)->builtin_uint128
;
303 for (tp
= tdep
->type_entries
; tp
!= NULL
; tp
= tp
->next
)
304 if (tp
->size
== size
)
309 std::string name
= string_printf ("int%d", size
* 8);
311 tp
= XNEW (struct ctype_cache
);
312 tp
->next
= tdep
->type_entries
;
313 tdep
->type_entries
= tp
;
316 = arch_integer_type (gdbarch
, size
* 8, 1, name
.c_str ());
319 reg
->ctype
= tp
->virtual_type
;
325 internal_error (_("invalid register number %d"), regnum
);
330 /* Return the 'local' register number for stubs, dwarf2, etc.
331 The debugging information enumerates registers starting from 0 for A0
332 to n for An. So, we only have to add the base number for A0. */
335 xtensa_reg_to_regnum (struct gdbarch
*gdbarch
, int regnum
)
338 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
340 if (regnum
>= 0 && regnum
< 16)
341 return tdep
->a0_base
+ regnum
;
343 for (i
= 0; i
< gdbarch_num_cooked_regs (gdbarch
); i
++)
344 if (regnum
== tdep
->regmap
[i
].target_number
)
351 /* Write the bits of a masked register to the various registers.
352 Only the masked areas of these registers are modified; the other
353 fields are untouched. The size of masked registers is always less
354 than or equal to 32 bits. */
357 xtensa_register_write_masked (struct regcache
*regcache
,
358 xtensa_register_t
*reg
, const gdb_byte
*buffer
)
360 unsigned int value
[(XTENSA_MAX_REGISTER_SIZE
+ 3) / 4];
361 const xtensa_mask_t
*mask
= reg
->mask
;
363 int shift
= 0; /* Shift for next mask (mod 32). */
364 int start
, size
; /* Start bit and size of current mask. */
366 unsigned int *ptr
= value
;
367 unsigned int regval
, m
, mem
= 0;
369 int bytesize
= reg
->byte_size
;
370 int bitsize
= bytesize
* 8;
373 DEBUGTRACE ("xtensa_register_write_masked ()\n");
375 /* Copy the masked register to host byte-order. */
376 if (gdbarch_byte_order (regcache
->arch ()) == BFD_ENDIAN_BIG
)
377 for (i
= 0; i
< bytesize
; i
++)
380 mem
|= (buffer
[bytesize
- i
- 1] << 24);
385 for (i
= 0; i
< bytesize
; i
++)
388 mem
|= (buffer
[i
] << 24);
393 /* We might have to shift the final value:
394 bytesize & 3 == 0 -> nothing to do, we use the full 32 bits,
395 bytesize & 3 == x -> shift (4-x) * 8. */
397 *ptr
= mem
>> (((0 - bytesize
) & 3) * 8);
401 /* Write the bits to the masked areas of the other registers. */
402 for (i
= 0; i
< mask
->count
; i
++)
404 start
= mask
->mask
[i
].bit_start
;
405 size
= mask
->mask
[i
].bit_size
;
406 regval
= mem
>> shift
;
408 if ((shift
+= size
) > bitsize
)
409 error (_("size of all masks is larger than the register"));
418 regval
|= mem
<< (size
- shift
);
421 /* Make sure we have a valid register. */
422 r
= mask
->mask
[i
].reg_num
;
423 if (r
>= 0 && size
> 0)
425 /* Don't overwrite the unmasked areas. */
427 regcache_cooked_read_unsigned (regcache
, r
, &old_val
);
428 m
= 0xffffffff >> (32 - size
) << start
;
430 regval
= (regval
& m
) | (old_val
& ~m
);
431 regcache_cooked_write_unsigned (regcache
, r
, regval
);
437 /* Read a tie state or mapped registers. Read the masked areas
438 of the registers and assemble them into a single value. */
440 static enum register_status
441 xtensa_register_read_masked (readable_regcache
*regcache
,
442 xtensa_register_t
*reg
, gdb_byte
*buffer
)
444 unsigned int value
[(XTENSA_MAX_REGISTER_SIZE
+ 3) / 4];
445 const xtensa_mask_t
*mask
= reg
->mask
;
450 unsigned int *ptr
= value
;
451 unsigned int regval
, mem
= 0;
453 int bytesize
= reg
->byte_size
;
454 int bitsize
= bytesize
* 8;
457 DEBUGTRACE ("xtensa_register_read_masked (reg \"%s\", ...)\n",
458 reg
->name
== 0 ? "" : reg
->name
);
460 /* Assemble the register from the masked areas of other registers. */
461 for (i
= 0; i
< mask
->count
; i
++)
463 int r
= mask
->mask
[i
].reg_num
;
466 enum register_status status
;
469 status
= regcache
->cooked_read (r
, &val
);
470 if (status
!= REG_VALID
)
472 regval
= (unsigned int) val
;
477 start
= mask
->mask
[i
].bit_start
;
478 size
= mask
->mask
[i
].bit_size
;
483 regval
&= (0xffffffff >> (32 - size
));
485 mem
|= regval
<< shift
;
487 if ((shift
+= size
) > bitsize
)
488 error (_("size of all masks is larger than the register"));
499 mem
= regval
>> (size
- shift
);
506 /* Copy value to target byte order. */
510 if (gdbarch_byte_order (regcache
->arch ()) == BFD_ENDIAN_BIG
)
511 for (i
= 0; i
< bytesize
; i
++)
515 buffer
[bytesize
- i
- 1] = mem
& 0xff;
519 for (i
= 0; i
< bytesize
; i
++)
523 buffer
[i
] = mem
& 0xff;
531 /* Read pseudo registers. */
533 static enum register_status
534 xtensa_pseudo_register_read (struct gdbarch
*gdbarch
,
535 readable_regcache
*regcache
,
539 DEBUGTRACE ("xtensa_pseudo_register_read (... regnum = %d (%s) ...)\n",
540 regnum
, xtensa_register_name (gdbarch
, regnum
));
541 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
543 /* Read aliases a0..a15, if this is a Windowed ABI. */
544 if (tdep
->isa_use_windowed_registers
545 && (regnum
>= tdep
->a0_base
)
546 && (regnum
<= tdep
->a0_base
+ 15))
549 enum register_status status
;
551 status
= regcache
->raw_read (tdep
->wb_regnum
,
553 if (status
!= REG_VALID
)
555 regnum
= arreg_number (gdbarch
, regnum
, value
);
558 /* We can always read non-pseudo registers. */
559 if (regnum
>= 0 && regnum
< gdbarch_num_regs (gdbarch
))
560 return regcache
->raw_read (regnum
, buffer
);
562 /* We have to find out how to deal with priveleged registers.
563 Let's treat them as pseudo-registers, but we cannot read/write them. */
565 else if (tdep
->call_abi
== CallAbiCall0Only
566 || regnum
< tdep
->a0_base
)
568 buffer
[0] = (gdb_byte
)0;
569 buffer
[1] = (gdb_byte
)0;
570 buffer
[2] = (gdb_byte
)0;
571 buffer
[3] = (gdb_byte
)0;
574 /* Pseudo registers. */
575 else if (regnum
>= 0 && regnum
< gdbarch_num_cooked_regs (gdbarch
))
577 xtensa_register_t
*reg
= &tdep
->regmap
[regnum
];
578 xtensa_register_type_t type
= reg
->type
;
579 int flags
= tdep
->target_flags
;
581 /* We cannot read Unknown or Unmapped registers. */
582 if (type
== xtRegisterTypeUnmapped
|| type
== xtRegisterTypeUnknown
)
584 if ((flags
& xtTargetFlagsNonVisibleRegs
) == 0)
586 warning (_("cannot read register %s"),
587 xtensa_register_name (gdbarch
, regnum
));
592 /* Some targets cannot read TIE register files. */
593 else if (type
== xtRegisterTypeTieRegfile
)
595 /* Use 'fetch' to get register? */
596 if (flags
& xtTargetFlagsUseFetchStore
)
598 warning (_("cannot read register"));
602 /* On some targets (esp. simulators), we can always read the reg. */
603 else if ((flags
& xtTargetFlagsNonVisibleRegs
) == 0)
605 warning (_("cannot read register"));
610 /* We can always read mapped registers. */
611 else if (type
== xtRegisterTypeMapped
|| type
== xtRegisterTypeTieState
)
612 return xtensa_register_read_masked (regcache
, reg
, buffer
);
614 /* Assume that we can read the register. */
615 return regcache
->raw_read (regnum
, buffer
);
618 internal_error (_("invalid register number %d"), regnum
);
622 /* Write pseudo registers. */
625 xtensa_pseudo_register_write (struct gdbarch
*gdbarch
,
626 struct regcache
*regcache
,
628 const gdb_byte
*buffer
)
630 DEBUGTRACE ("xtensa_pseudo_register_write (... regnum = %d (%s) ...)\n",
631 regnum
, xtensa_register_name (gdbarch
, regnum
));
632 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
634 /* Renumber register, if aliases a0..a15 on Windowed ABI. */
635 if (tdep
->isa_use_windowed_registers
636 && (regnum
>= tdep
->a0_base
)
637 && (regnum
<= tdep
->a0_base
+ 15))
640 regcache_raw_read_unsigned (regcache
,
641 tdep
->wb_regnum
, &value
);
642 regnum
= arreg_number (gdbarch
, regnum
, value
);
645 /* We can always write 'core' registers.
646 Note: We might have converted Ax->ARy. */
647 if (regnum
>= 0 && regnum
< gdbarch_num_regs (gdbarch
))
648 regcache
->raw_write (regnum
, buffer
);
650 /* We have to find out how to deal with priveleged registers.
651 Let's treat them as pseudo-registers, but we cannot read/write them. */
653 else if (regnum
< tdep
->a0_base
)
657 /* Pseudo registers. */
658 else if (regnum
>= 0 && regnum
< gdbarch_num_cooked_regs (gdbarch
))
660 xtensa_register_t
*reg
= &tdep
->regmap
[regnum
];
661 xtensa_register_type_t type
= reg
->type
;
662 int flags
= tdep
->target_flags
;
664 /* On most targets, we cannot write registers
665 of type "Unknown" or "Unmapped". */
666 if (type
== xtRegisterTypeUnmapped
|| type
== xtRegisterTypeUnknown
)
668 if ((flags
& xtTargetFlagsNonVisibleRegs
) == 0)
670 warning (_("cannot write register %s"),
671 xtensa_register_name (gdbarch
, regnum
));
676 /* Some targets cannot read TIE register files. */
677 else if (type
== xtRegisterTypeTieRegfile
)
679 /* Use 'store' to get register? */
680 if (flags
& xtTargetFlagsUseFetchStore
)
682 warning (_("cannot write register"));
686 /* On some targets (esp. simulators), we can always write
688 else if ((flags
& xtTargetFlagsNonVisibleRegs
) == 0)
690 warning (_("cannot write register"));
695 /* We can always write mapped registers. */
696 else if (type
== xtRegisterTypeMapped
|| type
== xtRegisterTypeTieState
)
698 xtensa_register_write_masked (regcache
, reg
, buffer
);
702 /* Assume that we can write the register. */
703 regcache
->raw_write (regnum
, buffer
);
706 internal_error (_("invalid register number %d"), regnum
);
709 static const reggroup
*xtensa_ar_reggroup
;
710 static const reggroup
*xtensa_user_reggroup
;
711 static const reggroup
*xtensa_vectra_reggroup
;
712 static const reggroup
*xtensa_cp
[XTENSA_MAX_COPROCESSOR
];
715 xtensa_init_reggroups (void)
719 xtensa_ar_reggroup
= reggroup_new ("ar", USER_REGGROUP
);
720 xtensa_user_reggroup
= reggroup_new ("user", USER_REGGROUP
);
721 xtensa_vectra_reggroup
= reggroup_new ("vectra", USER_REGGROUP
);
723 for (i
= 0; i
< XTENSA_MAX_COPROCESSOR
; i
++)
724 xtensa_cp
[i
] = reggroup_new (xstrprintf ("cp%d", i
).release (),
729 xtensa_add_reggroups (struct gdbarch
*gdbarch
)
731 /* Xtensa-specific groups. */
732 reggroup_add (gdbarch
, xtensa_ar_reggroup
);
733 reggroup_add (gdbarch
, xtensa_user_reggroup
);
734 reggroup_add (gdbarch
, xtensa_vectra_reggroup
);
736 for (int i
= 0; i
< XTENSA_MAX_COPROCESSOR
; i
++)
737 reggroup_add (gdbarch
, xtensa_cp
[i
]);
741 xtensa_coprocessor_register_group (const struct reggroup
*group
)
745 for (i
= 0; i
< XTENSA_MAX_COPROCESSOR
; i
++)
746 if (group
== xtensa_cp
[i
])
752 #define SAVE_REST_FLAGS (XTENSA_REGISTER_FLAGS_READABLE \
753 | XTENSA_REGISTER_FLAGS_WRITABLE \
754 | XTENSA_REGISTER_FLAGS_VOLATILE)
756 #define SAVE_REST_VALID (XTENSA_REGISTER_FLAGS_READABLE \
757 | XTENSA_REGISTER_FLAGS_WRITABLE)
760 xtensa_register_reggroup_p (struct gdbarch
*gdbarch
,
762 const struct reggroup
*group
)
764 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
765 xtensa_register_t
* reg
= &tdep
->regmap
[regnum
];
766 xtensa_register_type_t type
= reg
->type
;
767 xtensa_register_group_t rg
= reg
->group
;
770 if (group
== save_reggroup
)
771 /* Every single register should be included into the list of registers
772 to be watched for changes while using -data-list-changed-registers. */
775 /* First, skip registers that are not visible to this target
776 (unknown and unmapped registers when not using ISS). */
778 if (type
== xtRegisterTypeUnmapped
|| type
== xtRegisterTypeUnknown
)
780 if (group
== all_reggroup
)
782 if (group
== xtensa_ar_reggroup
)
783 return rg
& xtRegisterGroupAddrReg
;
784 if (group
== xtensa_user_reggroup
)
785 return rg
& xtRegisterGroupUser
;
786 if (group
== float_reggroup
)
787 return rg
& xtRegisterGroupFloat
;
788 if (group
== general_reggroup
)
789 return rg
& xtRegisterGroupGeneral
;
790 if (group
== system_reggroup
)
791 return rg
& xtRegisterGroupState
;
792 if (group
== vector_reggroup
|| group
== xtensa_vectra_reggroup
)
793 return rg
& xtRegisterGroupVectra
;
794 if (group
== restore_reggroup
)
795 return (regnum
< gdbarch_num_regs (gdbarch
)
796 && (reg
->flags
& SAVE_REST_FLAGS
) == SAVE_REST_VALID
);
797 cp_number
= xtensa_coprocessor_register_group (group
);
799 return rg
& (xtRegisterGroupCP0
<< cp_number
);
805 /* Supply register REGNUM from the buffer specified by GREGS and LEN
806 in the general-purpose register set REGSET to register cache
807 REGCACHE. If REGNUM is -1 do this for all registers in REGSET. */
810 xtensa_supply_gregset (const struct regset
*regset
,
816 const xtensa_elf_gregset_t
*regs
= (const xtensa_elf_gregset_t
*) gregs
;
817 struct gdbarch
*gdbarch
= rc
->arch ();
818 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
821 DEBUGTRACE ("xtensa_supply_gregset (..., regnum==%d, ...)\n", regnum
);
823 if (regnum
== gdbarch_pc_regnum (gdbarch
) || regnum
== -1)
824 rc
->raw_supply (gdbarch_pc_regnum (gdbarch
), (char *) ®s
->pc
);
825 if (regnum
== gdbarch_ps_regnum (gdbarch
) || regnum
== -1)
826 rc
->raw_supply (gdbarch_ps_regnum (gdbarch
), (char *) ®s
->ps
);
827 if (regnum
== tdep
->wb_regnum
|| regnum
== -1)
828 rc
->raw_supply (tdep
->wb_regnum
,
829 (char *) ®s
->windowbase
);
830 if (regnum
== tdep
->ws_regnum
|| regnum
== -1)
831 rc
->raw_supply (tdep
->ws_regnum
,
832 (char *) ®s
->windowstart
);
833 if (regnum
== tdep
->lbeg_regnum
|| regnum
== -1)
834 rc
->raw_supply (tdep
->lbeg_regnum
,
835 (char *) ®s
->lbeg
);
836 if (regnum
== tdep
->lend_regnum
|| regnum
== -1)
837 rc
->raw_supply (tdep
->lend_regnum
,
838 (char *) ®s
->lend
);
839 if (regnum
== tdep
->lcount_regnum
|| regnum
== -1)
840 rc
->raw_supply (tdep
->lcount_regnum
,
841 (char *) ®s
->lcount
);
842 if (regnum
== tdep
->sar_regnum
|| regnum
== -1)
843 rc
->raw_supply (tdep
->sar_regnum
,
844 (char *) ®s
->sar
);
845 if (regnum
>=tdep
->ar_base
846 && regnum
< tdep
->ar_base
849 (regnum
, (char *) ®s
->ar
[regnum
- tdep
->ar_base
]);
850 else if (regnum
== -1)
852 for (i
= 0; i
< tdep
->num_aregs
; ++i
)
853 rc
->raw_supply (tdep
->ar_base
+ i
,
854 (char *) ®s
->ar
[i
]);
859 /* Xtensa register set. */
865 xtensa_supply_gregset
869 /* Iterate over supported core file register note sections. */
872 xtensa_iterate_over_regset_sections (struct gdbarch
*gdbarch
,
873 iterate_over_regset_sections_cb
*cb
,
875 const struct regcache
*regcache
)
877 DEBUGTRACE ("xtensa_iterate_over_regset_sections\n");
879 cb (".reg", sizeof (xtensa_elf_gregset_t
), sizeof (xtensa_elf_gregset_t
),
880 &xtensa_gregset
, NULL
, cb_data
);
884 /* Handling frames. */
886 /* Number of registers to save in case of Windowed ABI. */
887 #define XTENSA_NUM_SAVED_AREGS 12
889 /* Frame cache part for Windowed ABI. */
890 typedef struct xtensa_windowed_frame_cache
892 int wb
; /* WINDOWBASE of the previous frame. */
893 int callsize
; /* Call size of this frame. */
894 int ws
; /* WINDOWSTART of the previous frame. It keeps track of
895 life windows only. If there is no bit set for the
896 window, that means it had been already spilled
897 because of window overflow. */
899 /* Addresses of spilled A-registers.
900 AREGS[i] == -1, if corresponding AR is alive. */
901 CORE_ADDR aregs
[XTENSA_NUM_SAVED_AREGS
];
902 } xtensa_windowed_frame_cache_t
;
904 /* Call0 ABI Definitions. */
906 #define C0_MAXOPDS 3 /* Maximum number of operands for prologue
908 #define C0_CLESV 12 /* Callee-saved registers are here and up. */
909 #define C0_SP 1 /* Register used as SP. */
910 #define C0_FP 15 /* Register used as FP. */
911 #define C0_RA 0 /* Register used as return address. */
912 #define C0_ARGS 2 /* Register used as first arg/retval. */
913 #define C0_NARGS 6 /* Number of A-regs for args/retvals. */
915 /* Each element of xtensa_call0_frame_cache.c0_rt[] describes for each
916 A-register where the current content of the reg came from (in terms
917 of an original reg and a constant). Negative values of c0_rt[n].fp_reg
918 mean that the original content of the register was saved to the stack.
919 c0_rt[n].fr.ofs is NOT the offset from the frame base because we don't
920 know where SP will end up until the entire prologue has been analyzed. */
922 #define C0_CONST -1 /* fr_reg value if register contains a constant. */
923 #define C0_INEXP -2 /* fr_reg value if inexpressible as reg + offset. */
924 #define C0_NOSTK -1 /* to_stk value if register has not been stored. */
926 extern xtensa_isa xtensa_default_isa
;
928 typedef struct xtensa_c0reg
930 int fr_reg
; /* original register from which register content
931 is derived, or C0_CONST, or C0_INEXP. */
932 int fr_ofs
; /* constant offset from reg, or immediate value. */
933 int to_stk
; /* offset from original SP to register (4-byte aligned),
934 or C0_NOSTK if register has not been saved. */
937 /* Frame cache part for Call0 ABI. */
938 typedef struct xtensa_call0_frame_cache
940 int c0_frmsz
; /* Stack frame size. */
941 int c0_hasfp
; /* Current frame uses frame pointer. */
942 int fp_regnum
; /* A-register used as FP. */
943 int c0_fp
; /* Actual value of frame pointer. */
944 int c0_fpalign
; /* Dynamic adjustment for the stack
945 pointer. It's an AND mask. Zero,
946 if alignment was not adjusted. */
947 int c0_old_sp
; /* In case of dynamic adjustment, it is
948 a register holding unaligned sp.
949 C0_INEXP, when undefined. */
950 int c0_sp_ofs
; /* If "c0_old_sp" was spilled it's a
951 stack offset. C0_NOSTK otherwise. */
953 xtensa_c0reg_t c0_rt
[C0_NREGS
]; /* Register tracking information. */
954 } xtensa_call0_frame_cache_t
;
956 typedef struct xtensa_frame_cache
958 CORE_ADDR base
; /* Stack pointer of this frame. */
959 CORE_ADDR pc
; /* PC of this frame at the function entry point. */
960 CORE_ADDR ra
; /* The raw return address of this frame. */
961 CORE_ADDR ps
; /* The PS register of the previous (older) frame. */
962 CORE_ADDR prev_sp
; /* Stack Pointer of the previous (older) frame. */
963 int call0
; /* It's a call0 framework (else windowed). */
966 xtensa_windowed_frame_cache_t wd
; /* call0 == false. */
967 xtensa_call0_frame_cache_t c0
; /* call0 == true. */
969 } xtensa_frame_cache_t
;
972 static struct xtensa_frame_cache
*
973 xtensa_alloc_frame_cache (int windowed
)
975 xtensa_frame_cache_t
*cache
;
978 DEBUGTRACE ("xtensa_alloc_frame_cache ()\n");
980 cache
= FRAME_OBSTACK_ZALLOC (xtensa_frame_cache_t
);
987 cache
->call0
= !windowed
;
990 cache
->c0
.c0_frmsz
= -1;
991 cache
->c0
.c0_hasfp
= 0;
992 cache
->c0
.fp_regnum
= -1;
993 cache
->c0
.c0_fp
= -1;
994 cache
->c0
.c0_fpalign
= 0;
995 cache
->c0
.c0_old_sp
= C0_INEXP
;
996 cache
->c0
.c0_sp_ofs
= C0_NOSTK
;
998 for (i
= 0; i
< C0_NREGS
; i
++)
1000 cache
->c0
.c0_rt
[i
].fr_reg
= i
;
1001 cache
->c0
.c0_rt
[i
].fr_ofs
= 0;
1002 cache
->c0
.c0_rt
[i
].to_stk
= C0_NOSTK
;
1009 cache
->wd
.callsize
= -1;
1011 for (i
= 0; i
< XTENSA_NUM_SAVED_AREGS
; i
++)
1012 cache
->wd
.aregs
[i
] = -1;
1019 xtensa_frame_align (struct gdbarch
*gdbarch
, CORE_ADDR address
)
1021 return address
& ~15;
1026 xtensa_unwind_pc (struct gdbarch
*gdbarch
, frame_info_ptr next_frame
)
1031 DEBUGTRACE ("xtensa_unwind_pc (next_frame = %s)\n",
1032 host_address_to_string (next_frame
.get ()));
1034 frame_unwind_register (next_frame
, gdbarch_pc_regnum (gdbarch
), buf
);
1035 pc
= extract_typed_address (buf
, builtin_type (gdbarch
)->builtin_func_ptr
);
1037 DEBUGINFO ("[xtensa_unwind_pc] pc = 0x%08x\n", (unsigned int) pc
);
1043 static struct frame_id
1044 xtensa_dummy_id (struct gdbarch
*gdbarch
, frame_info_ptr this_frame
)
1047 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
1049 /* THIS-FRAME is a dummy frame. Return a frame ID of that frame. */
1051 pc
= get_frame_pc (this_frame
);
1052 fp
= get_frame_register_unsigned
1053 (this_frame
, tdep
->a0_base
+ 1);
1055 /* Make dummy frame ID unique by adding a constant. */
1056 return frame_id_build (fp
+ SP_ALIGNMENT
, pc
);
1059 /* Returns true, if instruction to execute next is unique to Xtensa Window
1060 Interrupt Handlers. It can only be one of L32E, S32E, RFWO, or RFWU. */
1063 xtensa_window_interrupt_insn (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
1065 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
1066 unsigned int insn
= read_memory_integer (pc
, 4, byte_order
);
1069 if (byte_order
== BFD_ENDIAN_BIG
)
1071 /* Check, if this is L32E or S32E. */
1072 code
= insn
& 0xf000ff00;
1073 if ((code
== 0x00009000) || (code
== 0x00009400))
1075 /* Check, if this is RFWU or RFWO. */
1076 code
= insn
& 0xffffff00;
1077 return ((code
== 0x00430000) || (code
== 0x00530000));
1081 /* Check, if this is L32E or S32E. */
1082 code
= insn
& 0x00ff000f;
1083 if ((code
== 0x090000) || (code
== 0x490000))
1085 /* Check, if this is RFWU or RFWO. */
1086 code
= insn
& 0x00ffffff;
1087 return ((code
== 0x00003400) || (code
== 0x00003500));
1091 /* Returns the best guess about which register is a frame pointer
1092 for the function containing CURRENT_PC. */
1094 #define XTENSA_ISA_BSZ 32 /* Instruction buffer size. */
1095 #define XTENSA_ISA_BADPC ((CORE_ADDR)0) /* Bad PC value. */
1098 xtensa_scan_prologue (struct gdbarch
*gdbarch
, CORE_ADDR current_pc
)
1100 #define RETURN_FP goto done
1102 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
1103 unsigned int fp_regnum
= tdep
->a0_base
+ 1;
1104 CORE_ADDR start_addr
;
1106 xtensa_insnbuf ins
, slot
;
1107 gdb_byte ibuf
[XTENSA_ISA_BSZ
];
1108 CORE_ADDR ia
, bt
, ba
;
1110 int ilen
, islots
, is
;
1112 const char *opcname
;
1114 find_pc_partial_function (current_pc
, NULL
, &start_addr
, NULL
);
1115 if (start_addr
== 0)
1118 isa
= xtensa_default_isa
;
1119 gdb_assert (XTENSA_ISA_BSZ
>= xtensa_isa_maxlength (isa
));
1120 ins
= xtensa_insnbuf_alloc (isa
);
1121 slot
= xtensa_insnbuf_alloc (isa
);
1124 for (ia
= start_addr
, bt
= ia
; ia
< current_pc
; ia
+= ilen
)
1126 if (ia
+ xtensa_isa_maxlength (isa
) > bt
)
1129 bt
= (ba
+ XTENSA_ISA_BSZ
) < current_pc
1130 ? ba
+ XTENSA_ISA_BSZ
: current_pc
;
1131 if (target_read_memory (ba
, ibuf
, bt
- ba
) != 0)
1135 xtensa_insnbuf_from_chars (isa
, ins
, &ibuf
[ia
-ba
], 0);
1136 ifmt
= xtensa_format_decode (isa
, ins
);
1137 if (ifmt
== XTENSA_UNDEFINED
)
1139 ilen
= xtensa_format_length (isa
, ifmt
);
1140 if (ilen
== XTENSA_UNDEFINED
)
1142 islots
= xtensa_format_num_slots (isa
, ifmt
);
1143 if (islots
== XTENSA_UNDEFINED
)
1146 for (is
= 0; is
< islots
; ++is
)
1148 if (xtensa_format_get_slot (isa
, ifmt
, is
, ins
, slot
))
1151 opc
= xtensa_opcode_decode (isa
, ifmt
, is
, slot
);
1152 if (opc
== XTENSA_UNDEFINED
)
1155 opcname
= xtensa_opcode_name (isa
, opc
);
1157 if (strcasecmp (opcname
, "mov.n") == 0
1158 || strcasecmp (opcname
, "or") == 0)
1160 unsigned int register_operand
;
1162 /* Possible candidate for setting frame pointer
1163 from A1. This is what we are looking for. */
1165 if (xtensa_operand_get_field (isa
, opc
, 1, ifmt
,
1166 is
, slot
, ®ister_operand
) != 0)
1168 if (xtensa_operand_decode (isa
, opc
, 1, ®ister_operand
) != 0)
1170 if (register_operand
== 1) /* Mov{.n} FP A1. */
1172 if (xtensa_operand_get_field (isa
, opc
, 0, ifmt
, is
, slot
,
1173 ®ister_operand
) != 0)
1175 if (xtensa_operand_decode (isa
, opc
, 0,
1176 ®ister_operand
) != 0)
1180 = tdep
->a0_base
+ register_operand
;
1186 /* We have problems decoding the memory. */
1188 || strcasecmp (opcname
, "ill") == 0
1189 || strcasecmp (opcname
, "ill.n") == 0
1190 /* Hit planted breakpoint. */
1191 || strcasecmp (opcname
, "break") == 0
1192 || strcasecmp (opcname
, "break.n") == 0
1193 /* Flow control instructions finish prologue. */
1194 || xtensa_opcode_is_branch (isa
, opc
) > 0
1195 || xtensa_opcode_is_jump (isa
, opc
) > 0
1196 || xtensa_opcode_is_loop (isa
, opc
) > 0
1197 || xtensa_opcode_is_call (isa
, opc
) > 0
1198 || strcasecmp (opcname
, "simcall") == 0
1199 || strcasecmp (opcname
, "syscall") == 0)
1200 /* Can not continue analysis. */
1205 xtensa_insnbuf_free(isa
, slot
);
1206 xtensa_insnbuf_free(isa
, ins
);
1210 /* The key values to identify the frame using "cache" are
1212 cache->base = SP (or best guess about FP) of this frame;
1213 cache->pc = entry-PC (entry point of the frame function);
1214 cache->prev_sp = SP of the previous frame. */
1217 call0_frame_cache (frame_info_ptr this_frame
,
1218 xtensa_frame_cache_t
*cache
, CORE_ADDR pc
);
1221 xtensa_window_interrupt_frame_cache (frame_info_ptr this_frame
,
1222 xtensa_frame_cache_t
*cache
,
1225 static struct xtensa_frame_cache
*
1226 xtensa_frame_cache (frame_info_ptr this_frame
, void **this_cache
)
1228 xtensa_frame_cache_t
*cache
;
1229 CORE_ADDR ra
, wb
, ws
, pc
, sp
, ps
;
1230 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
1231 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
1232 unsigned int fp_regnum
;
1233 int windowed
, ps_regnum
;
1236 return (struct xtensa_frame_cache
*) *this_cache
;
1238 pc
= get_frame_register_unsigned (this_frame
, gdbarch_pc_regnum (gdbarch
));
1239 ps_regnum
= gdbarch_ps_regnum (gdbarch
);
1240 ps
= (ps_regnum
>= 0
1241 ? get_frame_register_unsigned (this_frame
, ps_regnum
) : TX_PS
);
1243 windowed
= windowing_enabled (gdbarch
, ps
);
1245 /* Get pristine xtensa-frame. */
1246 cache
= xtensa_alloc_frame_cache (windowed
);
1247 *this_cache
= cache
;
1252 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
1254 /* Get WINDOWBASE, WINDOWSTART, and PS registers. */
1255 wb
= get_frame_register_unsigned (this_frame
,
1257 ws
= get_frame_register_unsigned (this_frame
,
1260 if (safe_read_memory_integer (pc
, 1, byte_order
, &op1
)
1261 && XTENSA_IS_ENTRY (gdbarch
, op1
))
1263 int callinc
= CALLINC (ps
);
1264 ra
= get_frame_register_unsigned
1265 (this_frame
, tdep
->a0_base
+ callinc
* 4);
1267 /* ENTRY hasn't been executed yet, therefore callsize is still 0. */
1268 cache
->wd
.callsize
= 0;
1271 cache
->prev_sp
= get_frame_register_unsigned
1272 (this_frame
, tdep
->a0_base
+ 1);
1274 /* This only can be the outermost frame since we are
1275 just about to execute ENTRY. SP hasn't been set yet.
1276 We can assume any frame size, because it does not
1277 matter, and, let's fake frame base in cache. */
1278 cache
->base
= cache
->prev_sp
- 16;
1281 cache
->ra
= (cache
->pc
& 0xc0000000) | (ra
& 0x3fffffff);
1282 cache
->ps
= (ps
& ~PS_CALLINC_MASK
)
1283 | ((WINSIZE(ra
)/4) << PS_CALLINC_SHIFT
);
1289 fp_regnum
= xtensa_scan_prologue (gdbarch
, pc
);
1290 ra
= get_frame_register_unsigned (this_frame
,
1292 cache
->wd
.callsize
= WINSIZE (ra
);
1293 cache
->wd
.wb
= (wb
- cache
->wd
.callsize
/ 4)
1294 & (tdep
->num_aregs
/ 4 - 1);
1295 cache
->wd
.ws
= ws
& ~(1 << wb
);
1297 cache
->pc
= get_frame_func (this_frame
);
1298 cache
->ra
= (pc
& 0xc0000000) | (ra
& 0x3fffffff);
1299 cache
->ps
= (ps
& ~PS_CALLINC_MASK
)
1300 | ((WINSIZE(ra
)/4) << PS_CALLINC_SHIFT
);
1303 if (cache
->wd
.ws
== 0)
1308 sp
= get_frame_register_unsigned
1309 (this_frame
, tdep
->a0_base
+ 1) - 16;
1311 for (i
= 0; i
< 4; i
++, sp
+= 4)
1313 cache
->wd
.aregs
[i
] = sp
;
1316 if (cache
->wd
.callsize
> 4)
1318 /* Set A4...A7/A11. */
1319 /* Get the SP of the frame previous to the previous one.
1320 To achieve this, we have to dereference SP twice. */
1321 sp
= (CORE_ADDR
) read_memory_integer (sp
- 12, 4, byte_order
);
1322 sp
= (CORE_ADDR
) read_memory_integer (sp
- 12, 4, byte_order
);
1323 sp
-= cache
->wd
.callsize
* 4;
1325 for ( i
= 4; i
< cache
->wd
.callsize
; i
++, sp
+= 4)
1327 cache
->wd
.aregs
[i
] = sp
;
1332 if ((cache
->prev_sp
== 0) && ( ra
!= 0 ))
1333 /* If RA is equal to 0 this frame is an outermost frame. Leave
1334 cache->prev_sp unchanged marking the boundary of the frame stack. */
1336 if ((cache
->wd
.ws
& (1 << cache
->wd
.wb
)) == 0)
1338 /* Register window overflow already happened.
1339 We can read caller's SP from the proper spill location. */
1340 sp
= get_frame_register_unsigned
1341 (this_frame
, tdep
->a0_base
+ 1);
1342 cache
->prev_sp
= read_memory_integer (sp
- 12, 4, byte_order
);
1346 /* Read caller's frame SP directly from the previous window. */
1347 int regnum
= arreg_number
1348 (gdbarch
, tdep
->a0_base
+ 1,
1351 cache
->prev_sp
= xtensa_read_register (regnum
);
1355 else if (xtensa_window_interrupt_insn (gdbarch
, pc
))
1357 /* Execution stopped inside Xtensa Window Interrupt Handler. */
1359 xtensa_window_interrupt_frame_cache (this_frame
, cache
, pc
);
1360 /* Everything was set already, including cache->base. */
1363 else /* Call0 framework. */
1365 call0_frame_cache (this_frame
, cache
, pc
);
1366 fp_regnum
= cache
->c0
.fp_regnum
;
1369 cache
->base
= get_frame_register_unsigned (this_frame
, fp_regnum
);
1374 static int xtensa_session_once_reported
= 1;
1376 /* Report a problem with prologue analysis while doing backtracing.
1377 But, do it only once to avoid annoying repeated messages. */
1382 if (xtensa_session_once_reported
== 0)
1384 \nUnrecognised function prologue. Stack trace cannot be resolved. \
1385 This message will not be repeated in this session.\n"));
1387 xtensa_session_once_reported
= 1;
1392 xtensa_frame_this_id (frame_info_ptr this_frame
,
1394 struct frame_id
*this_id
)
1396 struct xtensa_frame_cache
*cache
=
1397 xtensa_frame_cache (this_frame
, this_cache
);
1399 if (cache
->prev_sp
== 0)
1402 (*this_id
) = frame_id_build (cache
->prev_sp
, cache
->pc
);
1405 static struct value
*
1406 xtensa_frame_prev_register (frame_info_ptr this_frame
,
1410 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
1411 struct xtensa_frame_cache
*cache
;
1412 ULONGEST saved_reg
= 0;
1414 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
1416 if (*this_cache
== NULL
)
1417 *this_cache
= xtensa_frame_cache (this_frame
, this_cache
);
1418 cache
= (struct xtensa_frame_cache
*) *this_cache
;
1420 if (regnum
==gdbarch_pc_regnum (gdbarch
))
1421 saved_reg
= cache
->ra
;
1422 else if (regnum
== tdep
->a0_base
+ 1)
1423 saved_reg
= cache
->prev_sp
;
1424 else if (!cache
->call0
)
1426 if (regnum
== tdep
->ws_regnum
)
1427 saved_reg
= cache
->wd
.ws
;
1428 else if (regnum
== tdep
->wb_regnum
)
1429 saved_reg
= cache
->wd
.wb
;
1430 else if (regnum
== gdbarch_ps_regnum (gdbarch
))
1431 saved_reg
= cache
->ps
;
1439 return frame_unwind_got_constant (this_frame
, regnum
, saved_reg
);
1441 if (!cache
->call0
) /* Windowed ABI. */
1443 /* Convert A-register numbers to AR-register numbers,
1444 if we deal with A-register. */
1445 if (regnum
>= tdep
->a0_base
1446 && regnum
<= tdep
->a0_base
+ 15)
1447 regnum
= arreg_number (gdbarch
, regnum
, cache
->wd
.wb
);
1449 /* Check, if we deal with AR-register saved on stack. */
1450 if (regnum
>= tdep
->ar_base
1451 && regnum
<= (tdep
->ar_base
1454 int areg
= areg_number (gdbarch
, regnum
, cache
->wd
.wb
);
1457 && areg
< XTENSA_NUM_SAVED_AREGS
1458 && cache
->wd
.aregs
[areg
] != -1)
1459 return frame_unwind_got_memory (this_frame
, regnum
,
1460 cache
->wd
.aregs
[areg
]);
1463 else /* Call0 ABI. */
1465 int reg
= (regnum
>= tdep
->ar_base
1466 && regnum
<= (tdep
->ar_base
1468 ? regnum
- tdep
->ar_base
: regnum
;
1475 /* If register was saved in the prologue, retrieve it. */
1476 stkofs
= cache
->c0
.c0_rt
[reg
].to_stk
;
1477 if (stkofs
!= C0_NOSTK
)
1479 /* Determine SP on entry based on FP. */
1480 spe
= cache
->c0
.c0_fp
1481 - cache
->c0
.c0_rt
[cache
->c0
.fp_regnum
].fr_ofs
;
1483 return frame_unwind_got_memory (this_frame
, regnum
,
1489 /* All other registers have been either saved to
1490 the stack or are still alive in the processor. */
1492 return frame_unwind_got_register (this_frame
, regnum
, regnum
);
1496 static const struct frame_unwind
1501 default_frame_unwind_stop_reason
,
1502 xtensa_frame_this_id
,
1503 xtensa_frame_prev_register
,
1505 default_frame_sniffer
1509 xtensa_frame_base_address (frame_info_ptr this_frame
, void **this_cache
)
1511 struct xtensa_frame_cache
*cache
=
1512 xtensa_frame_cache (this_frame
, this_cache
);
1517 static const struct frame_base
1521 xtensa_frame_base_address
,
1522 xtensa_frame_base_address
,
1523 xtensa_frame_base_address
1528 xtensa_extract_return_value (struct type
*type
,
1529 struct regcache
*regcache
,
1532 struct gdbarch
*gdbarch
= regcache
->arch ();
1533 bfd_byte
*valbuf
= (bfd_byte
*) dst
;
1534 int len
= type
->length ();
1539 DEBUGTRACE ("xtensa_extract_return_value (...)\n");
1541 gdb_assert(len
> 0);
1543 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
1544 if (tdep
->call_abi
!= CallAbiCall0Only
)
1546 /* First, we have to find the caller window in the register file. */
1547 regcache_raw_read_unsigned (regcache
, gdbarch_pc_regnum (gdbarch
), &pc
);
1548 callsize
= extract_call_winsize (gdbarch
, pc
);
1550 /* On Xtensa, we can return up to 4 words (or 2 for call12). */
1551 if (len
> (callsize
> 8 ? 8 : 16))
1552 internal_error (_("cannot extract return value of %d bytes long"),
1555 /* Get the register offset of the return
1556 register (A2) in the caller window. */
1557 regcache_raw_read_unsigned
1558 (regcache
, tdep
->wb_regnum
, &wb
);
1559 areg
= arreg_number (gdbarch
,
1560 tdep
->a0_base
+ 2 + callsize
, wb
);
1564 /* No windowing hardware - Call0 ABI. */
1565 areg
= tdep
->a0_base
+ C0_ARGS
;
1568 DEBUGINFO ("[xtensa_extract_return_value] areg %d len %d\n", areg
, len
);
1570 if (len
< 4 && gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
1573 for (; len
> 0; len
-= 4, areg
++, valbuf
+= 4)
1576 regcache
->raw_read_part (areg
, offset
, len
, valbuf
);
1578 regcache
->raw_read (areg
, valbuf
);
1584 xtensa_store_return_value (struct type
*type
,
1585 struct regcache
*regcache
,
1588 struct gdbarch
*gdbarch
= regcache
->arch ();
1589 const bfd_byte
*valbuf
= (const bfd_byte
*) dst
;
1593 int len
= type
->length ();
1596 DEBUGTRACE ("xtensa_store_return_value (...)\n");
1598 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
1599 if (tdep
->call_abi
!= CallAbiCall0Only
)
1601 regcache_raw_read_unsigned
1602 (regcache
, tdep
->wb_regnum
, &wb
);
1603 regcache_raw_read_unsigned (regcache
, gdbarch_pc_regnum (gdbarch
), &pc
);
1604 callsize
= extract_call_winsize (gdbarch
, pc
);
1606 if (len
> (callsize
> 8 ? 8 : 16))
1607 internal_error (_("unimplemented for this length: %s"),
1608 pulongest (type
->length ()));
1609 areg
= arreg_number (gdbarch
,
1610 tdep
->a0_base
+ 2 + callsize
, wb
);
1612 DEBUGTRACE ("[xtensa_store_return_value] callsize %d wb %d\n",
1613 callsize
, (int) wb
);
1617 areg
= tdep
->a0_base
+ C0_ARGS
;
1620 if (len
< 4 && gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
1623 for (; len
> 0; len
-= 4, areg
++, valbuf
+= 4)
1626 regcache
->raw_write_part (areg
, offset
, len
, valbuf
);
1628 regcache
->raw_write (areg
, valbuf
);
1633 static enum return_value_convention
1634 xtensa_return_value (struct gdbarch
*gdbarch
,
1635 struct value
*function
,
1636 struct type
*valtype
,
1637 struct regcache
*regcache
,
1639 const gdb_byte
*writebuf
)
1641 /* Structures up to 16 bytes are returned in registers. */
1643 int struct_return
= ((valtype
->code () == TYPE_CODE_STRUCT
1644 || valtype
->code () == TYPE_CODE_UNION
1645 || valtype
->code () == TYPE_CODE_ARRAY
)
1646 && valtype
->length () > 16);
1649 return RETURN_VALUE_STRUCT_CONVENTION
;
1651 DEBUGTRACE ("xtensa_return_value(...)\n");
1653 if (writebuf
!= NULL
)
1655 xtensa_store_return_value (valtype
, regcache
, writebuf
);
1658 if (readbuf
!= NULL
)
1660 gdb_assert (!struct_return
);
1661 xtensa_extract_return_value (valtype
, regcache
, readbuf
);
1663 return RETURN_VALUE_REGISTER_CONVENTION
;
1670 xtensa_push_dummy_call (struct gdbarch
*gdbarch
,
1671 struct value
*function
,
1672 struct regcache
*regcache
,
1675 struct value
**args
,
1677 function_call_return_method return_method
,
1678 CORE_ADDR struct_addr
)
1680 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
1681 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
1682 int size
, onstack_size
;
1683 gdb_byte
*buf
= (gdb_byte
*) alloca (16);
1685 struct argument_info
1687 const bfd_byte
*contents
;
1689 int onstack
; /* onstack == 0 => in reg */
1690 int align
; /* alignment */
1693 int offset
; /* stack offset if on stack. */
1694 int regno
; /* regno if in register. */
1698 struct argument_info
*arg_info
=
1699 (struct argument_info
*) alloca (nargs
* sizeof (struct argument_info
));
1703 DEBUGTRACE ("xtensa_push_dummy_call (...)\n");
1705 if (xtensa_debug_level
> 3)
1707 DEBUGINFO ("[xtensa_push_dummy_call] nargs = %d\n", nargs
);
1708 DEBUGINFO ("[xtensa_push_dummy_call] sp=0x%x, return_method=%d, "
1709 "struct_addr=0x%x\n",
1710 (int) sp
, (int) return_method
, (int) struct_addr
);
1712 for (int i
= 0; i
< nargs
; i
++)
1714 struct value
*arg
= args
[i
];
1715 struct type
*arg_type
= check_typedef (value_type (arg
));
1716 gdb_printf (gdb_stdlog
, "%2d: %s %3s ", i
,
1717 host_address_to_string (arg
),
1718 pulongest (arg_type
->length ()));
1719 switch (arg_type
->code ())
1722 gdb_printf (gdb_stdlog
, "int");
1724 case TYPE_CODE_STRUCT
:
1725 gdb_printf (gdb_stdlog
, "struct");
1728 gdb_printf (gdb_stdlog
, "%3d", arg_type
->code ());
1731 gdb_printf (gdb_stdlog
, " %s\n",
1732 host_address_to_string (value_contents (arg
).data ()));
1736 /* First loop: collect information.
1737 Cast into type_long. (This shouldn't happen often for C because
1738 GDB already does this earlier.) It's possible that GDB could
1739 do it all the time but it's harmless to leave this code here. */
1744 if (return_method
== return_method_struct
)
1745 size
= REGISTER_SIZE
;
1747 for (int i
= 0; i
< nargs
; i
++)
1749 struct argument_info
*info
= &arg_info
[i
];
1750 struct value
*arg
= args
[i
];
1751 struct type
*arg_type
= check_typedef (value_type (arg
));
1753 switch (arg_type
->code ())
1756 case TYPE_CODE_BOOL
:
1757 case TYPE_CODE_CHAR
:
1758 case TYPE_CODE_RANGE
:
1759 case TYPE_CODE_ENUM
:
1761 /* Cast argument to long if necessary as the mask does it too. */
1762 if (arg_type
->length ()
1763 < builtin_type (gdbarch
)->builtin_long
->length ())
1765 arg_type
= builtin_type (gdbarch
)->builtin_long
;
1766 arg
= value_cast (arg_type
, arg
);
1768 /* Aligment is equal to the type length for the basic types. */
1769 info
->align
= arg_type
->length ();
1774 /* Align doubles correctly. */
1775 if (arg_type
->length ()
1776 == builtin_type (gdbarch
)->builtin_double
->length ())
1777 info
->align
= builtin_type (gdbarch
)->builtin_double
->length ();
1779 info
->align
= builtin_type (gdbarch
)->builtin_long
->length ();
1782 case TYPE_CODE_STRUCT
:
1784 info
->align
= builtin_type (gdbarch
)->builtin_long
->length ();
1787 info
->length
= arg_type
->length ();
1788 info
->contents
= value_contents (arg
).data ();
1790 /* Align size and onstack_size. */
1791 size
= (size
+ info
->align
- 1) & ~(info
->align
- 1);
1792 onstack_size
= (onstack_size
+ info
->align
- 1) & ~(info
->align
- 1);
1794 if (size
+ info
->length
> REGISTER_SIZE
* ARG_NOF (tdep
))
1797 info
->u
.offset
= onstack_size
;
1798 onstack_size
+= info
->length
;
1803 info
->u
.regno
= ARG_1ST (tdep
) + size
/ REGISTER_SIZE
;
1805 size
+= info
->length
;
1808 /* Adjust the stack pointer and align it. */
1809 sp
= align_down (sp
- onstack_size
, SP_ALIGNMENT
);
1811 /* Simulate MOVSP, if Windowed ABI. */
1812 if ((tdep
->call_abi
!= CallAbiCall0Only
)
1815 read_memory (osp
- 16, buf
, 16);
1816 write_memory (sp
- 16, buf
, 16);
1819 /* Second Loop: Load arguments. */
1821 if (return_method
== return_method_struct
)
1823 store_unsigned_integer (buf
, REGISTER_SIZE
, byte_order
, struct_addr
);
1824 regcache
->cooked_write (ARG_1ST (tdep
), buf
);
1827 for (int i
= 0; i
< nargs
; i
++)
1829 struct argument_info
*info
= &arg_info
[i
];
1833 int n
= info
->length
;
1834 CORE_ADDR offset
= sp
+ info
->u
.offset
;
1836 /* Odd-sized structs are aligned to the lower side of a memory
1837 word in big-endian mode and require a shift. This only
1838 applies for structures smaller than one word. */
1840 if (n
< REGISTER_SIZE
1841 && gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
1842 offset
+= (REGISTER_SIZE
- n
);
1844 write_memory (offset
, info
->contents
, info
->length
);
1849 int n
= info
->length
;
1850 const bfd_byte
*cp
= info
->contents
;
1851 int r
= info
->u
.regno
;
1853 /* Odd-sized structs are aligned to the lower side of registers in
1854 big-endian mode and require a shift. The odd-sized leftover will
1855 be at the end. Note that this is only true for structures smaller
1856 than REGISTER_SIZE; for larger odd-sized structures the excess
1857 will be left-aligned in the register on both endiannesses. */
1859 if (n
< REGISTER_SIZE
&& byte_order
== BFD_ENDIAN_BIG
)
1862 v
= extract_unsigned_integer (cp
, REGISTER_SIZE
, byte_order
);
1863 v
= v
>> ((REGISTER_SIZE
- n
) * TARGET_CHAR_BIT
);
1865 store_unsigned_integer (buf
, REGISTER_SIZE
, byte_order
, v
);
1866 regcache
->cooked_write (r
, buf
);
1868 cp
+= REGISTER_SIZE
;
1875 regcache
->cooked_write (r
, cp
);
1877 cp
+= REGISTER_SIZE
;
1884 /* Set the return address of dummy frame to the dummy address.
1885 The return address for the current function (in A0) is
1886 saved in the dummy frame, so we can safely overwrite A0 here. */
1888 if (tdep
->call_abi
!= CallAbiCall0Only
)
1892 ra
= (bp_addr
& 0x3fffffff) | 0x40000000;
1893 regcache_raw_read_unsigned (regcache
, gdbarch_ps_regnum (gdbarch
), &val
);
1894 ps
= (unsigned long) val
& ~0x00030000;
1895 regcache_cooked_write_unsigned
1896 (regcache
, tdep
->a0_base
+ 4, ra
);
1897 regcache_cooked_write_unsigned (regcache
,
1898 gdbarch_ps_regnum (gdbarch
),
1901 /* All the registers have been saved. After executing
1902 dummy call, they all will be restored. So it's safe
1903 to modify WINDOWSTART register to make it look like there
1904 is only one register window corresponding to WINDOWEBASE. */
1906 regcache
->raw_read (tdep
->wb_regnum
, buf
);
1907 regcache_cooked_write_unsigned
1908 (regcache
, tdep
->ws_regnum
,
1909 1 << extract_unsigned_integer (buf
, 4, byte_order
));
1913 /* Simulate CALL0: write RA into A0 register. */
1914 regcache_cooked_write_unsigned
1915 (regcache
, tdep
->a0_base
, bp_addr
);
1918 /* Set new stack pointer and return it. */
1919 regcache_cooked_write_unsigned (regcache
,
1920 tdep
->a0_base
+ 1, sp
);
1921 /* Make dummy frame ID unique by adding a constant. */
1922 return sp
+ SP_ALIGNMENT
;
1925 /* Implement the breakpoint_kind_from_pc gdbarch method. */
1928 xtensa_breakpoint_kind_from_pc (struct gdbarch
*gdbarch
, CORE_ADDR
*pcptr
)
1930 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
1932 if (tdep
->isa_use_density_instructions
)
1938 /* Return a breakpoint for the current location of PC. We always use
1939 the density version if we have density instructions (regardless of the
1940 current instruction at PC), and use regular instructions otherwise. */
1942 #define BIG_BREAKPOINT { 0x00, 0x04, 0x00 }
1943 #define LITTLE_BREAKPOINT { 0x00, 0x40, 0x00 }
1944 #define DENSITY_BIG_BREAKPOINT { 0xd2, 0x0f }
1945 #define DENSITY_LITTLE_BREAKPOINT { 0x2d, 0xf0 }
1947 /* Implement the sw_breakpoint_from_kind gdbarch method. */
1949 static const gdb_byte
*
1950 xtensa_sw_breakpoint_from_kind (struct gdbarch
*gdbarch
, int kind
, int *size
)
1956 static unsigned char big_breakpoint
[] = BIG_BREAKPOINT
;
1957 static unsigned char little_breakpoint
[] = LITTLE_BREAKPOINT
;
1959 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
1960 return big_breakpoint
;
1962 return little_breakpoint
;
1966 static unsigned char density_big_breakpoint
[] = DENSITY_BIG_BREAKPOINT
;
1967 static unsigned char density_little_breakpoint
[]
1968 = DENSITY_LITTLE_BREAKPOINT
;
1970 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
1971 return density_big_breakpoint
;
1973 return density_little_breakpoint
;
1977 /* Call0 ABI support routines. */
1979 /* Return true, if PC points to "ret" or "ret.n". */
1982 call0_ret (CORE_ADDR start_pc
, CORE_ADDR finish_pc
)
1984 #define RETURN_RET goto done
1986 xtensa_insnbuf ins
, slot
;
1987 gdb_byte ibuf
[XTENSA_ISA_BSZ
];
1988 CORE_ADDR ia
, bt
, ba
;
1990 int ilen
, islots
, is
;
1992 const char *opcname
;
1995 isa
= xtensa_default_isa
;
1996 gdb_assert (XTENSA_ISA_BSZ
>= xtensa_isa_maxlength (isa
));
1997 ins
= xtensa_insnbuf_alloc (isa
);
1998 slot
= xtensa_insnbuf_alloc (isa
);
2001 for (ia
= start_pc
, bt
= ia
; ia
< finish_pc
; ia
+= ilen
)
2003 if (ia
+ xtensa_isa_maxlength (isa
) > bt
)
2006 bt
= (ba
+ XTENSA_ISA_BSZ
) < finish_pc
2007 ? ba
+ XTENSA_ISA_BSZ
: finish_pc
;
2008 if (target_read_memory (ba
, ibuf
, bt
- ba
) != 0 )
2012 xtensa_insnbuf_from_chars (isa
, ins
, &ibuf
[ia
-ba
], 0);
2013 ifmt
= xtensa_format_decode (isa
, ins
);
2014 if (ifmt
== XTENSA_UNDEFINED
)
2016 ilen
= xtensa_format_length (isa
, ifmt
);
2017 if (ilen
== XTENSA_UNDEFINED
)
2019 islots
= xtensa_format_num_slots (isa
, ifmt
);
2020 if (islots
== XTENSA_UNDEFINED
)
2023 for (is
= 0; is
< islots
; ++is
)
2025 if (xtensa_format_get_slot (isa
, ifmt
, is
, ins
, slot
))
2028 opc
= xtensa_opcode_decode (isa
, ifmt
, is
, slot
);
2029 if (opc
== XTENSA_UNDEFINED
)
2032 opcname
= xtensa_opcode_name (isa
, opc
);
2034 if ((strcasecmp (opcname
, "ret.n") == 0)
2035 || (strcasecmp (opcname
, "ret") == 0))
2043 xtensa_insnbuf_free(isa
, slot
);
2044 xtensa_insnbuf_free(isa
, ins
);
2048 /* Call0 opcode class. Opcodes are preclassified according to what they
2049 mean for Call0 prologue analysis, and their number of significant operands.
2050 The purpose of this is to simplify prologue analysis by separating
2051 instruction decoding (libisa) from the semantics of prologue analysis. */
2053 enum xtensa_insn_kind
2055 c0opc_illegal
, /* Unknown to libisa (invalid) or 'ill' opcode. */
2056 c0opc_uninteresting
, /* Not interesting for Call0 prologue analysis. */
2057 c0opc_flow
, /* Flow control insn. */
2058 c0opc_entry
, /* ENTRY indicates non-Call0 prologue. */
2059 c0opc_break
, /* Debugger software breakpoints. */
2060 c0opc_add
, /* Adding two registers. */
2061 c0opc_addi
, /* Adding a register and an immediate. */
2062 c0opc_and
, /* Bitwise "and"-ing two registers. */
2063 c0opc_sub
, /* Subtracting a register from a register. */
2064 c0opc_mov
, /* Moving a register to a register. */
2065 c0opc_movi
, /* Moving an immediate to a register. */
2066 c0opc_l32r
, /* Loading a literal. */
2067 c0opc_s32i
, /* Storing word at fixed offset from a base register. */
2068 c0opc_rwxsr
, /* RSR, WRS, or XSR instructions. */
2069 c0opc_l32e
, /* L32E instruction. */
2070 c0opc_s32e
, /* S32E instruction. */
2071 c0opc_rfwo
, /* RFWO instruction. */
2072 c0opc_rfwu
, /* RFWU instruction. */
2073 c0opc_NrOf
/* Number of opcode classifications. */
2076 /* Return true, if OPCNAME is RSR, WRS, or XSR instruction. */
2079 rwx_special_register (const char *opcname
)
2081 char ch
= *opcname
++;
2083 if ((ch
!= 'r') && (ch
!= 'w') && (ch
!= 'x'))
2085 if (*opcname
++ != 's')
2087 if (*opcname
++ != 'r')
2089 if (*opcname
++ != '.')
2095 /* Classify an opcode based on what it means for Call0 prologue analysis. */
2097 static xtensa_insn_kind
2098 call0_classify_opcode (xtensa_isa isa
, xtensa_opcode opc
)
2100 const char *opcname
;
2101 xtensa_insn_kind opclass
= c0opc_uninteresting
;
2103 DEBUGTRACE ("call0_classify_opcode (..., opc = %d)\n", opc
);
2105 /* Get opcode name and handle special classifications. */
2107 opcname
= xtensa_opcode_name (isa
, opc
);
2110 || strcasecmp (opcname
, "ill") == 0
2111 || strcasecmp (opcname
, "ill.n") == 0)
2112 opclass
= c0opc_illegal
;
2113 else if (strcasecmp (opcname
, "break") == 0
2114 || strcasecmp (opcname
, "break.n") == 0)
2115 opclass
= c0opc_break
;
2116 else if (strcasecmp (opcname
, "entry") == 0)
2117 opclass
= c0opc_entry
;
2118 else if (strcasecmp (opcname
, "rfwo") == 0)
2119 opclass
= c0opc_rfwo
;
2120 else if (strcasecmp (opcname
, "rfwu") == 0)
2121 opclass
= c0opc_rfwu
;
2122 else if (xtensa_opcode_is_branch (isa
, opc
) > 0
2123 || xtensa_opcode_is_jump (isa
, opc
) > 0
2124 || xtensa_opcode_is_loop (isa
, opc
) > 0
2125 || xtensa_opcode_is_call (isa
, opc
) > 0
2126 || strcasecmp (opcname
, "simcall") == 0
2127 || strcasecmp (opcname
, "syscall") == 0)
2128 opclass
= c0opc_flow
;
2130 /* Also, classify specific opcodes that need to be tracked. */
2131 else if (strcasecmp (opcname
, "add") == 0
2132 || strcasecmp (opcname
, "add.n") == 0)
2133 opclass
= c0opc_add
;
2134 else if (strcasecmp (opcname
, "and") == 0)
2135 opclass
= c0opc_and
;
2136 else if (strcasecmp (opcname
, "addi") == 0
2137 || strcasecmp (opcname
, "addi.n") == 0
2138 || strcasecmp (opcname
, "addmi") == 0)
2139 opclass
= c0opc_addi
;
2140 else if (strcasecmp (opcname
, "sub") == 0)
2141 opclass
= c0opc_sub
;
2142 else if (strcasecmp (opcname
, "mov.n") == 0
2143 || strcasecmp (opcname
, "or") == 0) /* Could be 'mov' asm macro. */
2144 opclass
= c0opc_mov
;
2145 else if (strcasecmp (opcname
, "movi") == 0
2146 || strcasecmp (opcname
, "movi.n") == 0)
2147 opclass
= c0opc_movi
;
2148 else if (strcasecmp (opcname
, "l32r") == 0)
2149 opclass
= c0opc_l32r
;
2150 else if (strcasecmp (opcname
, "s32i") == 0
2151 || strcasecmp (opcname
, "s32i.n") == 0)
2152 opclass
= c0opc_s32i
;
2153 else if (strcasecmp (opcname
, "l32e") == 0)
2154 opclass
= c0opc_l32e
;
2155 else if (strcasecmp (opcname
, "s32e") == 0)
2156 opclass
= c0opc_s32e
;
2157 else if (rwx_special_register (opcname
))
2158 opclass
= c0opc_rwxsr
;
2163 /* Tracks register movement/mutation for a given operation, which may
2164 be within a bundle. Updates the destination register tracking info
2165 accordingly. The pc is needed only for pc-relative load instructions
2166 (eg. l32r). The SP register number is needed to identify stores to
2167 the stack frame. Returns 0, if analysis was successful, non-zero
2171 call0_track_op (struct gdbarch
*gdbarch
, xtensa_c0reg_t dst
[], xtensa_c0reg_t src
[],
2172 xtensa_insn_kind opclass
, int nods
, unsigned odv
[],
2173 CORE_ADDR pc
, int spreg
, xtensa_frame_cache_t
*cache
)
2175 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2176 unsigned litbase
, litaddr
, litval
;
2177 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
2182 /* 3 operands: dst, src, imm. */
2183 gdb_assert (nods
== 3);
2184 dst
[odv
[0]].fr_reg
= src
[odv
[1]].fr_reg
;
2185 dst
[odv
[0]].fr_ofs
= src
[odv
[1]].fr_ofs
+ odv
[2];
2188 /* 3 operands: dst, src1, src2. */
2189 gdb_assert (nods
== 3);
2190 if (src
[odv
[1]].fr_reg
== C0_CONST
)
2192 dst
[odv
[0]].fr_reg
= src
[odv
[2]].fr_reg
;
2193 dst
[odv
[0]].fr_ofs
= src
[odv
[2]].fr_ofs
+ src
[odv
[1]].fr_ofs
;
2195 else if (src
[odv
[2]].fr_reg
== C0_CONST
)
2197 dst
[odv
[0]].fr_reg
= src
[odv
[1]].fr_reg
;
2198 dst
[odv
[0]].fr_ofs
= src
[odv
[1]].fr_ofs
+ src
[odv
[2]].fr_ofs
;
2200 else dst
[odv
[0]].fr_reg
= C0_INEXP
;
2203 /* 3 operands: dst, src1, src2. */
2204 gdb_assert (nods
== 3);
2205 if (cache
->c0
.c0_fpalign
== 0)
2207 /* Handle dynamic stack alignment. */
2208 if ((src
[odv
[0]].fr_reg
== spreg
) && (src
[odv
[1]].fr_reg
== spreg
))
2210 if (src
[odv
[2]].fr_reg
== C0_CONST
)
2211 cache
->c0
.c0_fpalign
= src
[odv
[2]].fr_ofs
;
2214 else if ((src
[odv
[0]].fr_reg
== spreg
)
2215 && (src
[odv
[2]].fr_reg
== spreg
))
2217 if (src
[odv
[1]].fr_reg
== C0_CONST
)
2218 cache
->c0
.c0_fpalign
= src
[odv
[1]].fr_ofs
;
2221 /* else fall through. */
2223 if (src
[odv
[1]].fr_reg
== C0_CONST
)
2225 dst
[odv
[0]].fr_reg
= src
[odv
[2]].fr_reg
;
2226 dst
[odv
[0]].fr_ofs
= src
[odv
[2]].fr_ofs
& src
[odv
[1]].fr_ofs
;
2228 else if (src
[odv
[2]].fr_reg
== C0_CONST
)
2230 dst
[odv
[0]].fr_reg
= src
[odv
[1]].fr_reg
;
2231 dst
[odv
[0]].fr_ofs
= src
[odv
[1]].fr_ofs
& src
[odv
[2]].fr_ofs
;
2233 else dst
[odv
[0]].fr_reg
= C0_INEXP
;
2236 /* 3 operands: dst, src1, src2. */
2237 gdb_assert (nods
== 3);
2238 if (src
[odv
[2]].fr_reg
== C0_CONST
)
2240 dst
[odv
[0]].fr_reg
= src
[odv
[1]].fr_reg
;
2241 dst
[odv
[0]].fr_ofs
= src
[odv
[1]].fr_ofs
- src
[odv
[2]].fr_ofs
;
2243 else dst
[odv
[0]].fr_reg
= C0_INEXP
;
2246 /* 2 operands: dst, src [, src]. */
2247 gdb_assert (nods
== 2);
2248 /* First, check if it's a special case of saving unaligned SP
2249 to a spare register in case of dynamic stack adjustment.
2250 But, only do it one time. The second time could be initializing
2251 frame pointer. We don't want to overwrite the first one. */
2252 if ((odv
[1] == spreg
) && (cache
->c0
.c0_old_sp
== C0_INEXP
))
2253 cache
->c0
.c0_old_sp
= odv
[0];
2255 dst
[odv
[0]].fr_reg
= src
[odv
[1]].fr_reg
;
2256 dst
[odv
[0]].fr_ofs
= src
[odv
[1]].fr_ofs
;
2259 /* 2 operands: dst, imm. */
2260 gdb_assert (nods
== 2);
2261 dst
[odv
[0]].fr_reg
= C0_CONST
;
2262 dst
[odv
[0]].fr_ofs
= odv
[1];
2265 /* 2 operands: dst, literal offset. */
2266 gdb_assert (nods
== 2);
2267 /* litbase = xtensa_get_litbase (pc); can be also used. */
2268 litbase
= (tdep
->litbase_regnum
== -1)
2269 ? 0 : xtensa_read_register
2270 (tdep
->litbase_regnum
);
2271 litaddr
= litbase
& 1
2272 ? (litbase
& ~1) + (signed)odv
[1]
2273 : (pc
+ 3 + (signed)odv
[1]) & ~3;
2274 litval
= read_memory_integer (litaddr
, 4, byte_order
);
2275 dst
[odv
[0]].fr_reg
= C0_CONST
;
2276 dst
[odv
[0]].fr_ofs
= litval
;
2279 /* 3 operands: value, base, offset. */
2280 gdb_assert (nods
== 3 && spreg
>= 0 && spreg
< C0_NREGS
);
2281 /* First, check if it's a spill for saved unaligned SP,
2282 when dynamic stack adjustment was applied to this frame. */
2283 if ((cache
->c0
.c0_fpalign
!= 0) /* Dynamic stack adjustment. */
2284 && (odv
[1] == spreg
) /* SP usage indicates spill. */
2285 && (odv
[0] == cache
->c0
.c0_old_sp
)) /* Old SP register spilled. */
2286 cache
->c0
.c0_sp_ofs
= odv
[2];
2288 if (src
[odv
[1]].fr_reg
== spreg
/* Store to stack frame. */
2289 && (src
[odv
[1]].fr_ofs
& 3) == 0 /* Alignment preserved. */
2290 && src
[odv
[0]].fr_reg
>= 0 /* Value is from a register. */
2291 && src
[odv
[0]].fr_ofs
== 0 /* Value hasn't been modified. */
2292 && src
[src
[odv
[0]].fr_reg
].to_stk
== C0_NOSTK
) /* First time. */
2294 /* ISA encoding guarantees alignment. But, check it anyway. */
2295 gdb_assert ((odv
[2] & 3) == 0);
2296 dst
[src
[odv
[0]].fr_reg
].to_stk
= src
[odv
[1]].fr_ofs
+ odv
[2];
2299 /* If we end up inside Window Overflow / Underflow interrupt handler
2300 report an error because these handlers should have been handled
2301 already in a different way. */
2313 /* Analyze prologue of the function at start address to determine if it uses
2314 the Call0 ABI, and if so track register moves and linear modifications
2315 in the prologue up to the PC or just beyond the prologue, whichever is
2316 first. An 'entry' instruction indicates non-Call0 ABI and the end of the
2317 prologue. The prologue may overlap non-prologue instructions but is
2318 guaranteed to end by the first flow-control instruction (jump, branch,
2319 call or return). Since an optimized function may move information around
2320 and change the stack frame arbitrarily during the prologue, the information
2321 is guaranteed valid only at the point in the function indicated by the PC.
2322 May be used to skip the prologue or identify the ABI, w/o tracking.
2324 Returns: Address of first instruction after prologue, or PC (whichever
2325 is first), or 0, if decoding failed (in libisa).
2327 start Start address of function/prologue.
2328 pc Program counter to stop at. Use 0 to continue to end of prologue.
2329 If 0, avoids infinite run-on in corrupt code memory by bounding
2330 the scan to the end of the function if that can be determined.
2331 nregs Number of general registers to track.
2333 cache Xtensa frame cache.
2335 Note that these may produce useful results even if decoding fails
2336 because they begin with default assumptions that analysis may change. */
2339 call0_analyze_prologue (struct gdbarch
*gdbarch
,
2340 CORE_ADDR start
, CORE_ADDR pc
,
2341 int nregs
, xtensa_frame_cache_t
*cache
)
2343 CORE_ADDR ia
; /* Current insn address in prologue. */
2344 CORE_ADDR ba
= 0; /* Current address at base of insn buffer. */
2345 CORE_ADDR bt
; /* Current address at top+1 of insn buffer. */
2346 gdb_byte ibuf
[XTENSA_ISA_BSZ
];/* Instruction buffer for decoding prologue. */
2347 xtensa_isa isa
; /* libisa ISA handle. */
2348 xtensa_insnbuf ins
, slot
; /* libisa handle to decoded insn, slot. */
2349 xtensa_format ifmt
; /* libisa instruction format. */
2350 int ilen
, islots
, is
; /* Instruction length, nbr slots, current slot. */
2351 xtensa_opcode opc
; /* Opcode in current slot. */
2352 xtensa_insn_kind opclass
; /* Opcode class for Call0 prologue analysis. */
2353 int nods
; /* Opcode number of operands. */
2354 unsigned odv
[C0_MAXOPDS
]; /* Operand values in order provided by libisa. */
2355 xtensa_c0reg_t
*rtmp
; /* Register tracking info snapshot. */
2356 int j
; /* General loop counter. */
2357 int fail
= 0; /* Set non-zero and exit, if decoding fails. */
2358 CORE_ADDR body_pc
; /* The PC for the first non-prologue insn. */
2359 CORE_ADDR end_pc
; /* The PC for the lust function insn. */
2361 struct symtab_and_line prologue_sal
;
2363 DEBUGTRACE ("call0_analyze_prologue (start = 0x%08x, pc = 0x%08x, ...)\n",
2364 (int)start
, (int)pc
);
2366 /* Try to limit the scan to the end of the function if a non-zero pc
2367 arg was not supplied to avoid probing beyond the end of valid memory.
2368 If memory is full of garbage that classifies as c0opc_uninteresting.
2369 If this fails (eg. if no symbols) pc ends up 0 as it was.
2370 Initialize the Call0 frame and register tracking info.
2371 Assume it's Call0 until an 'entry' instruction is encountered.
2372 Assume we may be in the prologue until we hit a flow control instr. */
2378 /* Find out, if we have an information about the prologue from DWARF. */
2379 prologue_sal
= find_pc_line (start
, 0);
2380 if (prologue_sal
.line
!= 0) /* Found debug info. */
2381 body_pc
= prologue_sal
.end
;
2383 /* If we are going to analyze the prologue in general without knowing about
2384 the current PC, make the best assumption for the end of the prologue. */
2387 find_pc_partial_function (start
, 0, NULL
, &end_pc
);
2388 body_pc
= std::min (end_pc
, body_pc
);
2391 body_pc
= std::min (pc
, body_pc
);
2394 rtmp
= (xtensa_c0reg_t
*) alloca(nregs
* sizeof(xtensa_c0reg_t
));
2396 isa
= xtensa_default_isa
;
2397 gdb_assert (XTENSA_ISA_BSZ
>= xtensa_isa_maxlength (isa
));
2398 ins
= xtensa_insnbuf_alloc (isa
);
2399 slot
= xtensa_insnbuf_alloc (isa
);
2401 for (ia
= start
, bt
= ia
; ia
< body_pc
; ia
+= ilen
)
2403 /* (Re)fill instruction buffer from memory if necessary, but do not
2404 read memory beyond PC to be sure we stay within text section
2405 (this protection only works if a non-zero pc is supplied). */
2407 if (ia
+ xtensa_isa_maxlength (isa
) > bt
)
2410 bt
= (ba
+ XTENSA_ISA_BSZ
) < body_pc
? ba
+ XTENSA_ISA_BSZ
: body_pc
;
2411 if (target_read_memory (ba
, ibuf
, bt
- ba
) != 0 )
2412 error (_("Unable to read target memory ..."));
2415 /* Decode format information. */
2417 xtensa_insnbuf_from_chars (isa
, ins
, &ibuf
[ia
-ba
], 0);
2418 ifmt
= xtensa_format_decode (isa
, ins
);
2419 if (ifmt
== XTENSA_UNDEFINED
)
2424 ilen
= xtensa_format_length (isa
, ifmt
);
2425 if (ilen
== XTENSA_UNDEFINED
)
2430 islots
= xtensa_format_num_slots (isa
, ifmt
);
2431 if (islots
== XTENSA_UNDEFINED
)
2437 /* Analyze a bundle or a single instruction, using a snapshot of
2438 the register tracking info as input for the entire bundle so that
2439 register changes do not take effect within this bundle. */
2441 for (j
= 0; j
< nregs
; ++j
)
2442 rtmp
[j
] = cache
->c0
.c0_rt
[j
];
2444 for (is
= 0; is
< islots
; ++is
)
2446 /* Decode a slot and classify the opcode. */
2448 fail
= xtensa_format_get_slot (isa
, ifmt
, is
, ins
, slot
);
2452 opc
= xtensa_opcode_decode (isa
, ifmt
, is
, slot
);
2453 DEBUGVERB ("[call0_analyze_prologue] instr addr = 0x%08x, opc = %d\n",
2455 if (opc
== XTENSA_UNDEFINED
)
2456 opclass
= c0opc_illegal
;
2458 opclass
= call0_classify_opcode (isa
, opc
);
2460 /* Decide whether to track this opcode, ignore it, or bail out. */
2469 case c0opc_uninteresting
:
2472 case c0opc_flow
: /* Flow control instructions stop analysis. */
2473 case c0opc_rwxsr
: /* RSR, WSR, XSR instructions stop analysis. */
2478 ia
+= ilen
; /* Skip over 'entry' insn. */
2485 /* Only expected opcodes should get this far. */
2487 /* Extract and decode the operands. */
2488 nods
= xtensa_opcode_num_operands (isa
, opc
);
2489 if (nods
== XTENSA_UNDEFINED
)
2495 for (j
= 0; j
< nods
&& j
< C0_MAXOPDS
; ++j
)
2497 fail
= xtensa_operand_get_field (isa
, opc
, j
, ifmt
,
2502 fail
= xtensa_operand_decode (isa
, opc
, j
, &odv
[j
]);
2507 /* Check operands to verify use of 'mov' assembler macro. */
2508 if (opclass
== c0opc_mov
&& nods
== 3)
2510 if (odv
[2] == odv
[1])
2513 if ((odv
[0] == 1) && (odv
[1] != 1))
2514 /* OR A1, An, An , where n != 1.
2515 This means we are inside epilogue already. */
2520 opclass
= c0opc_uninteresting
;
2525 /* Track register movement and modification for this operation. */
2526 fail
= call0_track_op (gdbarch
, cache
->c0
.c0_rt
, rtmp
,
2527 opclass
, nods
, odv
, ia
, 1, cache
);
2533 DEBUGVERB ("[call0_analyze_prologue] stopped at instr addr 0x%08x, %s\n",
2534 (unsigned)ia
, fail
? "failed" : "succeeded");
2535 xtensa_insnbuf_free(isa
, slot
);
2536 xtensa_insnbuf_free(isa
, ins
);
2537 return fail
? XTENSA_ISA_BADPC
: ia
;
2540 /* Initialize frame cache for the current frame in CALL0 ABI. */
2543 call0_frame_cache (frame_info_ptr this_frame
,
2544 xtensa_frame_cache_t
*cache
, CORE_ADDR pc
)
2546 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2547 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
2548 CORE_ADDR start_pc
; /* The beginning of the function. */
2549 CORE_ADDR body_pc
=UINT_MAX
; /* PC, where prologue analysis stopped. */
2550 CORE_ADDR sp
, fp
, ra
;
2551 int fp_regnum
= C0_SP
, c0_hasfp
= 0, c0_frmsz
= 0, prev_sp
= 0, to_stk
;
2552 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
2554 sp
= get_frame_register_unsigned
2555 (this_frame
, tdep
->a0_base
+ 1);
2556 fp
= sp
; /* Assume FP == SP until proven otherwise. */
2558 /* Find the beginning of the prologue of the function containing the PC
2559 and analyze it up to the PC or the end of the prologue. */
2561 if (find_pc_partial_function (pc
, NULL
, &start_pc
, NULL
))
2563 body_pc
= call0_analyze_prologue (gdbarch
, start_pc
, pc
, C0_NREGS
, cache
);
2565 if (body_pc
== XTENSA_ISA_BADPC
)
2569 goto finish_frame_analysis
;
2573 /* Get the frame information and FP (if used) at the current PC.
2574 If PC is in the prologue, the prologue analysis is more reliable
2575 than DWARF info. We don't not know for sure, if PC is in the prologue,
2576 but we do know no calls have yet taken place, so we can almost
2577 certainly rely on the prologue analysis. */
2581 /* Prologue analysis was successful up to the PC.
2582 It includes the cases when PC == START_PC. */
2583 c0_hasfp
= cache
->c0
.c0_rt
[C0_FP
].fr_reg
== C0_SP
;
2584 /* c0_hasfp == true means there is a frame pointer because
2585 we analyzed the prologue and found that cache->c0.c0_rt[C0_FP]
2586 was derived from SP. Otherwise, it would be C0_FP. */
2587 fp_regnum
= c0_hasfp
? C0_FP
: C0_SP
;
2588 c0_frmsz
= - cache
->c0
.c0_rt
[fp_regnum
].fr_ofs
;
2589 fp_regnum
+= tdep
->a0_base
;
2591 else /* No data from the prologue analysis. */
2594 fp_regnum
= tdep
->a0_base
+ C0_SP
;
2599 if (cache
->c0
.c0_fpalign
)
2601 /* This frame has a special prologue with a dynamic stack adjustment
2602 to force an alignment, which is bigger than standard 16 bytes. */
2604 CORE_ADDR unaligned_sp
;
2606 if (cache
->c0
.c0_old_sp
== C0_INEXP
)
2607 /* This can't be. Prologue code should be consistent.
2608 Unaligned stack pointer should be saved in a spare register. */
2612 goto finish_frame_analysis
;
2615 if (cache
->c0
.c0_sp_ofs
== C0_NOSTK
)
2616 /* Saved unaligned value of SP is kept in a register. */
2617 unaligned_sp
= get_frame_register_unsigned
2618 (this_frame
, tdep
->a0_base
+ cache
->c0
.c0_old_sp
);
2620 /* Get the value from stack. */
2621 unaligned_sp
= (CORE_ADDR
)
2622 read_memory_integer (fp
+ cache
->c0
.c0_sp_ofs
, 4, byte_order
);
2624 prev_sp
= unaligned_sp
+ c0_frmsz
;
2627 prev_sp
= fp
+ c0_frmsz
;
2629 /* Frame size from debug info or prologue tracking does not account for
2630 alloca() and other dynamic allocations. Adjust frame size by FP - SP. */
2633 fp
= get_frame_register_unsigned (this_frame
, fp_regnum
);
2635 /* Update the stack frame size. */
2636 c0_frmsz
+= fp
- sp
;
2639 /* Get the return address (RA) from the stack if saved,
2640 or try to get it from a register. */
2642 to_stk
= cache
->c0
.c0_rt
[C0_RA
].to_stk
;
2643 if (to_stk
!= C0_NOSTK
)
2645 read_memory_integer (sp
+ c0_frmsz
+ cache
->c0
.c0_rt
[C0_RA
].to_stk
,
2648 else if (cache
->c0
.c0_rt
[C0_RA
].fr_reg
== C0_CONST
2649 && cache
->c0
.c0_rt
[C0_RA
].fr_ofs
== 0)
2651 /* Special case for terminating backtrace at a function that wants to
2652 be seen as the outermost one. Such a function will clear it's RA (A0)
2653 register to 0 in the prologue instead of saving its original value. */
2658 /* RA was copied to another register or (before any function call) may
2659 still be in the original RA register. This is not always reliable:
2660 even in a leaf function, register tracking stops after prologue, and
2661 even in prologue, non-prologue instructions (not tracked) may overwrite
2662 RA or any register it was copied to. If likely in prologue or before
2663 any call, use retracking info and hope for the best (compiler should
2664 have saved RA in stack if not in a leaf function). If not in prologue,
2670 && (i
== C0_RA
|| cache
->c0
.c0_rt
[i
].fr_reg
!= C0_RA
);
2672 if (i
>= C0_NREGS
&& cache
->c0
.c0_rt
[C0_RA
].fr_reg
== C0_RA
)
2676 ra
= get_frame_register_unsigned
2678 tdep
->a0_base
+ cache
->c0
.c0_rt
[i
].fr_reg
);
2683 finish_frame_analysis
:
2684 cache
->pc
= start_pc
;
2686 /* RA == 0 marks the outermost frame. Do not go past it. */
2687 cache
->prev_sp
= (ra
!= 0) ? prev_sp
: 0;
2688 cache
->c0
.fp_regnum
= fp_regnum
;
2689 cache
->c0
.c0_frmsz
= c0_frmsz
;
2690 cache
->c0
.c0_hasfp
= c0_hasfp
;
2691 cache
->c0
.c0_fp
= fp
;
2694 static CORE_ADDR a0_saved
;
2695 static CORE_ADDR a7_saved
;
2696 static CORE_ADDR a11_saved
;
2697 static int a0_was_saved
;
2698 static int a7_was_saved
;
2699 static int a11_was_saved
;
2701 /* Simulate L32E instruction: AT <-- ref (AS + offset). */
2703 execute_l32e (struct gdbarch
*gdbarch
, int at
, int as
, int offset
, CORE_ADDR wb
)
2705 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
2706 int atreg
= arreg_number (gdbarch
, tdep
->a0_base
+ at
, wb
);
2707 int asreg
= arreg_number (gdbarch
, tdep
->a0_base
+ as
, wb
);
2708 CORE_ADDR addr
= xtensa_read_register (asreg
) + offset
;
2709 unsigned int spilled_value
2710 = read_memory_unsigned_integer (addr
, 4, gdbarch_byte_order (gdbarch
));
2712 if ((at
== 0) && !a0_was_saved
)
2714 a0_saved
= xtensa_read_register (atreg
);
2717 else if ((at
== 7) && !a7_was_saved
)
2719 a7_saved
= xtensa_read_register (atreg
);
2722 else if ((at
== 11) && !a11_was_saved
)
2724 a11_saved
= xtensa_read_register (atreg
);
2728 xtensa_write_register (atreg
, spilled_value
);
2731 /* Simulate S32E instruction: AT --> ref (AS + offset). */
2733 execute_s32e (struct gdbarch
*gdbarch
, int at
, int as
, int offset
, CORE_ADDR wb
)
2735 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
2736 int atreg
= arreg_number (gdbarch
, tdep
->a0_base
+ at
, wb
);
2737 int asreg
= arreg_number (gdbarch
, tdep
->a0_base
+ as
, wb
);
2738 CORE_ADDR addr
= xtensa_read_register (asreg
) + offset
;
2739 ULONGEST spilled_value
= xtensa_read_register (atreg
);
2741 write_memory_unsigned_integer (addr
, 4,
2742 gdbarch_byte_order (gdbarch
),
2746 #define XTENSA_MAX_WINDOW_INTERRUPT_HANDLER_LEN 200
2748 enum xtensa_exception_handler_t
2752 xtNoExceptionHandler
2755 /* Execute instruction stream from current PC until hitting RFWU or RFWO.
2756 Return type of Xtensa Window Interrupt Handler on success. */
2757 static xtensa_exception_handler_t
2758 execute_code (struct gdbarch
*gdbarch
, CORE_ADDR current_pc
, CORE_ADDR wb
)
2761 xtensa_insnbuf ins
, slot
;
2762 gdb_byte ibuf
[XTENSA_ISA_BSZ
];
2763 CORE_ADDR ia
, bt
, ba
;
2765 int ilen
, islots
, is
;
2768 void (*func
) (struct gdbarch
*, int, int, int, CORE_ADDR
);
2769 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
2771 uint32_t at
, as
, offset
;
2773 /* WindowUnderflow12 = true, when inside _WindowUnderflow12. */
2774 int WindowUnderflow12
= (current_pc
& 0x1ff) >= 0x140;
2776 isa
= xtensa_default_isa
;
2777 gdb_assert (XTENSA_ISA_BSZ
>= xtensa_isa_maxlength (isa
));
2778 ins
= xtensa_insnbuf_alloc (isa
);
2779 slot
= xtensa_insnbuf_alloc (isa
);
2788 while (insn_num
++ < XTENSA_MAX_WINDOW_INTERRUPT_HANDLER_LEN
)
2790 if (ia
+ xtensa_isa_maxlength (isa
) > bt
)
2793 bt
= (ba
+ XTENSA_ISA_BSZ
);
2794 if (target_read_memory (ba
, ibuf
, bt
- ba
) != 0)
2795 return xtNoExceptionHandler
;
2797 xtensa_insnbuf_from_chars (isa
, ins
, &ibuf
[ia
-ba
], 0);
2798 ifmt
= xtensa_format_decode (isa
, ins
);
2799 if (ifmt
== XTENSA_UNDEFINED
)
2800 return xtNoExceptionHandler
;
2801 ilen
= xtensa_format_length (isa
, ifmt
);
2802 if (ilen
== XTENSA_UNDEFINED
)
2803 return xtNoExceptionHandler
;
2804 islots
= xtensa_format_num_slots (isa
, ifmt
);
2805 if (islots
== XTENSA_UNDEFINED
)
2806 return xtNoExceptionHandler
;
2807 for (is
= 0; is
< islots
; ++is
)
2809 if (xtensa_format_get_slot (isa
, ifmt
, is
, ins
, slot
))
2810 return xtNoExceptionHandler
;
2811 opc
= xtensa_opcode_decode (isa
, ifmt
, is
, slot
);
2812 if (opc
== XTENSA_UNDEFINED
)
2813 return xtNoExceptionHandler
;
2814 switch (call0_classify_opcode (isa
, opc
))
2820 /* We expect none of them here. */
2821 return xtNoExceptionHandler
;
2823 func
= execute_l32e
;
2826 func
= execute_s32e
;
2828 case c0opc_rfwo
: /* RFWO. */
2829 /* Here, we return from WindowOverflow handler and,
2830 if we stopped at the very beginning, which means
2831 A0 was saved, we have to restore it now. */
2834 int arreg
= arreg_number (gdbarch
,
2837 xtensa_write_register (arreg
, a0_saved
);
2839 return xtWindowOverflow
;
2840 case c0opc_rfwu
: /* RFWU. */
2841 /* Here, we return from WindowUnderflow handler.
2842 Let's see if either A7 or A11 has to be restored. */
2843 if (WindowUnderflow12
)
2847 int arreg
= arreg_number (gdbarch
,
2850 xtensa_write_register (arreg
, a11_saved
);
2853 else if (a7_was_saved
)
2855 int arreg
= arreg_number (gdbarch
,
2858 xtensa_write_register (arreg
, a7_saved
);
2860 return xtWindowUnderflow
;
2861 default: /* Simply skip this insns. */
2865 /* Decode arguments for L32E / S32E and simulate their execution. */
2866 if ( xtensa_opcode_num_operands (isa
, opc
) != 3 )
2867 return xtNoExceptionHandler
;
2868 if (xtensa_operand_get_field (isa
, opc
, 0, ifmt
, is
, slot
, &at
))
2869 return xtNoExceptionHandler
;
2870 if (xtensa_operand_decode (isa
, opc
, 0, &at
))
2871 return xtNoExceptionHandler
;
2872 if (xtensa_operand_get_field (isa
, opc
, 1, ifmt
, is
, slot
, &as
))
2873 return xtNoExceptionHandler
;
2874 if (xtensa_operand_decode (isa
, opc
, 1, &as
))
2875 return xtNoExceptionHandler
;
2876 if (xtensa_operand_get_field (isa
, opc
, 2, ifmt
, is
, slot
, &offset
))
2877 return xtNoExceptionHandler
;
2878 if (xtensa_operand_decode (isa
, opc
, 2, &offset
))
2879 return xtNoExceptionHandler
;
2881 (*func
) (gdbarch
, at
, as
, offset
, wb
);
2886 return xtNoExceptionHandler
;
2889 /* Handle Window Overflow / Underflow exception frames. */
2892 xtensa_window_interrupt_frame_cache (frame_info_ptr this_frame
,
2893 xtensa_frame_cache_t
*cache
,
2896 struct gdbarch
*gdbarch
= get_frame_arch (this_frame
);
2897 CORE_ADDR ps
, wb
, ws
, ra
;
2898 int epc1_regnum
, i
, regnum
;
2899 xtensa_exception_handler_t eh_type
;
2900 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
2902 /* Read PS, WB, and WS from the hardware. Note that PS register
2903 must be present, if Windowed ABI is supported. */
2904 ps
= xtensa_read_register (gdbarch_ps_regnum (gdbarch
));
2905 wb
= xtensa_read_register (tdep
->wb_regnum
);
2906 ws
= xtensa_read_register (tdep
->ws_regnum
);
2908 /* Execute all the remaining instructions from Window Interrupt Handler
2909 by simulating them on the remote protocol level. On return, set the
2910 type of Xtensa Window Interrupt Handler, or report an error. */
2911 eh_type
= execute_code (gdbarch
, pc
, wb
);
2912 if (eh_type
== xtNoExceptionHandler
)
2914 Unable to decode Xtensa Window Interrupt Handler's code."));
2916 cache
->ps
= ps
^ PS_EXC
; /* Clear the exception bit in PS. */
2917 cache
->call0
= 0; /* It's Windowed ABI. */
2919 /* All registers for the cached frame will be alive. */
2920 for (i
= 0; i
< XTENSA_NUM_SAVED_AREGS
; i
++)
2921 cache
->wd
.aregs
[i
] = -1;
2923 if (eh_type
== xtWindowOverflow
)
2924 cache
->wd
.ws
= ws
^ (1 << wb
);
2925 else /* eh_type == xtWindowUnderflow. */
2926 cache
->wd
.ws
= ws
| (1 << wb
);
2928 cache
->wd
.wb
= (ps
& 0xf00) >> 8; /* Set WB to OWB. */
2929 regnum
= arreg_number (gdbarch
, tdep
->a0_base
,
2931 ra
= xtensa_read_register (regnum
);
2932 cache
->wd
.callsize
= WINSIZE (ra
);
2933 cache
->prev_sp
= xtensa_read_register (regnum
+ 1);
2934 /* Set regnum to a frame pointer of the frame being cached. */
2935 regnum
= xtensa_scan_prologue (gdbarch
, pc
);
2936 regnum
= arreg_number (gdbarch
,
2937 tdep
->a0_base
+ regnum
,
2939 cache
->base
= get_frame_register_unsigned (this_frame
, regnum
);
2941 /* Read PC of interrupted function from EPC1 register. */
2942 epc1_regnum
= xtensa_find_register_by_name (gdbarch
,"epc1");
2943 if (epc1_regnum
< 0)
2944 error(_("Unable to read Xtensa register EPC1"));
2945 cache
->ra
= xtensa_read_register (epc1_regnum
);
2946 cache
->pc
= get_frame_func (this_frame
);
2950 /* Skip function prologue.
2952 Return the pc of the first instruction after prologue. GDB calls this to
2953 find the address of the first line of the function or (if there is no line
2954 number information) to skip the prologue for planting breakpoints on
2955 function entries. Use debug info (if present) or prologue analysis to skip
2956 the prologue to achieve reliable debugging behavior. For windowed ABI,
2957 only the 'entry' instruction is skipped. It is not strictly necessary to
2958 skip the prologue (Call0) or 'entry' (Windowed) because xt-gdb knows how to
2959 backtrace at any point in the prologue, however certain potential hazards
2960 are avoided and a more "normal" debugging experience is ensured by
2961 skipping the prologue (can be disabled by defining DONT_SKIP_PROLOG).
2962 For example, if we don't skip the prologue:
2963 - Some args may not yet have been saved to the stack where the debug
2964 info expects to find them (true anyway when only 'entry' is skipped);
2965 - Software breakpoints ('break' instrs) may not have been unplanted
2966 when the prologue analysis is done on initializing the frame cache,
2967 and breaks in the prologue will throw off the analysis.
2969 If we have debug info ( line-number info, in particular ) we simply skip
2970 the code associated with the first function line effectively skipping
2971 the prologue code. It works even in cases like
2974 { int local_var = 1;
2978 because, for this source code, both Xtensa compilers will generate two
2979 separate entries ( with the same line number ) in dwarf line-number
2980 section to make sure there is a boundary between the prologue code and
2981 the rest of the function.
2983 If there is no debug info, we need to analyze the code. */
2985 /* #define DONT_SKIP_PROLOGUE */
2988 xtensa_skip_prologue (struct gdbarch
*gdbarch
, CORE_ADDR start_pc
)
2990 struct symtab_and_line prologue_sal
;
2993 DEBUGTRACE ("xtensa_skip_prologue (start_pc = 0x%08x)\n", (int) start_pc
);
2995 #if DONT_SKIP_PROLOGUE
2999 /* Try to find first body line from debug info. */
3001 prologue_sal
= find_pc_line (start_pc
, 0);
3002 if (prologue_sal
.line
!= 0) /* Found debug info. */
3004 /* In Call0, it is possible to have a function with only one instruction
3005 ('ret') resulting from a one-line optimized function that does nothing.
3006 In that case, prologue_sal.end may actually point to the start of the
3007 next function in the text section, causing a breakpoint to be set at
3008 the wrong place. Check, if the end address is within a different
3009 function, and if so return the start PC. We know we have symbol
3014 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
3015 if ((tdep
->call_abi
== CallAbiCall0Only
)
3016 && call0_ret (start_pc
, prologue_sal
.end
))
3019 find_pc_partial_function (prologue_sal
.end
, NULL
, &end_func
, NULL
);
3020 if (end_func
!= start_pc
)
3023 return prologue_sal
.end
;
3026 /* No debug line info. Analyze prologue for Call0 or simply skip ENTRY. */
3027 body_pc
= call0_analyze_prologue (gdbarch
, start_pc
, 0, 0,
3028 xtensa_alloc_frame_cache (0));
3029 return body_pc
!= 0 ? body_pc
: start_pc
;
3032 /* Verify the current configuration. */
3034 xtensa_verify_config (struct gdbarch
*gdbarch
)
3036 xtensa_gdbarch_tdep
*tdep
= gdbarch_tdep
<xtensa_gdbarch_tdep
> (gdbarch
);
3039 /* Verify that we got a reasonable number of AREGS. */
3040 if ((tdep
->num_aregs
& -tdep
->num_aregs
) != tdep
->num_aregs
)
3042 \n\tnum_aregs: Number of AR registers (%d) is not a power of two!"),
3045 /* Verify that certain registers exist. */
3047 if (tdep
->pc_regnum
== -1)
3048 log
.printf (_("\n\tpc_regnum: No PC register"));
3049 if (tdep
->isa_use_exceptions
&& tdep
->ps_regnum
== -1)
3050 log
.printf (_("\n\tps_regnum: No PS register"));
3052 if (tdep
->isa_use_windowed_registers
)
3054 if (tdep
->wb_regnum
== -1)
3055 log
.printf (_("\n\twb_regnum: No WB register"));
3056 if (tdep
->ws_regnum
== -1)
3057 log
.printf (_("\n\tws_regnum: No WS register"));
3058 if (tdep
->ar_base
== -1)
3059 log
.printf (_("\n\tar_base: No AR registers"));
3062 if (tdep
->a0_base
== -1)
3063 log
.printf (_("\n\ta0_base: No Ax registers"));
3066 internal_error (_("the following are invalid: %s"), log
.c_str ());
3070 /* Derive specific register numbers from the array of registers. */
3073 xtensa_derive_tdep (xtensa_gdbarch_tdep
*tdep
)
3075 xtensa_register_t
* rmap
;
3076 int n
, max_size
= 4;
3079 tdep
->num_nopriv_regs
= 0;
3081 /* Special registers 0..255 (core). */
3082 #define XTENSA_DBREGN_SREG(n) (0x0200+(n))
3083 /* User registers 0..255. */
3084 #define XTENSA_DBREGN_UREG(n) (0x0300+(n))
3086 for (rmap
= tdep
->regmap
, n
= 0; rmap
->target_number
!= -1; n
++, rmap
++)
3088 if (rmap
->target_number
== 0x0020)
3089 tdep
->pc_regnum
= n
;
3090 else if (rmap
->target_number
== 0x0100)
3092 else if (rmap
->target_number
== 0x0000)
3094 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(72))
3095 tdep
->wb_regnum
= n
;
3096 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(73))
3097 tdep
->ws_regnum
= n
;
3098 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(233))
3099 tdep
->debugcause_regnum
= n
;
3100 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(232))
3101 tdep
->exccause_regnum
= n
;
3102 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(238))
3103 tdep
->excvaddr_regnum
= n
;
3104 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(0))
3105 tdep
->lbeg_regnum
= n
;
3106 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(1))
3107 tdep
->lend_regnum
= n
;
3108 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(2))
3109 tdep
->lcount_regnum
= n
;
3110 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(3))
3111 tdep
->sar_regnum
= n
;
3112 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(5))
3113 tdep
->litbase_regnum
= n
;
3114 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(230))
3115 tdep
->ps_regnum
= n
;
3116 else if (rmap
->target_number
== XTENSA_DBREGN_UREG(231))
3117 tdep
->threadptr_regnum
= n
;
3119 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(226))
3120 tdep
->interrupt_regnum
= n
;
3121 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(227))
3122 tdep
->interrupt2_regnum
= n
;
3123 else if (rmap
->target_number
== XTENSA_DBREGN_SREG(224))
3124 tdep
->cpenable_regnum
= n
;
3127 if (rmap
->byte_size
> max_size
)
3128 max_size
= rmap
->byte_size
;
3129 if (rmap
->mask
!= 0 && tdep
->num_regs
== 0)
3131 if ((rmap
->flags
& XTENSA_REGISTER_FLAGS_PRIVILEGED
) != 0
3132 && tdep
->num_nopriv_regs
== 0)
3133 tdep
->num_nopriv_regs
= n
;
3135 if (tdep
->num_regs
== 0)
3136 tdep
->num_regs
= tdep
->num_nopriv_regs
;
3138 /* Number of pseudo registers. */
3139 tdep
->num_pseudo_regs
= n
- tdep
->num_regs
;
3141 /* Empirically determined maximum sizes. */
3142 tdep
->max_register_raw_size
= max_size
;
3143 tdep
->max_register_virtual_size
= max_size
;
3146 /* Module "constructor" function. */
3148 extern xtensa_gdbarch_tdep xtensa_tdep
;
3150 static struct gdbarch
*
3151 xtensa_gdbarch_init (struct gdbarch_info info
, struct gdbarch_list
*arches
)
3153 struct gdbarch
*gdbarch
;
3155 DEBUGTRACE ("gdbarch_init()\n");
3157 if (!xtensa_default_isa
)
3158 xtensa_default_isa
= xtensa_isa_init (0, 0);
3160 /* We have to set the byte order before we call gdbarch_alloc. */
3161 info
.byte_order
= XCHAL_HAVE_BE
? BFD_ENDIAN_BIG
: BFD_ENDIAN_LITTLE
;
3163 xtensa_gdbarch_tdep
*tdep
= &xtensa_tdep
;
3164 gdbarch
= gdbarch_alloc (&info
, tdep
);
3165 xtensa_derive_tdep (tdep
);
3167 /* Verify our configuration. */
3168 xtensa_verify_config (gdbarch
);
3169 xtensa_session_once_reported
= 0;
3171 set_gdbarch_wchar_bit (gdbarch
, 2 * TARGET_CHAR_BIT
);
3172 set_gdbarch_wchar_signed (gdbarch
, 0);
3174 /* Pseudo-Register read/write. */
3175 set_gdbarch_pseudo_register_read (gdbarch
, xtensa_pseudo_register_read
);
3176 set_gdbarch_pseudo_register_write (gdbarch
, xtensa_pseudo_register_write
);
3178 /* Set target information. */
3179 set_gdbarch_num_regs (gdbarch
, tdep
->num_regs
);
3180 set_gdbarch_num_pseudo_regs (gdbarch
, tdep
->num_pseudo_regs
);
3181 set_gdbarch_sp_regnum (gdbarch
, tdep
->a0_base
+ 1);
3182 set_gdbarch_pc_regnum (gdbarch
, tdep
->pc_regnum
);
3183 set_gdbarch_ps_regnum (gdbarch
, tdep
->ps_regnum
);
3185 /* Renumber registers for known formats (stabs and dwarf2). */
3186 set_gdbarch_stab_reg_to_regnum (gdbarch
, xtensa_reg_to_regnum
);
3187 set_gdbarch_dwarf2_reg_to_regnum (gdbarch
, xtensa_reg_to_regnum
);
3189 /* We provide our own function to get register information. */
3190 set_gdbarch_register_name (gdbarch
, xtensa_register_name
);
3191 set_gdbarch_register_type (gdbarch
, xtensa_register_type
);
3193 /* To call functions from GDB using dummy frame. */
3194 set_gdbarch_push_dummy_call (gdbarch
, xtensa_push_dummy_call
);
3196 set_gdbarch_believe_pcc_promotion (gdbarch
, 1);
3198 set_gdbarch_return_value (gdbarch
, xtensa_return_value
);
3200 /* Advance PC across any prologue instructions to reach "real" code. */
3201 set_gdbarch_skip_prologue (gdbarch
, xtensa_skip_prologue
);
3203 /* Stack grows downward. */
3204 set_gdbarch_inner_than (gdbarch
, core_addr_lessthan
);
3206 /* Set breakpoints. */
3207 set_gdbarch_breakpoint_kind_from_pc (gdbarch
,
3208 xtensa_breakpoint_kind_from_pc
);
3209 set_gdbarch_sw_breakpoint_from_kind (gdbarch
,
3210 xtensa_sw_breakpoint_from_kind
);
3212 /* After breakpoint instruction or illegal instruction, pc still
3213 points at break instruction, so don't decrement. */
3214 set_gdbarch_decr_pc_after_break (gdbarch
, 0);
3216 /* We don't skip args. */
3217 set_gdbarch_frame_args_skip (gdbarch
, 0);
3219 set_gdbarch_unwind_pc (gdbarch
, xtensa_unwind_pc
);
3221 set_gdbarch_frame_align (gdbarch
, xtensa_frame_align
);
3223 set_gdbarch_dummy_id (gdbarch
, xtensa_dummy_id
);
3225 /* Frame handling. */
3226 frame_base_set_default (gdbarch
, &xtensa_frame_base
);
3227 frame_unwind_append_unwinder (gdbarch
, &xtensa_unwind
);
3228 dwarf2_append_unwinders (gdbarch
);
3230 set_gdbarch_have_nonsteppable_watchpoint (gdbarch
, 1);
3232 xtensa_add_reggroups (gdbarch
);
3233 set_gdbarch_register_reggroup_p (gdbarch
, xtensa_register_reggroup_p
);
3235 set_gdbarch_iterate_over_regset_sections
3236 (gdbarch
, xtensa_iterate_over_regset_sections
);
3238 set_solib_svr4_fetch_link_map_offsets
3239 (gdbarch
, svr4_ilp32_fetch_link_map_offsets
);
3241 /* Hook in the ABI-specific overrides, if they have been registered. */
3242 gdbarch_init_osabi (info
, gdbarch
);
3248 xtensa_dump_tdep (struct gdbarch
*gdbarch
, struct ui_file
*file
)
3250 error (_("xtensa_dump_tdep(): not implemented"));
3253 void _initialize_xtensa_tdep ();
3255 _initialize_xtensa_tdep ()
3257 gdbarch_register (bfd_arch_xtensa
, xtensa_gdbarch_init
, xtensa_dump_tdep
);
3258 xtensa_init_reggroups ();
3260 add_setshow_zuinteger_cmd ("xtensa",
3262 &xtensa_debug_level
,
3263 _("Set Xtensa debugging."),
3264 _("Show Xtensa debugging."), _("\
3265 When non-zero, Xtensa-specific debugging is enabled. \
3266 Can be 1, 2, 3, or 4 indicating the level of debugging."),
3269 &setdebuglist
, &showdebuglist
);