2012-02-27 Luis Machado <lgustavo@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / xtensa-tdep.c
CommitLineData
ca3bf3bd
DJ
1/* Target-dependent code for the Xtensa port of GDB, the GNU debugger.
2
c5a57081 3 Copyright (C) 2003, 2005-2012 Free Software Foundation, Inc.
ca3bf3bd
DJ
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
ca3bf3bd
DJ
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
ca3bf3bd
DJ
19
20#include "defs.h"
21#include "frame.h"
ee967b5f 22#include "solib-svr4.h"
ca3bf3bd
DJ
23#include "symtab.h"
24#include "symfile.h"
25#include "objfiles.h"
26#include "gdbtypes.h"
27#include "gdbcore.h"
28#include "value.h"
29#include "dis-asm.h"
30#include "inferior.h"
31#include "floatformat.h"
32#include "regcache.h"
33#include "reggroups.h"
34#include "regset.h"
35
36#include "dummy-frame.h"
fa8f86ff 37#include "dwarf2.h"
ca3bf3bd
DJ
38#include "dwarf2-frame.h"
39#include "dwarf2loc.h"
40#include "frame.h"
41#include "frame-base.h"
42#include "frame-unwind.h"
43
44#include "arch-utils.h"
45#include "gdbarch.h"
46#include "remote.h"
47#include "serial.h"
48
49#include "command.h"
50#include "gdbcmd.h"
51#include "gdb_assert.h"
52
bdb4c075 53#include "xtensa-isa.h"
ca3bf3bd 54#include "xtensa-tdep.h"
94a0e877 55#include "xtensa-config.h"
ca3bf3bd
DJ
56
57
58static int xtensa_debug_level = 0;
59
60#define DEBUGWARN(args...) \
61 if (xtensa_debug_level > 0) \
62 fprintf_unfiltered (gdb_stdlog, "(warn ) " args)
63
64#define DEBUGINFO(args...) \
65 if (xtensa_debug_level > 1) \
66 fprintf_unfiltered (gdb_stdlog, "(info ) " args)
67
68#define DEBUGTRACE(args...) \
69 if (xtensa_debug_level > 2) \
70 fprintf_unfiltered (gdb_stdlog, "(trace) " args)
71
72#define DEBUGVERB(args...) \
73 if (xtensa_debug_level > 3) \
74 fprintf_unfiltered (gdb_stdlog, "(verb ) " args)
75
76
77/* According to the ABI, the SP must be aligned to 16-byte boundaries. */
ca3bf3bd
DJ
78#define SP_ALIGNMENT 16
79
80
bdb4c075
MG
81/* On Windowed ABI, we use a6 through a11 for passing arguments
82 to a function called by GDB because CALL4 is used. */
bdb4c075
MG
83#define ARGS_NUM_REGS 6
84#define REGISTER_SIZE 4
ca3bf3bd 85
ca3bf3bd 86
bdb4c075
MG
87/* Extract the call size from the return address or PS register. */
88#define PS_CALLINC_SHIFT 16
89#define PS_CALLINC_MASK 0x00030000
90#define CALLINC(ps) (((ps) & PS_CALLINC_MASK) >> PS_CALLINC_SHIFT)
91#define WINSIZE(ra) (4 * (( (ra) >> 30) & 0x3))
ca3bf3bd 92
98689b25
MG
93/* On TX, hardware can be configured without Exception Option.
94 There is no PS register in this case. Inside XT-GDB, let us treat
95 it as a virtual read-only register always holding the same value. */
96#define TX_PS 0x20
97
bdb4c075 98/* ABI-independent macros. */
91d8eb23
MD
99#define ARG_NOF(gdbarch) \
100 (gdbarch_tdep (gdbarch)->call_abi \
101 == CallAbiCall0Only ? C0_NARGS : (ARGS_NUM_REGS))
102#define ARG_1ST(gdbarch) \
103 (gdbarch_tdep (gdbarch)->call_abi == CallAbiCall0Only \
94a0e877 104 ? (gdbarch_tdep (gdbarch)->a0_base + C0_ARGS) \
91d8eb23 105 : (gdbarch_tdep (gdbarch)->a0_base + 6))
ca3bf3bd 106
ca3bf3bd
DJ
107/* XTENSA_IS_ENTRY tests whether the first byte of an instruction
108 indicates that the instruction is an ENTRY instruction. */
109
91d8eb23
MD
110#define XTENSA_IS_ENTRY(gdbarch, op1) \
111 ((gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG) \
4c6b5505 112 ? ((op1) == 0x6c) : ((op1) == 0x36))
ca3bf3bd 113
bdb4c075 114#define XTENSA_ENTRY_LENGTH 3
ca3bf3bd
DJ
115
116/* windowing_enabled() returns true, if windowing is enabled.
117 WOE must be set to 1; EXCM to 0.
118 Note: We assume that EXCM is always 0 for XEA1. */
119
bdb4c075
MG
120#define PS_WOE (1<<18)
121#define PS_EXC (1<<4)
122
b801de47 123static int
98689b25
MG
124windowing_enabled (struct gdbarch *gdbarch, unsigned int ps)
125{
126 /* If we know CALL0 ABI is set explicitly, say it is Call0. */
127 if (gdbarch_tdep (gdbarch)->call_abi == CallAbiCall0Only)
128 return 0;
129
130 return ((ps & PS_EXC) == 0 && (ps & PS_WOE) != 0);
131}
132
581e13c1
MS
133/* Convert a live A-register number to the corresponding AR-register
134 number. */
91d8eb23 135static int
ee967b5f 136arreg_number (struct gdbarch *gdbarch, int a_regnum, ULONGEST wb)
91d8eb23
MD
137{
138 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
ee967b5f 139 int arreg;
91d8eb23 140
ee967b5f
MG
141 arreg = a_regnum - tdep->a0_base;
142 arreg += (wb & ((tdep->num_aregs - 1) >> 2)) << WB_SHIFT;
143 arreg &= tdep->num_aregs - 1;
91d8eb23 144
ee967b5f
MG
145 return arreg + tdep->ar_base;
146}
147
148/* Convert a live AR-register number to the corresponding A-register order
149 number in a range [0..15]. Return -1, if AR_REGNUM is out of WB window. */
150static int
151areg_number (struct gdbarch *gdbarch, int ar_regnum, unsigned int wb)
152{
153 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
154 int areg;
155
156 areg = ar_regnum - tdep->ar_base;
157 if (areg < 0 || areg >= tdep->num_aregs)
158 return -1;
159 areg = (areg - wb * 4) & (tdep->num_aregs - 1);
160 return (areg > 15) ? -1 : areg;
91d8eb23
MD
161}
162
68d6df83 163/* Read Xtensa register directly from the hardware. */
b801de47 164static unsigned long
08b9c608
MG
165xtensa_read_register (int regnum)
166{
167 ULONGEST value;
168
169 regcache_raw_read_unsigned (get_current_regcache (), regnum, &value);
170 return (unsigned long) value;
171}
172
68d6df83 173/* Write Xtensa register directly to the hardware. */
b801de47 174static void
08b9c608
MG
175xtensa_write_register (int regnum, ULONGEST value)
176{
177 regcache_raw_write_unsigned (get_current_regcache (), regnum, value);
178}
179
ca3bf3bd
DJ
180/* Return the window size of the previous call to the function from which we
181 have just returned.
182
183 This function is used to extract the return value after a called function
bdb4c075 184 has returned to the caller. On Xtensa, the register that holds the return
ca3bf3bd
DJ
185 value (from the perspective of the caller) depends on what call
186 instruction was used. For now, we are assuming that the call instruction
187 precedes the current address, so we simply analyze the call instruction.
188 If we are in a dummy frame, we simply return 4 as we used a 'pseudo-call4'
189 method to call the inferior function. */
190
191static int
91d8eb23 192extract_call_winsize (struct gdbarch *gdbarch, CORE_ADDR pc)
ca3bf3bd 193{
e17a4113 194 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bdb4c075 195 int winsize = 4;
ca3bf3bd 196 int insn;
ff7a4c00 197 gdb_byte buf[4];
ca3bf3bd
DJ
198
199 DEBUGTRACE ("extract_call_winsize (pc = 0x%08x)\n", (int) pc);
200
201 /* Read the previous instruction (should be a call[x]{4|8|12}. */
202 read_memory (pc-3, buf, 3);
e17a4113 203 insn = extract_unsigned_integer (buf, 3, byte_order);
ca3bf3bd
DJ
204
205 /* Decode call instruction:
206 Little Endian
207 call{0,4,8,12} OFFSET || {00,01,10,11} || 0101
208 callx{0,4,8,12} OFFSET || 11 || {00,01,10,11} || 0000
209 Big Endian
210 call{0,4,8,12} 0101 || {00,01,10,11} || OFFSET
211 callx{0,4,8,12} 0000 || {00,01,10,11} || 11 || OFFSET. */
212
e17a4113 213 if (byte_order == BFD_ENDIAN_LITTLE)
ca3bf3bd
DJ
214 {
215 if (((insn & 0xf) == 0x5) || ((insn & 0xcf) == 0xc0))
bdb4c075 216 winsize = (insn & 0x30) >> 2; /* 0, 4, 8, 12. */
ca3bf3bd
DJ
217 }
218 else
219 {
220 if (((insn >> 20) == 0x5) || (((insn >> 16) & 0xf3) == 0x03))
bdb4c075 221 winsize = (insn >> 16) & 0xc; /* 0, 4, 8, 12. */
ca3bf3bd
DJ
222 }
223 return winsize;
224}
225
226
227/* REGISTER INFORMATION */
228
08b9c608
MG
229/* Find register by name. */
230static int
231xtensa_find_register_by_name (struct gdbarch *gdbarch, char *name)
232{
233 int i;
234
235 for (i = 0; i < gdbarch_num_regs (gdbarch)
236 + gdbarch_num_pseudo_regs (gdbarch);
237 i++)
238
239 if (strcasecmp (gdbarch_tdep (gdbarch)->regmap[i].name, name) == 0)
240 return i;
241
242 return -1;
243}
244
ca3bf3bd 245/* Returns the name of a register. */
ca3bf3bd 246static const char *
d93859e2 247xtensa_register_name (struct gdbarch *gdbarch, int regnum)
ca3bf3bd
DJ
248{
249 /* Return the name stored in the register map. */
d93859e2
UW
250 if (regnum >= 0 && regnum < gdbarch_num_regs (gdbarch)
251 + gdbarch_num_pseudo_regs (gdbarch))
252 return gdbarch_tdep (gdbarch)->regmap[regnum].name;
ca3bf3bd 253
ca3bf3bd
DJ
254 internal_error (__FILE__, __LINE__, _("invalid register %d"), regnum);
255 return 0;
256}
257
ca3bf3bd
DJ
258/* Return the type of a register. Create a new type, if necessary. */
259
ca3bf3bd
DJ
260static struct type *
261xtensa_register_type (struct gdbarch *gdbarch, int regnum)
262{
df4df182
UW
263 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
264
ca3bf3bd 265 /* Return signed integer for ARx and Ax registers. */
df4df182
UW
266 if ((regnum >= tdep->ar_base
267 && regnum < tdep->ar_base + tdep->num_aregs)
268 || (regnum >= tdep->a0_base
269 && regnum < tdep->a0_base + 16))
0dfff4cb 270 return builtin_type (gdbarch)->builtin_int;
ca3bf3bd 271
6b50c0b0 272 if (regnum == gdbarch_pc_regnum (gdbarch)
df4df182 273 || regnum == tdep->a0_base + 1)
fde6c819 274 return builtin_type (gdbarch)->builtin_data_ptr;
ca3bf3bd
DJ
275
276 /* Return the stored type for all other registers. */
6b50c0b0
UW
277 else if (regnum >= 0 && regnum < gdbarch_num_regs (gdbarch)
278 + gdbarch_num_pseudo_regs (gdbarch))
ca3bf3bd 279 {
df4df182 280 xtensa_register_t* reg = &tdep->regmap[regnum];
ca3bf3bd 281
bdb4c075 282 /* Set ctype for this register (only the first time). */
ca3bf3bd
DJ
283
284 if (reg->ctype == 0)
285 {
286 struct ctype_cache *tp;
287 int size = reg->byte_size;
288
bdb4c075
MG
289 /* We always use the memory representation,
290 even if the register width is smaller. */
ca3bf3bd
DJ
291 switch (size)
292 {
293 case 1:
df4df182 294 reg->ctype = builtin_type (gdbarch)->builtin_uint8;
ca3bf3bd
DJ
295 break;
296
297 case 2:
df4df182 298 reg->ctype = builtin_type (gdbarch)->builtin_uint16;
ca3bf3bd
DJ
299 break;
300
301 case 4:
df4df182 302 reg->ctype = builtin_type (gdbarch)->builtin_uint32;
ca3bf3bd
DJ
303 break;
304
305 case 8:
df4df182 306 reg->ctype = builtin_type (gdbarch)->builtin_uint64;
ca3bf3bd
DJ
307 break;
308
309 case 16:
df4df182 310 reg->ctype = builtin_type (gdbarch)->builtin_uint128;
ca3bf3bd
DJ
311 break;
312
313 default:
df4df182 314 for (tp = tdep->type_entries; tp != NULL; tp = tp->next)
ca3bf3bd
DJ
315 if (tp->size == size)
316 break;
317
318 if (tp == NULL)
319 {
1448a0a2 320 char *name = xstrprintf ("int%d", size * 8);
ca3bf3bd 321 tp = xmalloc (sizeof (struct ctype_cache));
df4df182
UW
322 tp->next = tdep->type_entries;
323 tdep->type_entries = tp;
ca3bf3bd 324 tp->size = size;
e9bb382b 325 tp->virtual_type
1448a0a2
PM
326 = arch_integer_type (gdbarch, size * 8, 1, name);
327 xfree (name);
ca3bf3bd
DJ
328 }
329
330 reg->ctype = tp->virtual_type;
331 }
332 }
333 return reg->ctype;
334 }
335
ca3bf3bd
DJ
336 internal_error (__FILE__, __LINE__, _("invalid register number %d"), regnum);
337 return 0;
338}
339
340
bdb4c075 341/* Return the 'local' register number for stubs, dwarf2, etc.
ca3bf3bd
DJ
342 The debugging information enumerates registers starting from 0 for A0
343 to n for An. So, we only have to add the base number for A0. */
344
345static int
d3f73121 346xtensa_reg_to_regnum (struct gdbarch *gdbarch, int regnum)
ca3bf3bd
DJ
347{
348 int i;
349
350 if (regnum >= 0 && regnum < 16)
d3f73121 351 return gdbarch_tdep (gdbarch)->a0_base + regnum;
ca3bf3bd 352
f57d151a 353 for (i = 0;
d3f73121 354 i < gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch);
f57d151a 355 i++)
d3f73121 356 if (regnum == gdbarch_tdep (gdbarch)->regmap[i].target_number)
ca3bf3bd
DJ
357 return i;
358
ca3bf3bd
DJ
359 internal_error (__FILE__, __LINE__,
360 _("invalid dwarf/stabs register number %d"), regnum);
361 return 0;
362}
363
364
bdb4c075
MG
365/* Write the bits of a masked register to the various registers.
366 Only the masked areas of these registers are modified; the other
367 fields are untouched. The size of masked registers is always less
368 than or equal to 32 bits. */
ca3bf3bd
DJ
369
370static void
9c9acae0
UW
371xtensa_register_write_masked (struct regcache *regcache,
372 xtensa_register_t *reg, const gdb_byte *buffer)
ca3bf3bd
DJ
373{
374 unsigned int value[(MAX_REGISTER_SIZE + 3) / 4];
ca3bf3bd
DJ
375 const xtensa_mask_t *mask = reg->mask;
376
377 int shift = 0; /* Shift for next mask (mod 32). */
378 int start, size; /* Start bit and size of current mask. */
379
380 unsigned int *ptr = value;
381 unsigned int regval, m, mem = 0;
382
383 int bytesize = reg->byte_size;
384 int bitsize = bytesize * 8;
385 int i, r;
386
387 DEBUGTRACE ("xtensa_register_write_masked ()\n");
388
389 /* Copy the masked register to host byte-order. */
6b50c0b0 390 if (gdbarch_byte_order (get_regcache_arch (regcache)) == BFD_ENDIAN_BIG)
ca3bf3bd
DJ
391 for (i = 0; i < bytesize; i++)
392 {
393 mem >>= 8;
394 mem |= (buffer[bytesize - i - 1] << 24);
395 if ((i & 3) == 3)
396 *ptr++ = mem;
397 }
398 else
399 for (i = 0; i < bytesize; i++)
400 {
401 mem >>= 8;
402 mem |= (buffer[i] << 24);
403 if ((i & 3) == 3)
404 *ptr++ = mem;
405 }
406
407 /* We might have to shift the final value:
408 bytesize & 3 == 0 -> nothing to do, we use the full 32 bits,
409 bytesize & 3 == x -> shift (4-x) * 8. */
410
411 *ptr = mem >> (((0 - bytesize) & 3) * 8);
412 ptr = value;
413 mem = *ptr;
414
415 /* Write the bits to the masked areas of the other registers. */
416 for (i = 0; i < mask->count; i++)
417 {
418 start = mask->mask[i].bit_start;
419 size = mask->mask[i].bit_size;
420 regval = mem >> shift;
421
422 if ((shift += size) > bitsize)
423 error (_("size of all masks is larger than the register"));
424
425 if (shift >= 32)
426 {
427 mem = *(++ptr);
428 shift -= 32;
429 bitsize -= 32;
430
431 if (shift > 0)
432 regval |= mem << (size - shift);
433 }
434
435 /* Make sure we have a valid register. */
436 r = mask->mask[i].reg_num;
437 if (r >= 0 && size > 0)
438 {
439 /* Don't overwrite the unmasked areas. */
9c9acae0
UW
440 ULONGEST old_val;
441 regcache_cooked_read_unsigned (regcache, r, &old_val);
ca3bf3bd
DJ
442 m = 0xffffffff >> (32 - size) << start;
443 regval <<= start;
9c9acae0
UW
444 regval = (regval & m) | (old_val & ~m);
445 regcache_cooked_write_unsigned (regcache, r, regval);
ca3bf3bd
DJ
446 }
447 }
448}
449
450
bdb4c075
MG
451/* Read a tie state or mapped registers. Read the masked areas
452 of the registers and assemble them into a single value. */
ca3bf3bd 453
05d1431c 454static enum register_status
9c9acae0
UW
455xtensa_register_read_masked (struct regcache *regcache,
456 xtensa_register_t *reg, gdb_byte *buffer)
ca3bf3bd
DJ
457{
458 unsigned int value[(MAX_REGISTER_SIZE + 3) / 4];
ca3bf3bd
DJ
459 const xtensa_mask_t *mask = reg->mask;
460
461 int shift = 0;
462 int start, size;
463
464 unsigned int *ptr = value;
465 unsigned int regval, mem = 0;
466
467 int bytesize = reg->byte_size;
468 int bitsize = bytesize * 8;
469 int i;
470
471 DEBUGTRACE ("xtensa_register_read_masked (reg \"%s\", ...)\n",
472 reg->name == 0 ? "" : reg->name);
473
474 /* Assemble the register from the masked areas of other registers. */
475 for (i = 0; i < mask->count; i++)
476 {
477 int r = mask->mask[i].reg_num;
9c9acae0
UW
478 if (r >= 0)
479 {
05d1431c 480 enum register_status status;
9c9acae0 481 ULONGEST val;
05d1431c
PA
482
483 status = regcache_cooked_read_unsigned (regcache, r, &val);
484 if (status != REG_VALID)
485 return status;
9c9acae0
UW
486 regval = (unsigned int) val;
487 }
488 else
489 regval = 0;
490
ca3bf3bd
DJ
491 start = mask->mask[i].bit_start;
492 size = mask->mask[i].bit_size;
493
494 regval >>= start;
495
496 if (size < 32)
497 regval &= (0xffffffff >> (32 - size));
498
499 mem |= regval << shift;
500
501 if ((shift += size) > bitsize)
502 error (_("size of all masks is larger than the register"));
503
504 if (shift >= 32)
505 {
506 *ptr++ = mem;
507 bitsize -= 32;
508 shift -= 32;
509
510 if (shift == 0)
511 mem = 0;
512 else
513 mem = regval >> (size - shift);
514 }
515 }
516
517 if (shift > 0)
518 *ptr = mem;
519
520 /* Copy value to target byte order. */
521 ptr = value;
522 mem = *ptr;
523
6b50c0b0 524 if (gdbarch_byte_order (get_regcache_arch (regcache)) == BFD_ENDIAN_BIG)
ca3bf3bd
DJ
525 for (i = 0; i < bytesize; i++)
526 {
527 if ((i & 3) == 0)
528 mem = *ptr++;
529 buffer[bytesize - i - 1] = mem & 0xff;
530 mem >>= 8;
531 }
532 else
533 for (i = 0; i < bytesize; i++)
534 {
535 if ((i & 3) == 0)
536 mem = *ptr++;
537 buffer[i] = mem & 0xff;
538 mem >>= 8;
539 }
05d1431c
PA
540
541 return REG_VALID;
ca3bf3bd
DJ
542}
543
544
545/* Read pseudo registers. */
546
05d1431c 547static enum register_status
ca3bf3bd
DJ
548xtensa_pseudo_register_read (struct gdbarch *gdbarch,
549 struct regcache *regcache,
550 int regnum,
551 gdb_byte *buffer)
552{
e17a4113
UW
553 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
554
ca3bf3bd 555 DEBUGTRACE ("xtensa_pseudo_register_read (... regnum = %d (%s) ...)\n",
d93859e2 556 regnum, xtensa_register_name (gdbarch, regnum));
ca3bf3bd 557
6b50c0b0 558 if (regnum == gdbarch_num_regs (gdbarch)
94a0e877 559 + gdbarch_num_pseudo_regs (gdbarch) - 1)
6b50c0b0 560 regnum = gdbarch_tdep (gdbarch)->a0_base + 1;
ca3bf3bd 561
bdb4c075 562 /* Read aliases a0..a15, if this is a Windowed ABI. */
6b50c0b0 563 if (gdbarch_tdep (gdbarch)->isa_use_windowed_registers
94a0e877 564 && (regnum >= gdbarch_tdep (gdbarch)->a0_base)
6b50c0b0 565 && (regnum <= gdbarch_tdep (gdbarch)->a0_base + 15))
ca3bf3bd 566 {
ff7a4c00 567 gdb_byte *buf = (gdb_byte *) alloca (MAX_REGISTER_SIZE);
05d1431c 568 enum register_status status;
ca3bf3bd 569
05d1431c
PA
570 status = regcache_raw_read (regcache,
571 gdbarch_tdep (gdbarch)->wb_regnum,
572 buf);
573 if (status != REG_VALID)
574 return status;
ee967b5f 575 regnum = arreg_number (gdbarch, regnum,
e17a4113 576 extract_unsigned_integer (buf, 4, byte_order));
ca3bf3bd
DJ
577 }
578
bdb4c075 579 /* We can always read non-pseudo registers. */
6b50c0b0 580 if (regnum >= 0 && regnum < gdbarch_num_regs (gdbarch))
05d1431c 581 return regcache_raw_read (regcache, regnum, buffer);
94a0e877
MG
582
583 /* We have to find out how to deal with priveleged registers.
584 Let's treat them as pseudo-registers, but we cannot read/write them. */
585
586 else if (regnum < gdbarch_tdep (gdbarch)->a0_base)
587 {
588 buffer[0] = (gdb_byte)0;
589 buffer[1] = (gdb_byte)0;
590 buffer[2] = (gdb_byte)0;
591 buffer[3] = (gdb_byte)0;
05d1431c 592 return REG_VALID;
94a0e877 593 }
ca3bf3bd 594 /* Pseudo registers. */
f57d151a 595 else if (regnum >= 0
6b50c0b0
UW
596 && regnum < gdbarch_num_regs (gdbarch)
597 + gdbarch_num_pseudo_regs (gdbarch))
ca3bf3bd 598 {
6b50c0b0 599 xtensa_register_t *reg = &gdbarch_tdep (gdbarch)->regmap[regnum];
ca3bf3bd 600 xtensa_register_type_t type = reg->type;
6b50c0b0 601 int flags = gdbarch_tdep (gdbarch)->target_flags;
ca3bf3bd 602
bdb4c075 603 /* We cannot read Unknown or Unmapped registers. */
ca3bf3bd
DJ
604 if (type == xtRegisterTypeUnmapped || type == xtRegisterTypeUnknown)
605 {
606 if ((flags & xtTargetFlagsNonVisibleRegs) == 0)
607 {
608 warning (_("cannot read register %s"),
d93859e2 609 xtensa_register_name (gdbarch, regnum));
05d1431c 610 return REG_VALID;
ca3bf3bd
DJ
611 }
612 }
613
614 /* Some targets cannot read TIE register files. */
615 else if (type == xtRegisterTypeTieRegfile)
616 {
617 /* Use 'fetch' to get register? */
618 if (flags & xtTargetFlagsUseFetchStore)
619 {
620 warning (_("cannot read register"));
05d1431c 621 return REG_VALID;
ca3bf3bd
DJ
622 }
623
624 /* On some targets (esp. simulators), we can always read the reg. */
625 else if ((flags & xtTargetFlagsNonVisibleRegs) == 0)
626 {
627 warning (_("cannot read register"));
05d1431c 628 return REG_VALID;
ca3bf3bd
DJ
629 }
630 }
631
632 /* We can always read mapped registers. */
633 else if (type == xtRegisterTypeMapped || type == xtRegisterTypeTieState)
05d1431c 634 return xtensa_register_read_masked (regcache, reg, buffer);
ca3bf3bd
DJ
635
636 /* Assume that we can read the register. */
05d1431c 637 return regcache_raw_read (regcache, regnum, buffer);
ca3bf3bd 638 }
ca3bf3bd
DJ
639 else
640 internal_error (__FILE__, __LINE__,
641 _("invalid register number %d"), regnum);
642}
643
644
645/* Write pseudo registers. */
646
647static void
648xtensa_pseudo_register_write (struct gdbarch *gdbarch,
649 struct regcache *regcache,
650 int regnum,
651 const gdb_byte *buffer)
652{
e17a4113
UW
653 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
654
ca3bf3bd 655 DEBUGTRACE ("xtensa_pseudo_register_write (... regnum = %d (%s) ...)\n",
d93859e2 656 regnum, xtensa_register_name (gdbarch, regnum));
ca3bf3bd 657
6b50c0b0 658 if (regnum == gdbarch_num_regs (gdbarch)
94a0e877 659 + gdbarch_num_pseudo_regs (gdbarch) -1)
6b50c0b0 660 regnum = gdbarch_tdep (gdbarch)->a0_base + 1;
ca3bf3bd 661
bdb4c075 662 /* Renumber register, if aliase a0..a15 on Windowed ABI. */
6b50c0b0 663 if (gdbarch_tdep (gdbarch)->isa_use_windowed_registers
94a0e877 664 && (regnum >= gdbarch_tdep (gdbarch)->a0_base)
6b50c0b0 665 && (regnum <= gdbarch_tdep (gdbarch)->a0_base + 15))
ca3bf3bd 666 {
ff7a4c00 667 gdb_byte *buf = (gdb_byte *) alloca (MAX_REGISTER_SIZE);
ca3bf3bd
DJ
668 unsigned int wb;
669
304fe255 670 regcache_raw_read (regcache,
6b50c0b0 671 gdbarch_tdep (gdbarch)->wb_regnum, buf);
ee967b5f 672 regnum = arreg_number (gdbarch, regnum,
e17a4113 673 extract_unsigned_integer (buf, 4, byte_order));
ca3bf3bd
DJ
674 }
675
676 /* We can always write 'core' registers.
677 Note: We might have converted Ax->ARy. */
6b50c0b0 678 if (regnum >= 0 && regnum < gdbarch_num_regs (gdbarch))
ca3bf3bd
DJ
679 regcache_raw_write (regcache, regnum, buffer);
680
94a0e877
MG
681 /* We have to find out how to deal with priveleged registers.
682 Let's treat them as pseudo-registers, but we cannot read/write them. */
683
684 else if (regnum < gdbarch_tdep (gdbarch)->a0_base)
685 {
686 return;
687 }
ca3bf3bd 688 /* Pseudo registers. */
f57d151a 689 else if (regnum >= 0
6b50c0b0
UW
690 && regnum < gdbarch_num_regs (gdbarch)
691 + gdbarch_num_pseudo_regs (gdbarch))
ca3bf3bd 692 {
6b50c0b0 693 xtensa_register_t *reg = &gdbarch_tdep (gdbarch)->regmap[regnum];
ca3bf3bd 694 xtensa_register_type_t type = reg->type;
6b50c0b0 695 int flags = gdbarch_tdep (gdbarch)->target_flags;
ca3bf3bd 696
bdb4c075
MG
697 /* On most targets, we cannot write registers
698 of type "Unknown" or "Unmapped". */
ca3bf3bd
DJ
699 if (type == xtRegisterTypeUnmapped || type == xtRegisterTypeUnknown)
700 {
701 if ((flags & xtTargetFlagsNonVisibleRegs) == 0)
702 {
703 warning (_("cannot write register %s"),
d93859e2 704 xtensa_register_name (gdbarch, regnum));
ca3bf3bd
DJ
705 return;
706 }
707 }
708
709 /* Some targets cannot read TIE register files. */
710 else if (type == xtRegisterTypeTieRegfile)
711 {
712 /* Use 'store' to get register? */
713 if (flags & xtTargetFlagsUseFetchStore)
714 {
715 warning (_("cannot write register"));
716 return;
717 }
718
719 /* On some targets (esp. simulators), we can always write
720 the register. */
ca3bf3bd
DJ
721 else if ((flags & xtTargetFlagsNonVisibleRegs) == 0)
722 {
723 warning (_("cannot write register"));
724 return;
725 }
726 }
727
728 /* We can always write mapped registers. */
729 else if (type == xtRegisterTypeMapped || type == xtRegisterTypeTieState)
730 {
9c9acae0 731 xtensa_register_write_masked (regcache, reg, buffer);
ca3bf3bd
DJ
732 return;
733 }
734
735 /* Assume that we can write the register. */
736 regcache_raw_write (regcache, regnum, buffer);
737 }
ca3bf3bd
DJ
738 else
739 internal_error (__FILE__, __LINE__,
740 _("invalid register number %d"), regnum);
741}
742
ca3bf3bd
DJ
743static struct reggroup *xtensa_ar_reggroup;
744static struct reggroup *xtensa_user_reggroup;
745static struct reggroup *xtensa_vectra_reggroup;
7b871568 746static struct reggroup *xtensa_cp[XTENSA_MAX_COPROCESSOR];
ca3bf3bd
DJ
747
748static void
749xtensa_init_reggroups (void)
750{
98689b25
MG
751 int i;
752 char cpname[] = "cp0";
753
ca3bf3bd
DJ
754 xtensa_ar_reggroup = reggroup_new ("ar", USER_REGGROUP);
755 xtensa_user_reggroup = reggroup_new ("user", USER_REGGROUP);
756 xtensa_vectra_reggroup = reggroup_new ("vectra", USER_REGGROUP);
ca3bf3bd 757
98689b25
MG
758 for (i = 0; i < XTENSA_MAX_COPROCESSOR; i++)
759 {
b801de47 760 cpname[2] = '0' + i;
98689b25
MG
761 xtensa_cp[i] = reggroup_new (cpname, USER_REGGROUP);
762 }
7b871568 763}
ca3bf3bd
DJ
764
765static void
766xtensa_add_reggroups (struct gdbarch *gdbarch)
767{
7b871568
MG
768 int i;
769
770 /* Predefined groups. */
ca3bf3bd
DJ
771 reggroup_add (gdbarch, all_reggroup);
772 reggroup_add (gdbarch, save_reggroup);
773 reggroup_add (gdbarch, restore_reggroup);
774 reggroup_add (gdbarch, system_reggroup);
7b871568
MG
775 reggroup_add (gdbarch, vector_reggroup);
776 reggroup_add (gdbarch, general_reggroup);
777 reggroup_add (gdbarch, float_reggroup);
778
779 /* Xtensa-specific groups. */
780 reggroup_add (gdbarch, xtensa_ar_reggroup);
781 reggroup_add (gdbarch, xtensa_user_reggroup);
782 reggroup_add (gdbarch, xtensa_vectra_reggroup);
ca3bf3bd 783
7b871568
MG
784 for (i = 0; i < XTENSA_MAX_COPROCESSOR; i++)
785 reggroup_add (gdbarch, xtensa_cp[i]);
ca3bf3bd
DJ
786}
787
7b871568
MG
788static int
789xtensa_coprocessor_register_group (struct reggroup *group)
790{
791 int i;
792
793 for (i = 0; i < XTENSA_MAX_COPROCESSOR; i++)
794 if (group == xtensa_cp[i])
795 return i;
796
797 return -1;
798}
ca3bf3bd
DJ
799
800#define SAVE_REST_FLAGS (XTENSA_REGISTER_FLAGS_READABLE \
801 | XTENSA_REGISTER_FLAGS_WRITABLE \
802 | XTENSA_REGISTER_FLAGS_VOLATILE)
803
804#define SAVE_REST_VALID (XTENSA_REGISTER_FLAGS_READABLE \
805 | XTENSA_REGISTER_FLAGS_WRITABLE)
806
807static int
808xtensa_register_reggroup_p (struct gdbarch *gdbarch,
809 int regnum,
810 struct reggroup *group)
811{
6b50c0b0 812 xtensa_register_t* reg = &gdbarch_tdep (gdbarch)->regmap[regnum];
ca3bf3bd
DJ
813 xtensa_register_type_t type = reg->type;
814 xtensa_register_group_t rg = reg->group;
7b871568 815 int cp_number;
ca3bf3bd 816
57041825
MG
817 if (group == save_reggroup)
818 /* Every single register should be included into the list of registers
819 to be watched for changes while using -data-list-changed-registers. */
820 return 1;
821
ca3bf3bd
DJ
822 /* First, skip registers that are not visible to this target
823 (unknown and unmapped registers when not using ISS). */
824
825 if (type == xtRegisterTypeUnmapped || type == xtRegisterTypeUnknown)
826 return 0;
827 if (group == all_reggroup)
828 return 1;
829 if (group == xtensa_ar_reggroup)
830 return rg & xtRegisterGroupAddrReg;
831 if (group == xtensa_user_reggroup)
832 return rg & xtRegisterGroupUser;
833 if (group == float_reggroup)
834 return rg & xtRegisterGroupFloat;
835 if (group == general_reggroup)
836 return rg & xtRegisterGroupGeneral;
ca3bf3bd
DJ
837 if (group == system_reggroup)
838 return rg & xtRegisterGroupState;
839 if (group == vector_reggroup || group == xtensa_vectra_reggroup)
840 return rg & xtRegisterGroupVectra;
57041825 841 if (group == restore_reggroup)
6b50c0b0 842 return (regnum < gdbarch_num_regs (gdbarch)
ca3bf3bd 843 && (reg->flags & SAVE_REST_FLAGS) == SAVE_REST_VALID);
1448a0a2
PM
844 cp_number = xtensa_coprocessor_register_group (group);
845 if (cp_number >= 0)
7b871568 846 return rg & (xtRegisterGroupCP0 << cp_number);
ca3bf3bd
DJ
847 else
848 return 1;
849}
850
851
ca3bf3bd
DJ
852/* Supply register REGNUM from the buffer specified by GREGS and LEN
853 in the general-purpose register set REGSET to register cache
bdb4c075 854 REGCACHE. If REGNUM is -1 do this for all registers in REGSET. */
ca3bf3bd
DJ
855
856static void
857xtensa_supply_gregset (const struct regset *regset,
858 struct regcache *rc,
859 int regnum,
860 const void *gregs,
861 size_t len)
862{
863 const xtensa_elf_gregset_t *regs = gregs;
6b50c0b0 864 struct gdbarch *gdbarch = get_regcache_arch (rc);
ca3bf3bd
DJ
865 int i;
866
cce7e648 867 DEBUGTRACE ("xtensa_supply_gregset (..., regnum==%d, ...)\n", regnum);
ca3bf3bd 868
6b50c0b0
UW
869 if (regnum == gdbarch_pc_regnum (gdbarch) || regnum == -1)
870 regcache_raw_supply (rc, gdbarch_pc_regnum (gdbarch), (char *) &regs->pc);
871 if (regnum == gdbarch_ps_regnum (gdbarch) || regnum == -1)
872 regcache_raw_supply (rc, gdbarch_ps_regnum (gdbarch), (char *) &regs->ps);
873 if (regnum == gdbarch_tdep (gdbarch)->wb_regnum || regnum == -1)
874 regcache_raw_supply (rc, gdbarch_tdep (gdbarch)->wb_regnum,
304fe255 875 (char *) &regs->windowbase);
6b50c0b0
UW
876 if (regnum == gdbarch_tdep (gdbarch)->ws_regnum || regnum == -1)
877 regcache_raw_supply (rc, gdbarch_tdep (gdbarch)->ws_regnum,
304fe255 878 (char *) &regs->windowstart);
6b50c0b0
UW
879 if (regnum == gdbarch_tdep (gdbarch)->lbeg_regnum || regnum == -1)
880 regcache_raw_supply (rc, gdbarch_tdep (gdbarch)->lbeg_regnum,
304fe255 881 (char *) &regs->lbeg);
6b50c0b0
UW
882 if (regnum == gdbarch_tdep (gdbarch)->lend_regnum || regnum == -1)
883 regcache_raw_supply (rc, gdbarch_tdep (gdbarch)->lend_regnum,
304fe255 884 (char *) &regs->lend);
6b50c0b0
UW
885 if (regnum == gdbarch_tdep (gdbarch)->lcount_regnum || regnum == -1)
886 regcache_raw_supply (rc, gdbarch_tdep (gdbarch)->lcount_regnum,
304fe255 887 (char *) &regs->lcount);
6b50c0b0
UW
888 if (regnum == gdbarch_tdep (gdbarch)->sar_regnum || regnum == -1)
889 regcache_raw_supply (rc, gdbarch_tdep (gdbarch)->sar_regnum,
304fe255 890 (char *) &regs->sar);
6b50c0b0
UW
891 if (regnum >=gdbarch_tdep (gdbarch)->ar_base
892 && regnum < gdbarch_tdep (gdbarch)->ar_base
893 + gdbarch_tdep (gdbarch)->num_aregs)
304fe255
UW
894 regcache_raw_supply (rc, regnum,
895 (char *) &regs->ar[regnum - gdbarch_tdep
6b50c0b0 896 (gdbarch)->ar_base]);
ca3bf3bd
DJ
897 else if (regnum == -1)
898 {
6b50c0b0
UW
899 for (i = 0; i < gdbarch_tdep (gdbarch)->num_aregs; ++i)
900 regcache_raw_supply (rc, gdbarch_tdep (gdbarch)->ar_base + i,
304fe255 901 (char *) &regs->ar[i]);
ca3bf3bd
DJ
902 }
903}
904
905
906/* Xtensa register set. */
907
908static struct regset
909xtensa_gregset =
910{
911 NULL,
912 xtensa_supply_gregset
913};
914
915
bdb4c075
MG
916/* Return the appropriate register set for the core
917 section identified by SECT_NAME and SECT_SIZE. */
ca3bf3bd
DJ
918
919static const struct regset *
920xtensa_regset_from_core_section (struct gdbarch *core_arch,
921 const char *sect_name,
922 size_t sect_size)
923{
924 DEBUGTRACE ("xtensa_regset_from_core_section "
cce7e648 925 "(..., sect_name==\"%s\", sect_size==%x)\n",
ec20a626 926 sect_name, (unsigned int) sect_size);
ca3bf3bd
DJ
927
928 if (strcmp (sect_name, ".reg") == 0
929 && sect_size >= sizeof(xtensa_elf_gregset_t))
930 return &xtensa_gregset;
931
932 return NULL;
933}
934
935
bdb4c075 936/* Handling frames. */
ca3bf3bd 937
bdb4c075
MG
938/* Number of registers to save in case of Windowed ABI. */
939#define XTENSA_NUM_SAVED_AREGS 12
ca3bf3bd 940
bdb4c075
MG
941/* Frame cache part for Windowed ABI. */
942typedef struct xtensa_windowed_frame_cache
ca3bf3bd 943{
ee967b5f
MG
944 int wb; /* WINDOWBASE of the previous frame. */
945 int callsize; /* Call size of this frame. */
08b9c608
MG
946 int ws; /* WINDOWSTART of the previous frame. It keeps track of
947 life windows only. If there is no bit set for the
948 window, that means it had been already spilled
949 because of window overflow. */
950
951 /* Addresses of spilled A-registers.
952 AREGS[i] == -1, if corresponding AR is alive. */
ca3bf3bd 953 CORE_ADDR aregs[XTENSA_NUM_SAVED_AREGS];
bdb4c075
MG
954} xtensa_windowed_frame_cache_t;
955
956/* Call0 ABI Definitions. */
957
581e13c1
MS
958#define C0_MAXOPDS 3 /* Maximum number of operands for prologue
959 analysis. */
bdb4c075
MG
960#define C0_NREGS 16 /* Number of A-registers to track. */
961#define C0_CLESV 12 /* Callee-saved registers are here and up. */
962#define C0_SP 1 /* Register used as SP. */
963#define C0_FP 15 /* Register used as FP. */
964#define C0_RA 0 /* Register used as return address. */
965#define C0_ARGS 2 /* Register used as first arg/retval. */
966#define C0_NARGS 6 /* Number of A-regs for args/retvals. */
967
968/* Each element of xtensa_call0_frame_cache.c0_rt[] describes for each
969 A-register where the current content of the reg came from (in terms
970 of an original reg and a constant). Negative values of c0_rt[n].fp_reg
971 mean that the orignal content of the register was saved to the stack.
972 c0_rt[n].fr.ofs is NOT the offset from the frame base because we don't
973 know where SP will end up until the entire prologue has been analyzed. */
974
975#define C0_CONST -1 /* fr_reg value if register contains a constant. */
976#define C0_INEXP -2 /* fr_reg value if inexpressible as reg + offset. */
977#define C0_NOSTK -1 /* to_stk value if register has not been stored. */
978
979extern xtensa_isa xtensa_default_isa;
980
981typedef struct xtensa_c0reg
982{
dbab50de
MG
983 int fr_reg; /* original register from which register content
984 is derived, or C0_CONST, or C0_INEXP. */
985 int fr_ofs; /* constant offset from reg, or immediate value. */
986 int to_stk; /* offset from original SP to register (4-byte aligned),
987 or C0_NOSTK if register has not been saved. */
bdb4c075
MG
988} xtensa_c0reg_t;
989
bdb4c075
MG
990/* Frame cache part for Call0 ABI. */
991typedef struct xtensa_call0_frame_cache
992{
dbab50de
MG
993 int c0_frmsz; /* Stack frame size. */
994 int c0_hasfp; /* Current frame uses frame pointer. */
995 int fp_regnum; /* A-register used as FP. */
996 int c0_fp; /* Actual value of frame pointer. */
997 int c0_fpalign; /* Dinamic adjustment for the stack
998 pointer. It's an AND mask. Zero,
999 if alignment was not adjusted. */
1000 int c0_old_sp; /* In case of dynamic adjustment, it is
1001 a register holding unaligned sp.
1002 C0_INEXP, when undefined. */
1003 int c0_sp_ofs; /* If "c0_old_sp" was spilled it's a
1004 stack offset. C0_NOSTK otherwise. */
1005
1006 xtensa_c0reg_t c0_rt[C0_NREGS]; /* Register tracking information. */
bdb4c075
MG
1007} xtensa_call0_frame_cache_t;
1008
1009typedef struct xtensa_frame_cache
1010{
ee967b5f 1011 CORE_ADDR base; /* Stack pointer of this frame. */
08b9c608
MG
1012 CORE_ADDR pc; /* PC of this frame at the function entry point. */
1013 CORE_ADDR ra; /* The raw return address of this frame. */
1014 CORE_ADDR ps; /* The PS register of the previous (older) frame. */
1015 CORE_ADDR prev_sp; /* Stack Pointer of the previous (older) frame. */
bdb4c075
MG
1016 int call0; /* It's a call0 framework (else windowed). */
1017 union
1018 {
1019 xtensa_windowed_frame_cache_t wd; /* call0 == false. */
1020 xtensa_call0_frame_cache_t c0; /* call0 == true. */
1021 };
ca3bf3bd
DJ
1022} xtensa_frame_cache_t;
1023
1024
1025static struct xtensa_frame_cache *
bdb4c075 1026xtensa_alloc_frame_cache (int windowed)
ca3bf3bd
DJ
1027{
1028 xtensa_frame_cache_t *cache;
1029 int i;
1030
1031 DEBUGTRACE ("xtensa_alloc_frame_cache ()\n");
1032
1033 cache = FRAME_OBSTACK_ZALLOC (xtensa_frame_cache_t);
1034
1035 cache->base = 0;
1036 cache->pc = 0;
1037 cache->ra = 0;
ca3bf3bd 1038 cache->ps = 0;
ca3bf3bd 1039 cache->prev_sp = 0;
bdb4c075
MG
1040 cache->call0 = !windowed;
1041 if (cache->call0)
1042 {
1043 cache->c0.c0_frmsz = -1;
1044 cache->c0.c0_hasfp = 0;
1045 cache->c0.fp_regnum = -1;
1046 cache->c0.c0_fp = -1;
dbab50de
MG
1047 cache->c0.c0_fpalign = 0;
1048 cache->c0.c0_old_sp = C0_INEXP;
1049 cache->c0.c0_sp_ofs = C0_NOSTK;
ca3bf3bd 1050
bdb4c075
MG
1051 for (i = 0; i < C0_NREGS; i++)
1052 {
1053 cache->c0.c0_rt[i].fr_reg = i;
1054 cache->c0.c0_rt[i].fr_ofs = 0;
1055 cache->c0.c0_rt[i].to_stk = C0_NOSTK;
1056 }
1057 }
1058 else
1059 {
1060 cache->wd.wb = 0;
ee967b5f 1061 cache->wd.ws = 0;
bdb4c075 1062 cache->wd.callsize = -1;
ca3bf3bd 1063
bdb4c075
MG
1064 for (i = 0; i < XTENSA_NUM_SAVED_AREGS; i++)
1065 cache->wd.aregs[i] = -1;
1066 }
ca3bf3bd
DJ
1067 return cache;
1068}
1069
1070
1071static CORE_ADDR
1072xtensa_frame_align (struct gdbarch *gdbarch, CORE_ADDR address)
1073{
1074 return address & ~15;
1075}
1076
1077
1078static CORE_ADDR
1079xtensa_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
1080{
ff7a4c00 1081 gdb_byte buf[8];
0dfff4cb 1082 CORE_ADDR pc;
ca3bf3bd 1083
a74ce742
PM
1084 DEBUGTRACE ("xtensa_unwind_pc (next_frame = %s)\n",
1085 host_address_to_string (next_frame));
ca3bf3bd 1086
6b50c0b0 1087 frame_unwind_register (next_frame, gdbarch_pc_regnum (gdbarch), buf);
0dfff4cb 1088 pc = extract_typed_address (buf, builtin_type (gdbarch)->builtin_func_ptr);
ca3bf3bd 1089
0dfff4cb 1090 DEBUGINFO ("[xtensa_unwind_pc] pc = 0x%08x\n", (unsigned int) pc);
ca3bf3bd 1091
0dfff4cb 1092 return pc;
ca3bf3bd
DJ
1093}
1094
1095
1096static struct frame_id
5142f611 1097xtensa_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
ca3bf3bd
DJ
1098{
1099 CORE_ADDR pc, fp;
ca3bf3bd 1100
5142f611 1101 /* THIS-FRAME is a dummy frame. Return a frame ID of that frame. */
ca3bf3bd 1102
5142f611
MG
1103 pc = get_frame_pc (this_frame);
1104 fp = get_frame_register_unsigned
1105 (this_frame, gdbarch_tdep (gdbarch)->a0_base + 1);
ca3bf3bd
DJ
1106
1107 /* Make dummy frame ID unique by adding a constant. */
bdb4c075 1108 return frame_id_build (fp + SP_ALIGNMENT, pc);
ca3bf3bd
DJ
1109}
1110
08b9c608
MG
1111/* Returns true, if instruction to execute next is unique to Xtensa Window
1112 Interrupt Handlers. It can only be one of L32E, S32E, RFWO, or RFWU. */
1113
1114static int
1115xtensa_window_interrupt_insn (struct gdbarch *gdbarch, CORE_ADDR pc)
1116{
1117 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1118 unsigned int insn = read_memory_integer (pc, 4, byte_order);
1119 unsigned int code;
1120
1121 if (byte_order == BFD_ENDIAN_BIG)
1122 {
1123 /* Check, if this is L32E or S32E. */
1124 code = insn & 0xf000ff00;
1125 if ((code == 0x00009000) || (code == 0x00009400))
1126 return 1;
1127 /* Check, if this is RFWU or RFWO. */
1128 code = insn & 0xffffff00;
1129 return ((code == 0x00430000) || (code == 0x00530000));
1130 }
1131 else
1132 {
1133 /* Check, if this is L32E or S32E. */
1134 code = insn & 0x00ff000f;
1135 if ((code == 0x090000) || (code == 0x490000))
1136 return 1;
1137 /* Check, if this is RFWU or RFWO. */
1138 code = insn & 0x00ffffff;
1139 return ((code == 0x00003400) || (code == 0x00003500));
1140 }
1141}
1142
ee967b5f
MG
1143/* Returns the best guess about which register is a frame pointer
1144 for the function containing CURRENT_PC. */
1145
d4709618
MG
1146#define XTENSA_ISA_BSZ 32 /* Instruction buffer size. */
1147#define XTENSA_ISA_BADPC ((CORE_ADDR)0) /* Bad PC value. */
ee967b5f
MG
1148
1149static unsigned int
1150xtensa_scan_prologue (struct gdbarch *gdbarch, CORE_ADDR current_pc)
1151{
1152#define RETURN_FP goto done
1153
1154 unsigned int fp_regnum = gdbarch_tdep (gdbarch)->a0_base + 1;
1155 CORE_ADDR start_addr;
1156 xtensa_isa isa;
1157 xtensa_insnbuf ins, slot;
1158 char ibuf[XTENSA_ISA_BSZ];
1159 CORE_ADDR ia, bt, ba;
1160 xtensa_format ifmt;
1161 int ilen, islots, is;
1162 xtensa_opcode opc;
1163 const char *opcname;
1164
1165 find_pc_partial_function (current_pc, NULL, &start_addr, NULL);
1166 if (start_addr == 0)
1167 return fp_regnum;
1168
1169 if (!xtensa_default_isa)
1170 xtensa_default_isa = xtensa_isa_init (0, 0);
1171 isa = xtensa_default_isa;
1172 gdb_assert (XTENSA_ISA_BSZ >= xtensa_isa_maxlength (isa));
1173 ins = xtensa_insnbuf_alloc (isa);
1174 slot = xtensa_insnbuf_alloc (isa);
1175 ba = 0;
1176
1177 for (ia = start_addr, bt = ia; ia < current_pc ; ia += ilen)
1178 {
1179 if (ia + xtensa_isa_maxlength (isa) > bt)
1180 {
1181 ba = ia;
1182 bt = (ba + XTENSA_ISA_BSZ) < current_pc
1183 ? ba + XTENSA_ISA_BSZ : current_pc;
d4709618
MG
1184 if (target_read_memory (ba, ibuf, bt - ba) != 0)
1185 RETURN_FP;
ee967b5f
MG
1186 }
1187
1188 xtensa_insnbuf_from_chars (isa, ins, &ibuf[ia-ba], 0);
1189 ifmt = xtensa_format_decode (isa, ins);
1190 if (ifmt == XTENSA_UNDEFINED)
1191 RETURN_FP;
1192 ilen = xtensa_format_length (isa, ifmt);
1193 if (ilen == XTENSA_UNDEFINED)
1194 RETURN_FP;
1195 islots = xtensa_format_num_slots (isa, ifmt);
1196 if (islots == XTENSA_UNDEFINED)
1197 RETURN_FP;
1198
1199 for (is = 0; is < islots; ++is)
1200 {
1201 if (xtensa_format_get_slot (isa, ifmt, is, ins, slot))
1202 RETURN_FP;
1203
1204 opc = xtensa_opcode_decode (isa, ifmt, is, slot);
1205 if (opc == XTENSA_UNDEFINED)
1206 RETURN_FP;
1207
1208 opcname = xtensa_opcode_name (isa, opc);
1209
1210 if (strcasecmp (opcname, "mov.n") == 0
1211 || strcasecmp (opcname, "or") == 0)
1212 {
1213 unsigned int register_operand;
1214
1215 /* Possible candidate for setting frame pointer
581e13c1 1216 from A1. This is what we are looking for. */
ee967b5f
MG
1217
1218 if (xtensa_operand_get_field (isa, opc, 1, ifmt,
1219 is, slot, &register_operand) != 0)
1220 RETURN_FP;
1221 if (xtensa_operand_decode (isa, opc, 1, &register_operand) != 0)
1222 RETURN_FP;
1223 if (register_operand == 1) /* Mov{.n} FP A1. */
1224 {
1225 if (xtensa_operand_get_field (isa, opc, 0, ifmt, is, slot,
1226 &register_operand) != 0)
1227 RETURN_FP;
1228 if (xtensa_operand_decode (isa, opc, 0,
1229 &register_operand) != 0)
1230 RETURN_FP;
1231
581e13c1
MS
1232 fp_regnum
1233 = gdbarch_tdep (gdbarch)->a0_base + register_operand;
ee967b5f
MG
1234 RETURN_FP;
1235 }
1236 }
1237
1238 if (
1239 /* We have problems decoding the memory. */
1240 opcname == NULL
1241 || strcasecmp (opcname, "ill") == 0
1242 || strcasecmp (opcname, "ill.n") == 0
1243 /* Hit planted breakpoint. */
1244 || strcasecmp (opcname, "break") == 0
1245 || strcasecmp (opcname, "break.n") == 0
1246 /* Flow control instructions finish prologue. */
1247 || xtensa_opcode_is_branch (isa, opc) > 0
1248 || xtensa_opcode_is_jump (isa, opc) > 0
1249 || xtensa_opcode_is_loop (isa, opc) > 0
1250 || xtensa_opcode_is_call (isa, opc) > 0
1251 || strcasecmp (opcname, "simcall") == 0
1252 || strcasecmp (opcname, "syscall") == 0)
1253 /* Can not continue analysis. */
1254 RETURN_FP;
1255 }
1256 }
1257done:
1258 xtensa_insnbuf_free(isa, slot);
1259 xtensa_insnbuf_free(isa, ins);
1260 return fp_regnum;
1261}
1262
bdb4c075
MG
1263/* The key values to identify the frame using "cache" are
1264
ee967b5f 1265 cache->base = SP (or best guess about FP) of this frame;
bdb4c075 1266 cache->pc = entry-PC (entry point of the frame function);
581e13c1 1267 cache->prev_sp = SP of the previous frame. */
bdb4c075
MG
1268
1269static void
5142f611 1270call0_frame_cache (struct frame_info *this_frame,
dbab50de 1271 xtensa_frame_cache_t *cache, CORE_ADDR pc);
ca3bf3bd 1272
08b9c608
MG
1273static void
1274xtensa_window_interrupt_frame_cache (struct frame_info *this_frame,
1275 xtensa_frame_cache_t *cache,
1276 CORE_ADDR pc);
1277
ca3bf3bd 1278static struct xtensa_frame_cache *
5142f611 1279xtensa_frame_cache (struct frame_info *this_frame, void **this_cache)
ca3bf3bd
DJ
1280{
1281 xtensa_frame_cache_t *cache;
ca3bf3bd 1282 CORE_ADDR ra, wb, ws, pc, sp, ps;
5142f611 1283 struct gdbarch *gdbarch = get_frame_arch (this_frame);
e17a4113 1284 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
ee967b5f 1285 unsigned int fp_regnum;
98689b25 1286 int windowed, ps_regnum;
ca3bf3bd 1287
ca3bf3bd
DJ
1288 if (*this_cache)
1289 return *this_cache;
1290
98689b25
MG
1291 pc = get_frame_register_unsigned (this_frame, gdbarch_pc_regnum (gdbarch));
1292 ps_regnum = gdbarch_ps_regnum (gdbarch);
68d6df83
MG
1293 ps = (ps_regnum >= 0
1294 ? get_frame_register_unsigned (this_frame, ps_regnum) : TX_PS);
98689b25
MG
1295
1296 windowed = windowing_enabled (gdbarch, ps);
bdb4c075 1297
ca3bf3bd 1298 /* Get pristine xtensa-frame. */
bdb4c075 1299 cache = xtensa_alloc_frame_cache (windowed);
ca3bf3bd
DJ
1300 *this_cache = cache;
1301
bdb4c075 1302 if (windowed)
ca3bf3bd 1303 {
98689b25
MG
1304 char op1;
1305
bdb4c075 1306 /* Get WINDOWBASE, WINDOWSTART, and PS registers. */
5142f611
MG
1307 wb = get_frame_register_unsigned (this_frame,
1308 gdbarch_tdep (gdbarch)->wb_regnum);
1309 ws = get_frame_register_unsigned (this_frame,
1310 gdbarch_tdep (gdbarch)->ws_regnum);
ca3bf3bd 1311
e17a4113 1312 op1 = read_memory_integer (pc, 1, byte_order);
91d8eb23 1313 if (XTENSA_IS_ENTRY (gdbarch, op1))
ca3bf3bd 1314 {
bdb4c075 1315 int callinc = CALLINC (ps);
5142f611
MG
1316 ra = get_frame_register_unsigned
1317 (this_frame, gdbarch_tdep (gdbarch)->a0_base + callinc * 4);
bdb4c075
MG
1318
1319 /* ENTRY hasn't been executed yet, therefore callsize is still 0. */
1320 cache->wd.callsize = 0;
1321 cache->wd.wb = wb;
1322 cache->wd.ws = ws;
5142f611
MG
1323 cache->prev_sp = get_frame_register_unsigned
1324 (this_frame, gdbarch_tdep (gdbarch)->a0_base + 1);
ee967b5f
MG
1325
1326 /* This only can be the outermost frame since we are
1327 just about to execute ENTRY. SP hasn't been set yet.
1328 We can assume any frame size, because it does not
1329 matter, and, let's fake frame base in cache. */
98689b25 1330 cache->base = cache->prev_sp - 16;
ee967b5f
MG
1331
1332 cache->pc = pc;
1333 cache->ra = (cache->pc & 0xc0000000) | (ra & 0x3fffffff);
1334 cache->ps = (ps & ~PS_CALLINC_MASK)
1335 | ((WINSIZE(ra)/4) << PS_CALLINC_SHIFT);
1336
1337 return cache;
bdb4c075
MG
1338 }
1339 else
1340 {
ee967b5f 1341 fp_regnum = xtensa_scan_prologue (gdbarch, pc);
5142f611
MG
1342 ra = get_frame_register_unsigned (this_frame,
1343 gdbarch_tdep (gdbarch)->a0_base);
bdb4c075 1344 cache->wd.callsize = WINSIZE (ra);
304fe255 1345 cache->wd.wb = (wb - cache->wd.callsize / 4)
6b50c0b0 1346 & (gdbarch_tdep (gdbarch)->num_aregs / 4 - 1);
bdb4c075 1347 cache->wd.ws = ws & ~(1 << wb);
ca3bf3bd 1348
5142f611 1349 cache->pc = get_frame_func (this_frame);
f6402f18 1350 cache->ra = (pc & 0xc0000000) | (ra & 0x3fffffff);
ee967b5f
MG
1351 cache->ps = (ps & ~PS_CALLINC_MASK)
1352 | ((WINSIZE(ra)/4) << PS_CALLINC_SHIFT);
1353 }
bdb4c075
MG
1354
1355 if (cache->wd.ws == 0)
ca3bf3bd 1356 {
bdb4c075 1357 int i;
ca3bf3bd 1358
bdb4c075 1359 /* Set A0...A3. */
5142f611
MG
1360 sp = get_frame_register_unsigned
1361 (this_frame, gdbarch_tdep (gdbarch)->a0_base + 1) - 16;
bdb4c075
MG
1362
1363 for (i = 0; i < 4; i++, sp += 4)
1364 {
1365 cache->wd.aregs[i] = sp;
1366 }
ca3bf3bd 1367
bdb4c075 1368 if (cache->wd.callsize > 4)
ca3bf3bd 1369 {
bdb4c075 1370 /* Set A4...A7/A11. */
ee967b5f
MG
1371 /* Get the SP of the frame previous to the previous one.
1372 To achieve this, we have to dereference SP twice. */
e17a4113
UW
1373 sp = (CORE_ADDR) read_memory_integer (sp - 12, 4, byte_order);
1374 sp = (CORE_ADDR) read_memory_integer (sp - 12, 4, byte_order);
bdb4c075
MG
1375 sp -= cache->wd.callsize * 4;
1376
ee967b5f 1377 for ( i = 4; i < cache->wd.callsize; i++, sp += 4)
bdb4c075
MG
1378 {
1379 cache->wd.aregs[i] = sp;
1380 }
ca3bf3bd
DJ
1381 }
1382 }
ca3bf3bd 1383
bdb4c075 1384 if ((cache->prev_sp == 0) && ( ra != 0 ))
08b9c608
MG
1385 /* If RA is equal to 0 this frame is an outermost frame. Leave
1386 cache->prev_sp unchanged marking the boundary of the frame stack. */
ca3bf3bd 1387 {
ee967b5f 1388 if ((cache->wd.ws & (1 << cache->wd.wb)) == 0)
bdb4c075
MG
1389 {
1390 /* Register window overflow already happened.
1391 We can read caller's SP from the proper spill loction. */
5142f611
MG
1392 sp = get_frame_register_unsigned
1393 (this_frame, gdbarch_tdep (gdbarch)->a0_base + 1);
e17a4113 1394 cache->prev_sp = read_memory_integer (sp - 12, 4, byte_order);
bdb4c075
MG
1395 }
1396 else
1397 {
1398 /* Read caller's frame SP directly from the previous window. */
ee967b5f 1399 int regnum = arreg_number
91d8eb23 1400 (gdbarch, gdbarch_tdep (gdbarch)->a0_base + 1,
304fe255 1401 cache->wd.wb);
ca3bf3bd 1402
08b9c608 1403 cache->prev_sp = xtensa_read_register (regnum);
bdb4c075 1404 }
ca3bf3bd
DJ
1405 }
1406 }
08b9c608
MG
1407 else if (xtensa_window_interrupt_insn (gdbarch, pc))
1408 {
1409 /* Execution stopped inside Xtensa Window Interrupt Handler. */
1410
1411 xtensa_window_interrupt_frame_cache (this_frame, cache, pc);
1412 /* Everything was set already, including cache->base. */
1413 return cache;
1414 }
bdb4c075
MG
1415 else /* Call0 framework. */
1416 {
dbab50de 1417 call0_frame_cache (this_frame, cache, pc);
ee967b5f 1418 fp_regnum = cache->c0.fp_regnum;
bdb4c075 1419 }
ca3bf3bd 1420
5142f611 1421 cache->base = get_frame_register_unsigned (this_frame, fp_regnum);
ca3bf3bd 1422
ca3bf3bd
DJ
1423 return cache;
1424}
1425
dbab50de
MG
1426static int xtensa_session_once_reported = 1;
1427
1428/* Report a problem with prologue analysis while doing backtracing.
1429 But, do it only once to avoid annoyng repeated messages. */
1430
4e6ca6d5
MG
1431static void
1432warning_once (void)
dbab50de
MG
1433{
1434 if (xtensa_session_once_reported == 0)
1435 warning (_("\
1436\nUnrecognised function prologue. Stack trace cannot be resolved. \
1437This message will not be repeated in this session.\n"));
1438
1439 xtensa_session_once_reported = 1;
1440}
1441
1442
ca3bf3bd 1443static void
5142f611 1444xtensa_frame_this_id (struct frame_info *this_frame,
ca3bf3bd
DJ
1445 void **this_cache,
1446 struct frame_id *this_id)
1447{
1448 struct xtensa_frame_cache *cache =
5142f611 1449 xtensa_frame_cache (this_frame, this_cache);
ca3bf3bd
DJ
1450
1451 if (cache->prev_sp == 0)
1452 return;
1453
5142f611 1454 (*this_id) = frame_id_build (cache->prev_sp, cache->pc);
bdb4c075 1455}
ca3bf3bd 1456
5142f611
MG
1457static struct value *
1458xtensa_frame_prev_register (struct frame_info *this_frame,
ca3bf3bd 1459 void **this_cache,
5142f611 1460 int regnum)
ca3bf3bd 1461{
5142f611
MG
1462 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1463 struct xtensa_frame_cache *cache;
1464 ULONGEST saved_reg = 0;
ca3bf3bd
DJ
1465 int done = 1;
1466
5142f611
MG
1467 if (*this_cache == NULL)
1468 *this_cache = xtensa_frame_cache (this_frame, this_cache);
1469 cache = *this_cache;
ca3bf3bd 1470
6b50c0b0 1471 if (regnum ==gdbarch_pc_regnum (gdbarch))
bdb4c075 1472 saved_reg = cache->ra;
6b50c0b0 1473 else if (regnum == gdbarch_tdep (gdbarch)->a0_base + 1)
bdb4c075
MG
1474 saved_reg = cache->prev_sp;
1475 else if (!cache->call0)
ca3bf3bd 1476 {
6b50c0b0 1477 if (regnum == gdbarch_tdep (gdbarch)->ws_regnum)
ee967b5f 1478 saved_reg = cache->wd.ws;
6b50c0b0 1479 else if (regnum == gdbarch_tdep (gdbarch)->wb_regnum)
bdb4c075 1480 saved_reg = cache->wd.wb;
6b50c0b0 1481 else if (regnum == gdbarch_ps_regnum (gdbarch))
bdb4c075 1482 saved_reg = cache->ps;
ca3bf3bd 1483 else
bdb4c075 1484 done = 0;
ca3bf3bd 1485 }
ca3bf3bd
DJ
1486 else
1487 done = 0;
1488
1489 if (done)
5142f611 1490 return frame_unwind_got_constant (this_frame, regnum, saved_reg);
ca3bf3bd 1491
bdb4c075 1492 if (!cache->call0) /* Windowed ABI. */
ca3bf3bd 1493 {
ee967b5f
MG
1494 /* Convert A-register numbers to AR-register numbers,
1495 if we deal with A-register. */
94a0e877 1496 if (regnum >= gdbarch_tdep (gdbarch)->a0_base
6b50c0b0 1497 && regnum <= gdbarch_tdep (gdbarch)->a0_base + 15)
ee967b5f 1498 regnum = arreg_number (gdbarch, regnum, cache->wd.wb);
ca3bf3bd 1499
ee967b5f 1500 /* Check, if we deal with AR-register saved on stack. */
6b50c0b0
UW
1501 if (regnum >= gdbarch_tdep (gdbarch)->ar_base
1502 && regnum <= (gdbarch_tdep (gdbarch)->ar_base
1503 + gdbarch_tdep (gdbarch)->num_aregs))
bdb4c075 1504 {
ee967b5f 1505 int areg = areg_number (gdbarch, regnum, cache->wd.wb);
ca3bf3bd 1506
bdb4c075
MG
1507 if (areg >= 0
1508 && areg < XTENSA_NUM_SAVED_AREGS
1509 && cache->wd.aregs[areg] != -1)
5142f611
MG
1510 return frame_unwind_got_memory (this_frame, regnum,
1511 cache->wd.aregs[areg]);
ca3bf3bd
DJ
1512 }
1513 }
bdb4c075
MG
1514 else /* Call0 ABI. */
1515 {
6b50c0b0
UW
1516 int reg = (regnum >= gdbarch_tdep (gdbarch)->ar_base
1517 && regnum <= (gdbarch_tdep (gdbarch)->ar_base
304fe255 1518 + C0_NREGS))
6b50c0b0 1519 ? regnum - gdbarch_tdep (gdbarch)->ar_base : regnum;
ca3bf3bd 1520
bdb4c075
MG
1521 if (reg < C0_NREGS)
1522 {
1523 CORE_ADDR spe;
1524 int stkofs;
1525
1526 /* If register was saved in the prologue, retrieve it. */
1527 stkofs = cache->c0.c0_rt[reg].to_stk;
1528 if (stkofs != C0_NOSTK)
1529 {
1530 /* Determine SP on entry based on FP. */
1531 spe = cache->c0.c0_fp
1532 - cache->c0.c0_rt[cache->c0.fp_regnum].fr_ofs;
5142f611 1533
581e13c1
MS
1534 return frame_unwind_got_memory (this_frame, regnum,
1535 spe + stkofs);
bdb4c075
MG
1536 }
1537 }
1538 }
1539
1540 /* All other registers have been either saved to
1541 the stack or are still alive in the processor. */
ca3bf3bd 1542
5142f611 1543 return frame_unwind_got_register (this_frame, regnum, regnum);
ca3bf3bd
DJ
1544}
1545
1546
1547static const struct frame_unwind
5142f611 1548xtensa_unwind =
ca3bf3bd
DJ
1549{
1550 NORMAL_FRAME,
8fbca658 1551 default_frame_unwind_stop_reason,
ca3bf3bd 1552 xtensa_frame_this_id,
5142f611
MG
1553 xtensa_frame_prev_register,
1554 NULL,
1555 default_frame_sniffer
ca3bf3bd
DJ
1556};
1557
ca3bf3bd 1558static CORE_ADDR
5142f611 1559xtensa_frame_base_address (struct frame_info *this_frame, void **this_cache)
ca3bf3bd
DJ
1560{
1561 struct xtensa_frame_cache *cache =
5142f611 1562 xtensa_frame_cache (this_frame, this_cache);
ca3bf3bd
DJ
1563
1564 return cache->base;
1565}
1566
1567static const struct frame_base
1568xtensa_frame_base =
1569{
5142f611 1570 &xtensa_unwind,
ca3bf3bd
DJ
1571 xtensa_frame_base_address,
1572 xtensa_frame_base_address,
1573 xtensa_frame_base_address
1574};
1575
1576
1577static void
1578xtensa_extract_return_value (struct type *type,
1579 struct regcache *regcache,
1580 void *dst)
1581{
6b50c0b0 1582 struct gdbarch *gdbarch = get_regcache_arch (regcache);
ca3bf3bd
DJ
1583 bfd_byte *valbuf = dst;
1584 int len = TYPE_LENGTH (type);
1585 ULONGEST pc, wb;
1586 int callsize, areg;
1587 int offset = 0;
1588
1589 DEBUGTRACE ("xtensa_extract_return_value (...)\n");
1590
1591 gdb_assert(len > 0);
1592
6b50c0b0 1593 if (gdbarch_tdep (gdbarch)->call_abi != CallAbiCall0Only)
bdb4c075
MG
1594 {
1595 /* First, we have to find the caller window in the register file. */
6b50c0b0 1596 regcache_raw_read_unsigned (regcache, gdbarch_pc_regnum (gdbarch), &pc);
91d8eb23 1597 callsize = extract_call_winsize (gdbarch, pc);
ca3bf3bd 1598
bdb4c075
MG
1599 /* On Xtensa, we can return up to 4 words (or 2 for call12). */
1600 if (len > (callsize > 8 ? 8 : 16))
1601 internal_error (__FILE__, __LINE__,
581e13c1
MS
1602 _("cannot extract return value of %d bytes long"),
1603 len);
ca3bf3bd 1604
bdb4c075
MG
1605 /* Get the register offset of the return
1606 register (A2) in the caller window. */
304fe255 1607 regcache_raw_read_unsigned
6b50c0b0 1608 (regcache, gdbarch_tdep (gdbarch)->wb_regnum, &wb);
ee967b5f 1609 areg = arreg_number (gdbarch,
91d8eb23 1610 gdbarch_tdep (gdbarch)->a0_base + 2 + callsize, wb);
bdb4c075
MG
1611 }
1612 else
1613 {
1614 /* No windowing hardware - Call0 ABI. */
94a0e877 1615 areg = gdbarch_tdep (gdbarch)->a0_base + C0_ARGS;
bdb4c075 1616 }
ca3bf3bd
DJ
1617
1618 DEBUGINFO ("[xtensa_extract_return_value] areg %d len %d\n", areg, len);
1619
6b50c0b0 1620 if (len < 4 && gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
ca3bf3bd
DJ
1621 offset = 4 - len;
1622
1623 for (; len > 0; len -= 4, areg++, valbuf += 4)
1624 {
1625 if (len < 4)
1626 regcache_raw_read_part (regcache, areg, offset, len, valbuf);
1627 else
1628 regcache_raw_read (regcache, areg, valbuf);
1629 }
1630}
1631
1632
1633static void
1634xtensa_store_return_value (struct type *type,
1635 struct regcache *regcache,
1636 const void *dst)
1637{
6b50c0b0 1638 struct gdbarch *gdbarch = get_regcache_arch (regcache);
ca3bf3bd
DJ
1639 const bfd_byte *valbuf = dst;
1640 unsigned int areg;
1641 ULONGEST pc, wb;
1642 int callsize;
1643 int len = TYPE_LENGTH (type);
1644 int offset = 0;
1645
1646 DEBUGTRACE ("xtensa_store_return_value (...)\n");
1647
6b50c0b0 1648 if (gdbarch_tdep (gdbarch)->call_abi != CallAbiCall0Only)
bdb4c075 1649 {
6b50c0b0
UW
1650 regcache_raw_read_unsigned
1651 (regcache, gdbarch_tdep (gdbarch)->wb_regnum, &wb);
1652 regcache_raw_read_unsigned (regcache, gdbarch_pc_regnum (gdbarch), &pc);
91d8eb23 1653 callsize = extract_call_winsize (gdbarch, pc);
ca3bf3bd 1654
bdb4c075
MG
1655 if (len > (callsize > 8 ? 8 : 16))
1656 internal_error (__FILE__, __LINE__,
1657 _("unimplemented for this length: %d"),
1658 TYPE_LENGTH (type));
ee967b5f
MG
1659 areg = arreg_number (gdbarch,
1660 gdbarch_tdep (gdbarch)->a0_base + 2 + callsize, wb);
ca3bf3bd 1661
bdb4c075 1662 DEBUGTRACE ("[xtensa_store_return_value] callsize %d wb %d\n",
ca3bf3bd 1663 callsize, (int) wb);
bdb4c075
MG
1664 }
1665 else
1666 {
94a0e877 1667 areg = gdbarch_tdep (gdbarch)->a0_base + C0_ARGS;
bdb4c075 1668 }
ca3bf3bd 1669
6b50c0b0 1670 if (len < 4 && gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
ca3bf3bd
DJ
1671 offset = 4 - len;
1672
ca3bf3bd
DJ
1673 for (; len > 0; len -= 4, areg++, valbuf += 4)
1674 {
1675 if (len < 4)
1676 regcache_raw_write_part (regcache, areg, offset, len, valbuf);
1677 else
1678 regcache_raw_write (regcache, areg, valbuf);
1679 }
1680}
1681
1682
bdb4c075 1683static enum return_value_convention
ca3bf3bd 1684xtensa_return_value (struct gdbarch *gdbarch,
c055b101 1685 struct type *func_type,
ca3bf3bd
DJ
1686 struct type *valtype,
1687 struct regcache *regcache,
1688 gdb_byte *readbuf,
1689 const gdb_byte *writebuf)
1690{
bdb4c075 1691 /* Structures up to 16 bytes are returned in registers. */
ca3bf3bd
DJ
1692
1693 int struct_return = ((TYPE_CODE (valtype) == TYPE_CODE_STRUCT
1694 || TYPE_CODE (valtype) == TYPE_CODE_UNION
1695 || TYPE_CODE (valtype) == TYPE_CODE_ARRAY)
1696 && TYPE_LENGTH (valtype) > 16);
1697
1698 if (struct_return)
1699 return RETURN_VALUE_STRUCT_CONVENTION;
1700
1701 DEBUGTRACE ("xtensa_return_value(...)\n");
1702
1703 if (writebuf != NULL)
1704 {
1705 xtensa_store_return_value (valtype, regcache, writebuf);
1706 }
1707
1708 if (readbuf != NULL)
1709 {
1710 gdb_assert (!struct_return);
1711 xtensa_extract_return_value (valtype, regcache, readbuf);
1712 }
1713 return RETURN_VALUE_REGISTER_CONVENTION;
1714}
1715
1716
1717/* DUMMY FRAME */
1718
1719static CORE_ADDR
1720xtensa_push_dummy_call (struct gdbarch *gdbarch,
1721 struct value *function,
1722 struct regcache *regcache,
1723 CORE_ADDR bp_addr,
1724 int nargs,
1725 struct value **args,
1726 CORE_ADDR sp,
1727 int struct_return,
1728 CORE_ADDR struct_addr)
1729{
e17a4113 1730 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
ca3bf3bd
DJ
1731 int i;
1732 int size, onstack_size;
ff7a4c00 1733 gdb_byte *buf = (gdb_byte *) alloca (16);
ca3bf3bd
DJ
1734 CORE_ADDR ra, ps;
1735 struct argument_info
1736 {
1737 const bfd_byte *contents;
1738 int length;
1739 int onstack; /* onstack == 0 => in reg */
1740 int align; /* alignment */
1741 union
1742 {
581e13c1
MS
1743 int offset; /* stack offset if on stack. */
1744 int regno; /* regno if in register. */
ca3bf3bd
DJ
1745 } u;
1746 };
1747
1748 struct argument_info *arg_info =
1749 (struct argument_info *) alloca (nargs * sizeof (struct argument_info));
1750
1751 CORE_ADDR osp = sp;
1752
1753 DEBUGTRACE ("xtensa_push_dummy_call (...)\n");
1754
1755 if (xtensa_debug_level > 3)
1756 {
1757 int i;
1758 DEBUGINFO ("[xtensa_push_dummy_call] nargs = %d\n", nargs);
1759 DEBUGINFO ("[xtensa_push_dummy_call] sp=0x%x, struct_return=%d, "
1760 "struct_addr=0x%x\n",
1761 (int) sp, (int) struct_return, (int) struct_addr);
1762
1763 for (i = 0; i < nargs; i++)
1764 {
1765 struct value *arg = args[i];
1766 struct type *arg_type = check_typedef (value_type (arg));
3329c4b5
PM
1767 fprintf_unfiltered (gdb_stdlog, "%2d: %s %3d ", i,
1768 host_address_to_string (arg),
1769 TYPE_LENGTH (arg_type));
ca3bf3bd
DJ
1770 switch (TYPE_CODE (arg_type))
1771 {
1772 case TYPE_CODE_INT:
1773 fprintf_unfiltered (gdb_stdlog, "int");
1774 break;
1775 case TYPE_CODE_STRUCT:
1776 fprintf_unfiltered (gdb_stdlog, "struct");
1777 break;
1778 default:
1779 fprintf_unfiltered (gdb_stdlog, "%3d", TYPE_CODE (arg_type));
1780 break;
1781 }
3329c4b5
PM
1782 fprintf_unfiltered (gdb_stdlog, " %s\n",
1783 host_address_to_string (value_contents (arg)));
ca3bf3bd
DJ
1784 }
1785 }
1786
1787 /* First loop: collect information.
1788 Cast into type_long. (This shouldn't happen often for C because
1789 GDB already does this earlier.) It's possible that GDB could
1790 do it all the time but it's harmless to leave this code here. */
1791
1792 size = 0;
1793 onstack_size = 0;
1794 i = 0;
1795
1796 if (struct_return)
1797 size = REGISTER_SIZE;
1798
1799 for (i = 0; i < nargs; i++)
1800 {
1801 struct argument_info *info = &arg_info[i];
1802 struct value *arg = args[i];
1803 struct type *arg_type = check_typedef (value_type (arg));
1804
1805 switch (TYPE_CODE (arg_type))
1806 {
1807 case TYPE_CODE_INT:
1808 case TYPE_CODE_BOOL:
1809 case TYPE_CODE_CHAR:
1810 case TYPE_CODE_RANGE:
1811 case TYPE_CODE_ENUM:
1812
1813 /* Cast argument to long if necessary as the mask does it too. */
0dfff4cb
UW
1814 if (TYPE_LENGTH (arg_type)
1815 < TYPE_LENGTH (builtin_type (gdbarch)->builtin_long))
ca3bf3bd 1816 {
0dfff4cb 1817 arg_type = builtin_type (gdbarch)->builtin_long;
ca3bf3bd
DJ
1818 arg = value_cast (arg_type, arg);
1819 }
bdb4c075
MG
1820 /* Aligment is equal to the type length for the basic types. */
1821 info->align = TYPE_LENGTH (arg_type);
ca3bf3bd
DJ
1822 break;
1823
1824 case TYPE_CODE_FLT:
1825
1826 /* Align doubles correctly. */
0dfff4cb
UW
1827 if (TYPE_LENGTH (arg_type)
1828 == TYPE_LENGTH (builtin_type (gdbarch)->builtin_double))
1829 info->align = TYPE_LENGTH (builtin_type (gdbarch)->builtin_double);
ca3bf3bd 1830 else
0dfff4cb 1831 info->align = TYPE_LENGTH (builtin_type (gdbarch)->builtin_long);
ca3bf3bd
DJ
1832 break;
1833
1834 case TYPE_CODE_STRUCT:
1835 default:
0dfff4cb 1836 info->align = TYPE_LENGTH (builtin_type (gdbarch)->builtin_long);
ca3bf3bd
DJ
1837 break;
1838 }
1839 info->length = TYPE_LENGTH (arg_type);
1840 info->contents = value_contents (arg);
1841
1842 /* Align size and onstack_size. */
1843 size = (size + info->align - 1) & ~(info->align - 1);
1844 onstack_size = (onstack_size + info->align - 1) & ~(info->align - 1);
1845
91d8eb23 1846 if (size + info->length > REGISTER_SIZE * ARG_NOF (gdbarch))
ca3bf3bd
DJ
1847 {
1848 info->onstack = 1;
1849 info->u.offset = onstack_size;
1850 onstack_size += info->length;
1851 }
1852 else
1853 {
1854 info->onstack = 0;
91d8eb23 1855 info->u.regno = ARG_1ST (gdbarch) + size / REGISTER_SIZE;
ca3bf3bd
DJ
1856 }
1857 size += info->length;
1858 }
1859
1860 /* Adjust the stack pointer and align it. */
1861 sp = align_down (sp - onstack_size, SP_ALIGNMENT);
1862
bdb4c075 1863 /* Simulate MOVSP, if Windowed ABI. */
6b50c0b0 1864 if ((gdbarch_tdep (gdbarch)->call_abi != CallAbiCall0Only)
304fe255 1865 && (sp != osp))
ca3bf3bd
DJ
1866 {
1867 read_memory (osp - 16, buf, 16);
1868 write_memory (sp - 16, buf, 16);
1869 }
1870
1871 /* Second Loop: Load arguments. */
1872
1873 if (struct_return)
1874 {
e17a4113 1875 store_unsigned_integer (buf, REGISTER_SIZE, byte_order, struct_addr);
91d8eb23 1876 regcache_cooked_write (regcache, ARG_1ST (gdbarch), buf);
ca3bf3bd
DJ
1877 }
1878
1879 for (i = 0; i < nargs; i++)
1880 {
1881 struct argument_info *info = &arg_info[i];
1882
1883 if (info->onstack)
1884 {
1885 int n = info->length;
1886 CORE_ADDR offset = sp + info->u.offset;
1887
1888 /* Odd-sized structs are aligned to the lower side of a memory
1889 word in big-endian mode and require a shift. This only
1890 applies for structures smaller than one word. */
1891
4c6b5505 1892 if (n < REGISTER_SIZE
6b50c0b0 1893 && gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
ca3bf3bd
DJ
1894 offset += (REGISTER_SIZE - n);
1895
1896 write_memory (offset, info->contents, info->length);
1897
1898 }
1899 else
1900 {
1901 int n = info->length;
1902 const bfd_byte *cp = info->contents;
1903 int r = info->u.regno;
1904
1905 /* Odd-sized structs are aligned to the lower side of registers in
1906 big-endian mode and require a shift. The odd-sized leftover will
1907 be at the end. Note that this is only true for structures smaller
1908 than REGISTER_SIZE; for larger odd-sized structures the excess
1909 will be left-aligned in the register on both endiannesses. */
1910
e17a4113 1911 if (n < REGISTER_SIZE && byte_order == BFD_ENDIAN_BIG)
ca3bf3bd 1912 {
e17a4113
UW
1913 ULONGEST v;
1914 v = extract_unsigned_integer (cp, REGISTER_SIZE, byte_order);
ca3bf3bd
DJ
1915 v = v >> ((REGISTER_SIZE - n) * TARGET_CHAR_BIT);
1916
e17a4113 1917 store_unsigned_integer (buf, REGISTER_SIZE, byte_order, v);
ca3bf3bd
DJ
1918 regcache_cooked_write (regcache, r, buf);
1919
1920 cp += REGISTER_SIZE;
1921 n -= REGISTER_SIZE;
1922 r++;
1923 }
1924 else
1925 while (n > 0)
1926 {
ca3bf3bd
DJ
1927 regcache_cooked_write (regcache, r, cp);
1928
ca3bf3bd
DJ
1929 cp += REGISTER_SIZE;
1930 n -= REGISTER_SIZE;
1931 r++;
1932 }
1933 }
1934 }
1935
ca3bf3bd 1936 /* Set the return address of dummy frame to the dummy address.
bdb4c075 1937 The return address for the current function (in A0) is
ca3bf3bd
DJ
1938 saved in the dummy frame, so we can savely overwrite A0 here. */
1939
6b50c0b0 1940 if (gdbarch_tdep (gdbarch)->call_abi != CallAbiCall0Only)
bdb4c075 1941 {
98689b25 1942 ULONGEST val;
68d6df83 1943
bdb4c075 1944 ra = (bp_addr & 0x3fffffff) | 0x40000000;
98689b25
MG
1945 regcache_raw_read_unsigned (regcache, gdbarch_ps_regnum (gdbarch), &val);
1946 ps = (unsigned long) val & ~0x00030000;
304fe255 1947 regcache_cooked_write_unsigned
6b50c0b0 1948 (regcache, gdbarch_tdep (gdbarch)->a0_base + 4, ra);
bdb4c075 1949 regcache_cooked_write_unsigned (regcache,
6b50c0b0 1950 gdbarch_ps_regnum (gdbarch),
bdb4c075 1951 ps | 0x00010000);
94a0e877
MG
1952
1953 /* All the registers have been saved. After executing
1954 dummy call, they all will be restored. So it's safe
1955 to modify WINDOWSTART register to make it look like there
1956 is only one register window corresponding to WINDOWEBASE. */
1957
1958 regcache_raw_read (regcache, gdbarch_tdep (gdbarch)->wb_regnum, buf);
e17a4113
UW
1959 regcache_cooked_write_unsigned
1960 (regcache, gdbarch_tdep (gdbarch)->ws_regnum,
1961 1 << extract_unsigned_integer (buf, 4, byte_order));
bdb4c075
MG
1962 }
1963 else
1964 {
1965 /* Simulate CALL0: write RA into A0 register. */
304fe255 1966 regcache_cooked_write_unsigned
94a0e877 1967 (regcache, gdbarch_tdep (gdbarch)->a0_base, bp_addr);
bdb4c075 1968 }
ca3bf3bd
DJ
1969
1970 /* Set new stack pointer and return it. */
304fe255 1971 regcache_cooked_write_unsigned (regcache,
6b50c0b0 1972 gdbarch_tdep (gdbarch)->a0_base + 1, sp);
ca3bf3bd
DJ
1973 /* Make dummy frame ID unique by adding a constant. */
1974 return sp + SP_ALIGNMENT;
1975}
1976
1977
1978/* Return a breakpoint for the current location of PC. We always use
1979 the density version if we have density instructions (regardless of the
1980 current instruction at PC), and use regular instructions otherwise. */
1981
1982#define BIG_BREAKPOINT { 0x00, 0x04, 0x00 }
1983#define LITTLE_BREAKPOINT { 0x00, 0x40, 0x00 }
1984#define DENSITY_BIG_BREAKPOINT { 0xd2, 0x0f }
1985#define DENSITY_LITTLE_BREAKPOINT { 0x2d, 0xf0 }
1986
bdb4c075 1987static const unsigned char *
67d57894
MD
1988xtensa_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr,
1989 int *lenptr)
ca3bf3bd 1990{
ff7a4c00
MG
1991 static unsigned char big_breakpoint[] = BIG_BREAKPOINT;
1992 static unsigned char little_breakpoint[] = LITTLE_BREAKPOINT;
1993 static unsigned char density_big_breakpoint[] = DENSITY_BIG_BREAKPOINT;
1994 static unsigned char density_little_breakpoint[] = DENSITY_LITTLE_BREAKPOINT;
ca3bf3bd
DJ
1995
1996 DEBUGTRACE ("xtensa_breakpoint_from_pc (pc = 0x%08x)\n", (int) *pcptr);
1997
67d57894 1998 if (gdbarch_tdep (gdbarch)->isa_use_density_instructions)
ca3bf3bd 1999 {
67d57894 2000 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
ca3bf3bd
DJ
2001 {
2002 *lenptr = sizeof (density_big_breakpoint);
2003 return density_big_breakpoint;
2004 }
2005 else
2006 {
2007 *lenptr = sizeof (density_little_breakpoint);
2008 return density_little_breakpoint;
2009 }
2010 }
2011 else
2012 {
67d57894 2013 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
ca3bf3bd
DJ
2014 {
2015 *lenptr = sizeof (big_breakpoint);
2016 return big_breakpoint;
2017 }
2018 else
2019 {
2020 *lenptr = sizeof (little_breakpoint);
2021 return little_breakpoint;
2022 }
2023 }
2024}
2025
bdb4c075
MG
2026/* Call0 ABI support routines. */
2027
f976a05d
MG
2028/* Return true, if PC points to "ret" or "ret.n". */
2029
2030static int
2031call0_ret (CORE_ADDR start_pc, CORE_ADDR finish_pc)
2032{
2033#define RETURN_RET goto done
2034 xtensa_isa isa;
2035 xtensa_insnbuf ins, slot;
2036 char ibuf[XTENSA_ISA_BSZ];
2037 CORE_ADDR ia, bt, ba;
2038 xtensa_format ifmt;
2039 int ilen, islots, is;
2040 xtensa_opcode opc;
2041 const char *opcname;
2042 int found_ret = 0;
2043
2044 isa = xtensa_default_isa;
2045 gdb_assert (XTENSA_ISA_BSZ >= xtensa_isa_maxlength (isa));
2046 ins = xtensa_insnbuf_alloc (isa);
2047 slot = xtensa_insnbuf_alloc (isa);
2048 ba = 0;
2049
2050 for (ia = start_pc, bt = ia; ia < finish_pc ; ia += ilen)
2051 {
2052 if (ia + xtensa_isa_maxlength (isa) > bt)
2053 {
2054 ba = ia;
2055 bt = (ba + XTENSA_ISA_BSZ) < finish_pc
2056 ? ba + XTENSA_ISA_BSZ : finish_pc;
2057 if (target_read_memory (ba, ibuf, bt - ba) != 0 )
2058 RETURN_RET;
2059 }
2060
2061 xtensa_insnbuf_from_chars (isa, ins, &ibuf[ia-ba], 0);
2062 ifmt = xtensa_format_decode (isa, ins);
2063 if (ifmt == XTENSA_UNDEFINED)
2064 RETURN_RET;
2065 ilen = xtensa_format_length (isa, ifmt);
2066 if (ilen == XTENSA_UNDEFINED)
2067 RETURN_RET;
2068 islots = xtensa_format_num_slots (isa, ifmt);
2069 if (islots == XTENSA_UNDEFINED)
2070 RETURN_RET;
2071
2072 for (is = 0; is < islots; ++is)
2073 {
2074 if (xtensa_format_get_slot (isa, ifmt, is, ins, slot))
2075 RETURN_RET;
2076
2077 opc = xtensa_opcode_decode (isa, ifmt, is, slot);
2078 if (opc == XTENSA_UNDEFINED)
2079 RETURN_RET;
2080
2081 opcname = xtensa_opcode_name (isa, opc);
2082
2083 if ((strcasecmp (opcname, "ret.n") == 0)
2084 || (strcasecmp (opcname, "ret") == 0))
2085 {
2086 found_ret = 1;
2087 RETURN_RET;
2088 }
2089 }
2090 }
2091 done:
2092 xtensa_insnbuf_free(isa, slot);
2093 xtensa_insnbuf_free(isa, ins);
2094 return found_ret;
2095}
2096
bdb4c075
MG
2097/* Call0 opcode class. Opcodes are preclassified according to what they
2098 mean for Call0 prologue analysis, and their number of significant operands.
2099 The purpose of this is to simplify prologue analysis by separating
2100 instruction decoding (libisa) from the semantics of prologue analysis. */
2101
68d6df83
MG
2102typedef enum
2103{
bdb4c075
MG
2104 c0opc_illegal, /* Unknown to libisa (invalid) or 'ill' opcode. */
2105 c0opc_uninteresting, /* Not interesting for Call0 prologue analysis. */
2106 c0opc_flow, /* Flow control insn. */
2107 c0opc_entry, /* ENTRY indicates non-Call0 prologue. */
2108 c0opc_break, /* Debugger software breakpoints. */
2109 c0opc_add, /* Adding two registers. */
2110 c0opc_addi, /* Adding a register and an immediate. */
dbab50de 2111 c0opc_and, /* Bitwise "and"-ing two registers. */
bdb4c075
MG
2112 c0opc_sub, /* Subtracting a register from a register. */
2113 c0opc_mov, /* Moving a register to a register. */
2114 c0opc_movi, /* Moving an immediate to a register. */
2115 c0opc_l32r, /* Loading a literal. */
08b9c608
MG
2116 c0opc_s32i, /* Storing word at fixed offset from a base register. */
2117 c0opc_rwxsr, /* RSR, WRS, or XSR instructions. */
2118 c0opc_l32e, /* L32E instruction. */
2119 c0opc_s32e, /* S32E instruction. */
2120 c0opc_rfwo, /* RFWO instruction. */
2121 c0opc_rfwu, /* RFWU instruction. */
bdb4c075
MG
2122 c0opc_NrOf /* Number of opcode classifications. */
2123} xtensa_insn_kind;
2124
08b9c608
MG
2125/* Return true, if OPCNAME is RSR, WRS, or XSR instruction. */
2126
2127static int
2128rwx_special_register (const char *opcname)
2129{
2130 char ch = *opcname++;
2131
2132 if ((ch != 'r') && (ch != 'w') && (ch != 'x'))
2133 return 0;
2134 if (*opcname++ != 's')
2135 return 0;
2136 if (*opcname++ != 'r')
2137 return 0;
2138 if (*opcname++ != '.')
2139 return 0;
2140
2141 return 1;
2142}
bdb4c075
MG
2143
2144/* Classify an opcode based on what it means for Call0 prologue analysis. */
2145
2146static xtensa_insn_kind
2147call0_classify_opcode (xtensa_isa isa, xtensa_opcode opc)
2148{
2149 const char *opcname;
2150 xtensa_insn_kind opclass = c0opc_uninteresting;
2151
2152 DEBUGTRACE ("call0_classify_opcode (..., opc = %d)\n", opc);
2153
2154 /* Get opcode name and handle special classifications. */
2155
2156 opcname = xtensa_opcode_name (isa, opc);
2157
2158 if (opcname == NULL
2159 || strcasecmp (opcname, "ill") == 0
2160 || strcasecmp (opcname, "ill.n") == 0)
2161 opclass = c0opc_illegal;
2162 else if (strcasecmp (opcname, "break") == 0
2163 || strcasecmp (opcname, "break.n") == 0)
2164 opclass = c0opc_break;
2165 else if (strcasecmp (opcname, "entry") == 0)
2166 opclass = c0opc_entry;
08b9c608
MG
2167 else if (strcasecmp (opcname, "rfwo") == 0)
2168 opclass = c0opc_rfwo;
2169 else if (strcasecmp (opcname, "rfwu") == 0)
2170 opclass = c0opc_rfwu;
bdb4c075
MG
2171 else if (xtensa_opcode_is_branch (isa, opc) > 0
2172 || xtensa_opcode_is_jump (isa, opc) > 0
2173 || xtensa_opcode_is_loop (isa, opc) > 0
2174 || xtensa_opcode_is_call (isa, opc) > 0
2175 || strcasecmp (opcname, "simcall") == 0
2176 || strcasecmp (opcname, "syscall") == 0)
2177 opclass = c0opc_flow;
2178
2179 /* Also, classify specific opcodes that need to be tracked. */
2180 else if (strcasecmp (opcname, "add") == 0
2181 || strcasecmp (opcname, "add.n") == 0)
2182 opclass = c0opc_add;
dbab50de
MG
2183 else if (strcasecmp (opcname, "and") == 0)
2184 opclass = c0opc_and;
bdb4c075
MG
2185 else if (strcasecmp (opcname, "addi") == 0
2186 || strcasecmp (opcname, "addi.n") == 0
2187 || strcasecmp (opcname, "addmi") == 0)
2188 opclass = c0opc_addi;
2189 else if (strcasecmp (opcname, "sub") == 0)
2190 opclass = c0opc_sub;
2191 else if (strcasecmp (opcname, "mov.n") == 0
2192 || strcasecmp (opcname, "or") == 0) /* Could be 'mov' asm macro. */
2193 opclass = c0opc_mov;
2194 else if (strcasecmp (opcname, "movi") == 0
2195 || strcasecmp (opcname, "movi.n") == 0)
2196 opclass = c0opc_movi;
2197 else if (strcasecmp (opcname, "l32r") == 0)
2198 opclass = c0opc_l32r;
2199 else if (strcasecmp (opcname, "s32i") == 0
2200 || strcasecmp (opcname, "s32i.n") == 0)
2201 opclass = c0opc_s32i;
08b9c608
MG
2202 else if (strcasecmp (opcname, "l32e") == 0)
2203 opclass = c0opc_l32e;
2204 else if (strcasecmp (opcname, "s32e") == 0)
2205 opclass = c0opc_s32e;
2206 else if (rwx_special_register (opcname))
2207 opclass = c0opc_rwxsr;
bdb4c075
MG
2208
2209 return opclass;
2210}
2211
2212/* Tracks register movement/mutation for a given operation, which may
2213 be within a bundle. Updates the destination register tracking info
2214 accordingly. The pc is needed only for pc-relative load instructions
2215 (eg. l32r). The SP register number is needed to identify stores to
dbab50de
MG
2216 the stack frame. Returns 0, if analysis was succesfull, non-zero
2217 otherwise. */
bdb4c075 2218
dbab50de
MG
2219static int
2220call0_track_op (struct gdbarch *gdbarch, xtensa_c0reg_t dst[], xtensa_c0reg_t src[],
bdb4c075 2221 xtensa_insn_kind opclass, int nods, unsigned odv[],
dbab50de 2222 CORE_ADDR pc, int spreg, xtensa_frame_cache_t *cache)
bdb4c075 2223{
e17a4113 2224 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
dbab50de 2225 unsigned litbase, litaddr, litval;
bdb4c075
MG
2226
2227 switch (opclass)
2228 {
2229 case c0opc_addi:
2230 /* 3 operands: dst, src, imm. */
2231 gdb_assert (nods == 3);
2232 dst[odv[0]].fr_reg = src[odv[1]].fr_reg;
2233 dst[odv[0]].fr_ofs = src[odv[1]].fr_ofs + odv[2];
2234 break;
2235 case c0opc_add:
2236 /* 3 operands: dst, src1, src2. */
08b9c608 2237 gdb_assert (nods == 3);
bdb4c075
MG
2238 if (src[odv[1]].fr_reg == C0_CONST)
2239 {
2240 dst[odv[0]].fr_reg = src[odv[2]].fr_reg;
2241 dst[odv[0]].fr_ofs = src[odv[2]].fr_ofs + src[odv[1]].fr_ofs;
2242 }
2243 else if (src[odv[2]].fr_reg == C0_CONST)
2244 {
2245 dst[odv[0]].fr_reg = src[odv[1]].fr_reg;
2246 dst[odv[0]].fr_ofs = src[odv[1]].fr_ofs + src[odv[2]].fr_ofs;
2247 }
2248 else dst[odv[0]].fr_reg = C0_INEXP;
2249 break;
dbab50de
MG
2250 case c0opc_and:
2251 /* 3 operands: dst, src1, src2. */
2252 gdb_assert (nods == 3);
2253 if (cache->c0.c0_fpalign == 0)
2254 {
2255 /* Handle dynamic stack alignment. */
2256 if ((src[odv[0]].fr_reg == spreg) && (src[odv[1]].fr_reg == spreg))
2257 {
2258 if (src[odv[2]].fr_reg == C0_CONST)
2259 cache->c0.c0_fpalign = src[odv[2]].fr_ofs;
2260 break;
2261 }
2262 else if ((src[odv[0]].fr_reg == spreg)
2263 && (src[odv[2]].fr_reg == spreg))
2264 {
2265 if (src[odv[1]].fr_reg == C0_CONST)
2266 cache->c0.c0_fpalign = src[odv[1]].fr_ofs;
2267 break;
2268 }
2269 /* else fall through. */
2270 }
2271 if (src[odv[1]].fr_reg == C0_CONST)
2272 {
2273 dst[odv[0]].fr_reg = src[odv[2]].fr_reg;
2274 dst[odv[0]].fr_ofs = src[odv[2]].fr_ofs & src[odv[1]].fr_ofs;
2275 }
2276 else if (src[odv[2]].fr_reg == C0_CONST)
2277 {
2278 dst[odv[0]].fr_reg = src[odv[1]].fr_reg;
2279 dst[odv[0]].fr_ofs = src[odv[1]].fr_ofs & src[odv[2]].fr_ofs;
2280 }
2281 else dst[odv[0]].fr_reg = C0_INEXP;
2282 break;
bdb4c075
MG
2283 case c0opc_sub:
2284 /* 3 operands: dst, src1, src2. */
2285 gdb_assert (nods == 3);
2286 if (src[odv[2]].fr_reg == C0_CONST)
2287 {
2288 dst[odv[0]].fr_reg = src[odv[1]].fr_reg;
2289 dst[odv[0]].fr_ofs = src[odv[1]].fr_ofs - src[odv[2]].fr_ofs;
2290 }
2291 else dst[odv[0]].fr_reg = C0_INEXP;
2292 break;
2293 case c0opc_mov:
2294 /* 2 operands: dst, src [, src]. */
2295 gdb_assert (nods == 2);
dbab50de
MG
2296 /* First, check if it's a special case of saving unaligned SP
2297 to a spare register in case of dynamic stack adjustment.
2298 But, only do it one time. The second time could be initializing
2299 frame pointer. We don't want to overwrite the first one. */
2300 if ((odv[1] == spreg) && (cache->c0.c0_old_sp == C0_INEXP))
2301 cache->c0.c0_old_sp = odv[0];
2302
bdb4c075
MG
2303 dst[odv[0]].fr_reg = src[odv[1]].fr_reg;
2304 dst[odv[0]].fr_ofs = src[odv[1]].fr_ofs;
2305 break;
2306 case c0opc_movi:
2307 /* 2 operands: dst, imm. */
2308 gdb_assert (nods == 2);
2309 dst[odv[0]].fr_reg = C0_CONST;
2310 dst[odv[0]].fr_ofs = odv[1];
2311 break;
2312 case c0opc_l32r:
2313 /* 2 operands: dst, literal offset. */
2314 gdb_assert (nods == 2);
dbab50de
MG
2315 /* litbase = xtensa_get_litbase (pc); can be also used. */
2316 litbase = (gdbarch_tdep (gdbarch)->litbase_regnum == -1)
2317 ? 0 : xtensa_read_register
2318 (gdbarch_tdep (gdbarch)->litbase_regnum);
bdb4c075
MG
2319 litaddr = litbase & 1
2320 ? (litbase & ~1) + (signed)odv[1]
2321 : (pc + 3 + (signed)odv[1]) & ~3;
e17a4113 2322 litval = read_memory_integer (litaddr, 4, byte_order);
bdb4c075
MG
2323 dst[odv[0]].fr_reg = C0_CONST;
2324 dst[odv[0]].fr_ofs = litval;
2325 break;
2326 case c0opc_s32i:
2327 /* 3 operands: value, base, offset. */
2328 gdb_assert (nods == 3 && spreg >= 0 && spreg < C0_NREGS);
dbab50de
MG
2329 /* First, check if it's a spill for saved unaligned SP,
2330 when dynamic stack adjustment was applied to this frame. */
2331 if ((cache->c0.c0_fpalign != 0) /* Dynamic stack adjustment. */
2332 && (odv[1] == spreg) /* SP usage indicates spill. */
2333 && (odv[0] == cache->c0.c0_old_sp)) /* Old SP register spilled. */
2334 cache->c0.c0_sp_ofs = odv[2];
2335
bdb4c075
MG
2336 if (src[odv[1]].fr_reg == spreg /* Store to stack frame. */
2337 && (src[odv[1]].fr_ofs & 3) == 0 /* Alignment preserved. */
2338 && src[odv[0]].fr_reg >= 0 /* Value is from a register. */
2339 && src[odv[0]].fr_ofs == 0 /* Value hasn't been modified. */
2340 && src[src[odv[0]].fr_reg].to_stk == C0_NOSTK) /* First time. */
2341 {
2342 /* ISA encoding guarantees alignment. But, check it anyway. */
2343 gdb_assert ((odv[2] & 3) == 0);
2344 dst[src[odv[0]].fr_reg].to_stk = src[odv[1]].fr_ofs + odv[2];
2345 }
2346 break;
dbab50de
MG
2347 /* If we end up inside Window Overflow / Underflow interrupt handler
2348 report an error because these handlers should have been handled
2349 already in a different way. */
2350 case c0opc_l32e:
2351 case c0opc_s32e:
2352 case c0opc_rfwo:
2353 case c0opc_rfwu:
2354 return 1;
bdb4c075 2355 default:
dbab50de 2356 return 1;
bdb4c075 2357 }
dbab50de 2358 return 0;
bdb4c075
MG
2359}
2360
dbab50de 2361/* Analyze prologue of the function at start address to determine if it uses
bdb4c075 2362 the Call0 ABI, and if so track register moves and linear modifications
dbab50de
MG
2363 in the prologue up to the PC or just beyond the prologue, whichever is
2364 first. An 'entry' instruction indicates non-Call0 ABI and the end of the
2365 prologue. The prologue may overlap non-prologue instructions but is
2366 guaranteed to end by the first flow-control instruction (jump, branch,
2367 call or return). Since an optimized function may move information around
2368 and change the stack frame arbitrarily during the prologue, the information
2369 is guaranteed valid only at the point in the function indicated by the PC.
bdb4c075
MG
2370 May be used to skip the prologue or identify the ABI, w/o tracking.
2371
2372 Returns: Address of first instruction after prologue, or PC (whichever
2373 is first), or 0, if decoding failed (in libisa).
2374 Input args:
2375 start Start address of function/prologue.
2376 pc Program counter to stop at. Use 0 to continue to end of prologue.
2377 If 0, avoids infinite run-on in corrupt code memory by bounding
2378 the scan to the end of the function if that can be determined.
dbab50de 2379 nregs Number of general registers to track.
bdb4c075 2380 InOut args:
dbab50de 2381 cache Xtensa frame cache.
bdb4c075
MG
2382
2383 Note that these may produce useful results even if decoding fails
2384 because they begin with default assumptions that analysis may change. */
2385
2386static CORE_ADDR
e17a4113 2387call0_analyze_prologue (struct gdbarch *gdbarch,
dbab50de
MG
2388 CORE_ADDR start, CORE_ADDR pc,
2389 int nregs, xtensa_frame_cache_t *cache)
bdb4c075
MG
2390{
2391 CORE_ADDR ia; /* Current insn address in prologue. */
2392 CORE_ADDR ba = 0; /* Current address at base of insn buffer. */
2393 CORE_ADDR bt; /* Current address at top+1 of insn buffer. */
2ff5e605 2394 char ibuf[XTENSA_ISA_BSZ];/* Instruction buffer for decoding prologue. */
bdb4c075
MG
2395 xtensa_isa isa; /* libisa ISA handle. */
2396 xtensa_insnbuf ins, slot; /* libisa handle to decoded insn, slot. */
2397 xtensa_format ifmt; /* libisa instruction format. */
2398 int ilen, islots, is; /* Instruction length, nbr slots, current slot. */
2399 xtensa_opcode opc; /* Opcode in current slot. */
2400 xtensa_insn_kind opclass; /* Opcode class for Call0 prologue analysis. */
2401 int nods; /* Opcode number of operands. */
2402 unsigned odv[C0_MAXOPDS]; /* Operand values in order provided by libisa. */
2403 xtensa_c0reg_t *rtmp; /* Register tracking info snapshot. */
2404 int j; /* General loop counter. */
2405 int fail = 0; /* Set non-zero and exit, if decoding fails. */
2406 CORE_ADDR body_pc; /* The PC for the first non-prologue insn. */
2407 CORE_ADDR end_pc; /* The PC for the lust function insn. */
2408
2409 struct symtab_and_line prologue_sal;
2410
2411 DEBUGTRACE ("call0_analyze_prologue (start = 0x%08x, pc = 0x%08x, ...)\n",
2412 (int)start, (int)pc);
2413
2414 /* Try to limit the scan to the end of the function if a non-zero pc
2415 arg was not supplied to avoid probing beyond the end of valid memory.
2416 If memory is full of garbage that classifies as c0opc_uninteresting.
2417 If this fails (eg. if no symbols) pc ends up 0 as it was.
2418 Intialize the Call0 frame and register tracking info.
2419 Assume it's Call0 until an 'entry' instruction is encountered.
2420 Assume we may be in the prologue until we hit a flow control instr. */
2421
2422 rtmp = NULL;
8179e739 2423 body_pc = UINT_MAX;
bdb4c075
MG
2424 end_pc = 0;
2425
2426 /* Find out, if we have an information about the prologue from DWARF. */
2427 prologue_sal = find_pc_line (start, 0);
2428 if (prologue_sal.line != 0) /* Found debug info. */
2429 body_pc = prologue_sal.end;
2430
2431 /* If we are going to analyze the prologue in general without knowing about
2432 the current PC, make the best assumtion for the end of the prologue. */
2433 if (pc == 0)
2434 {
2435 find_pc_partial_function (start, 0, NULL, &end_pc);
2436 body_pc = min (end_pc, body_pc);
2437 }
2438 else
2439 body_pc = min (pc, body_pc);
2440
dbab50de
MG
2441 cache->call0 = 1;
2442 rtmp = (xtensa_c0reg_t*) alloca(nregs * sizeof(xtensa_c0reg_t));
bdb4c075 2443
94a0e877
MG
2444 if (!xtensa_default_isa)
2445 xtensa_default_isa = xtensa_isa_init (0, 0);
bdb4c075 2446 isa = xtensa_default_isa;
2ff5e605 2447 gdb_assert (XTENSA_ISA_BSZ >= xtensa_isa_maxlength (isa));
bdb4c075
MG
2448 ins = xtensa_insnbuf_alloc (isa);
2449 slot = xtensa_insnbuf_alloc (isa);
2450
2451 for (ia = start, bt = ia; ia < body_pc ; ia += ilen)
2452 {
2453 /* (Re)fill instruction buffer from memory if necessary, but do not
2454 read memory beyond PC to be sure we stay within text section
2455 (this protection only works if a non-zero pc is supplied). */
2456
2457 if (ia + xtensa_isa_maxlength (isa) > bt)
2458 {
2459 ba = ia;
2ff5e605 2460 bt = (ba + XTENSA_ISA_BSZ) < body_pc ? ba + XTENSA_ISA_BSZ : body_pc;
dbab50de
MG
2461 if (target_read_memory (ba, ibuf, bt - ba) != 0 )
2462 error (_("Unable to read target memory ..."));
bdb4c075
MG
2463 }
2464
2465 /* Decode format information. */
2466
2467 xtensa_insnbuf_from_chars (isa, ins, &ibuf[ia-ba], 0);
2468 ifmt = xtensa_format_decode (isa, ins);
2469 if (ifmt == XTENSA_UNDEFINED)
2470 {
2471 fail = 1;
2472 goto done;
2473 }
2474 ilen = xtensa_format_length (isa, ifmt);
2475 if (ilen == XTENSA_UNDEFINED)
2476 {
2477 fail = 1;
2478 goto done;
2479 }
2480 islots = xtensa_format_num_slots (isa, ifmt);
2481 if (islots == XTENSA_UNDEFINED)
2482 {
2483 fail = 1;
2484 goto done;
2485 }
2486
2487 /* Analyze a bundle or a single instruction, using a snapshot of
2488 the register tracking info as input for the entire bundle so that
2489 register changes do not take effect within this bundle. */
ca3bf3bd 2490
bdb4c075 2491 for (j = 0; j < nregs; ++j)
dbab50de 2492 rtmp[j] = cache->c0.c0_rt[j];
bdb4c075
MG
2493
2494 for (is = 0; is < islots; ++is)
2495 {
2496 /* Decode a slot and classify the opcode. */
2497
2498 fail = xtensa_format_get_slot (isa, ifmt, is, ins, slot);
2499 if (fail)
2500 goto done;
2501
2502 opc = xtensa_opcode_decode (isa, ifmt, is, slot);
dbab50de 2503 DEBUGVERB ("[call0_analyze_prologue] instr addr = 0x%08x, opc = %d\n",
bdb4c075
MG
2504 (unsigned)ia, opc);
2505 if (opc == XTENSA_UNDEFINED)
2506 opclass = c0opc_illegal;
2507 else
2508 opclass = call0_classify_opcode (isa, opc);
2509
2510 /* Decide whether to track this opcode, ignore it, or bail out. */
2511
2512 switch (opclass)
2513 {
2514 case c0opc_illegal:
2515 case c0opc_break:
2516 fail = 1;
2517 goto done;
2518
2519 case c0opc_uninteresting:
2520 continue;
2521
dbab50de
MG
2522 case c0opc_flow: /* Flow control instructions stop analysis. */
2523 case c0opc_rwxsr: /* RSR, WSR, XSR instructions stop analysis. */
bdb4c075
MG
2524 goto done;
2525
2526 case c0opc_entry:
dbab50de 2527 cache->call0 = 0;
bdb4c075
MG
2528 ia += ilen; /* Skip over 'entry' insn. */
2529 goto done;
2530
2531 default:
dbab50de 2532 cache->call0 = 1;
bdb4c075
MG
2533 }
2534
2535 /* Only expected opcodes should get this far. */
bdb4c075
MG
2536
2537 /* Extract and decode the operands. */
2538 nods = xtensa_opcode_num_operands (isa, opc);
2539 if (nods == XTENSA_UNDEFINED)
2540 {
2541 fail = 1;
2542 goto done;
2543 }
2544
2545 for (j = 0; j < nods && j < C0_MAXOPDS; ++j)
2546 {
2547 fail = xtensa_operand_get_field (isa, opc, j, ifmt,
2548 is, slot, &odv[j]);
2549 if (fail)
2550 goto done;
2551
2552 fail = xtensa_operand_decode (isa, opc, j, &odv[j]);
2553 if (fail)
2554 goto done;
2555 }
2556
2557 /* Check operands to verify use of 'mov' assembler macro. */
2558 if (opclass == c0opc_mov && nods == 3)
2559 {
2560 if (odv[2] == odv[1])
dbab50de
MG
2561 {
2562 nods = 2;
2563 if ((odv[0] == 1) && (odv[1] != 1))
2564 /* OR A1, An, An , where n != 1.
2565 This means we are inside epilogue already. */
2566 goto done;
2567 }
bdb4c075
MG
2568 else
2569 {
2570 opclass = c0opc_uninteresting;
2571 continue;
2572 }
2573 }
2574
2575 /* Track register movement and modification for this operation. */
dbab50de
MG
2576 fail = call0_track_op (gdbarch, cache->c0.c0_rt, rtmp,
2577 opclass, nods, odv, ia, 1, cache);
2578 if (fail)
2579 goto done;
bdb4c075
MG
2580 }
2581 }
2582done:
2583 DEBUGVERB ("[call0_analyze_prologue] stopped at instr addr 0x%08x, %s\n",
2584 (unsigned)ia, fail ? "failed" : "succeeded");
2585 xtensa_insnbuf_free(isa, slot);
2586 xtensa_insnbuf_free(isa, ins);
d4709618 2587 return fail ? XTENSA_ISA_BADPC : ia;
bdb4c075
MG
2588}
2589
5142f611 2590/* Initialize frame cache for the current frame in CALL0 ABI. */
bdb4c075
MG
2591
2592static void
5142f611 2593call0_frame_cache (struct frame_info *this_frame,
dbab50de 2594 xtensa_frame_cache_t *cache, CORE_ADDR pc)
bdb4c075 2595{
5142f611 2596 struct gdbarch *gdbarch = get_frame_arch (this_frame);
e17a4113 2597 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
bdb4c075
MG
2598 CORE_ADDR start_pc; /* The beginning of the function. */
2599 CORE_ADDR body_pc=UINT_MAX; /* PC, where prologue analysis stopped. */
2600 CORE_ADDR sp, fp, ra;
dbab50de 2601 int fp_regnum = C0_SP, c0_hasfp = 0, c0_frmsz = 0, prev_sp = 0, to_stk;
bdb4c075 2602
dbab50de
MG
2603 sp = get_frame_register_unsigned
2604 (this_frame, gdbarch_tdep (gdbarch)->a0_base + 1);
2605 fp = sp; /* Assume FP == SP until proven otherwise. */
2606
bdb4c075
MG
2607 /* Find the beginning of the prologue of the function containing the PC
2608 and analyze it up to the PC or the end of the prologue. */
2609
2610 if (find_pc_partial_function (pc, NULL, &start_pc, NULL))
2611 {
dbab50de 2612 body_pc = call0_analyze_prologue (gdbarch, start_pc, pc, C0_NREGS, cache);
d4709618
MG
2613
2614 if (body_pc == XTENSA_ISA_BADPC)
dbab50de
MG
2615 {
2616 warning_once ();
2617 ra = 0;
2618 goto finish_frame_analysis;
2619 }
bdb4c075
MG
2620 }
2621
bdb4c075
MG
2622 /* Get the frame information and FP (if used) at the current PC.
2623 If PC is in the prologue, the prologue analysis is more reliable
dbab50de
MG
2624 than DWARF info. We don't not know for sure, if PC is in the prologue,
2625 but we do know no calls have yet taken place, so we can almost
bdb4c075
MG
2626 certainly rely on the prologue analysis. */
2627
2628 if (body_pc <= pc)
2629 {
2630 /* Prologue analysis was successful up to the PC.
2631 It includes the cases when PC == START_PC. */
2632 c0_hasfp = cache->c0.c0_rt[C0_FP].fr_reg == C0_SP;
2633 /* c0_hasfp == true means there is a frame pointer because
2634 we analyzed the prologue and found that cache->c0.c0_rt[C0_FP]
2635 was derived from SP. Otherwise, it would be C0_FP. */
2636 fp_regnum = c0_hasfp ? C0_FP : C0_SP;
2637 c0_frmsz = - cache->c0.c0_rt[fp_regnum].fr_ofs;
6b50c0b0 2638 fp_regnum += gdbarch_tdep (gdbarch)->a0_base;
bdb4c075
MG
2639 }
2640 else /* No data from the prologue analysis. */
2641 {
2642 c0_hasfp = 0;
6b50c0b0 2643 fp_regnum = gdbarch_tdep (gdbarch)->a0_base + C0_SP;
bdb4c075
MG
2644 c0_frmsz = 0;
2645 start_pc = pc;
2646 }
2647
dbab50de
MG
2648 if (cache->c0.c0_fpalign)
2649 {
2650 /* This frame has a special prologue with a dynamic stack adjustment
2651 to force an alignment, which is bigger than standard 16 bytes. */
2652
2653 CORE_ADDR unaligned_sp;
2654
2655 if (cache->c0.c0_old_sp == C0_INEXP)
2656 /* This can't be. Prologue code should be consistent.
2657 Unaligned stack pointer should be saved in a spare register. */
2658 {
2659 warning_once ();
2660 ra = 0;
2661 goto finish_frame_analysis;
2662 }
2663
2664 if (cache->c0.c0_sp_ofs == C0_NOSTK)
2665 /* Saved unaligned value of SP is kept in a register. */
2666 unaligned_sp = get_frame_register_unsigned
2667 (this_frame, gdbarch_tdep (gdbarch)->a0_base + cache->c0.c0_old_sp);
2668 else
2669 /* Get the value from stack. */
2670 unaligned_sp = (CORE_ADDR)
2671 read_memory_integer (fp + cache->c0.c0_sp_ofs, 4, byte_order);
2672
2673 prev_sp = unaligned_sp + c0_frmsz;
2674 }
2675 else
2676 prev_sp = fp + c0_frmsz;
bdb4c075
MG
2677
2678 /* Frame size from debug info or prologue tracking does not account for
2679 alloca() and other dynamic allocations. Adjust frame size by FP - SP. */
2680 if (c0_hasfp)
2681 {
5142f611 2682 fp = get_frame_register_unsigned (this_frame, fp_regnum);
bdb4c075 2683
bdb4c075
MG
2684 /* Update the stack frame size. */
2685 c0_frmsz += fp - sp;
2686 }
2687
2688 /* Get the return address (RA) from the stack if saved,
2689 or try to get it from a register. */
2690
2691 to_stk = cache->c0.c0_rt[C0_RA].to_stk;
2692 if (to_stk != C0_NOSTK)
2693 ra = (CORE_ADDR)
e17a4113
UW
2694 read_memory_integer (sp + c0_frmsz + cache->c0.c0_rt[C0_RA].to_stk,
2695 4, byte_order);
bdb4c075
MG
2696
2697 else if (cache->c0.c0_rt[C0_RA].fr_reg == C0_CONST
2698 && cache->c0.c0_rt[C0_RA].fr_ofs == 0)
2699 {
dbab50de
MG
2700 /* Special case for terminating backtrace at a function that wants to
2701 be seen as the outermost one. Such a function will clear it's RA (A0)
2702 register to 0 in the prologue instead of saving its original value. */
bdb4c075
MG
2703 ra = 0;
2704 }
2705 else
2706 {
dbab50de
MG
2707 /* RA was copied to another register or (before any function call) may
2708 still be in the original RA register. This is not always reliable:
2709 even in a leaf function, register tracking stops after prologue, and
2710 even in prologue, non-prologue instructions (not tracked) may overwrite
2711 RA or any register it was copied to. If likely in prologue or before
2712 any call, use retracking info and hope for the best (compiler should
2713 have saved RA in stack if not in a leaf function). If not in prologue,
2714 too bad. */
bdb4c075
MG
2715
2716 int i;
1448a0a2
PM
2717 for (i = 0;
2718 (i < C0_NREGS)
2719 && (i == C0_RA || cache->c0.c0_rt[i].fr_reg != C0_RA);
bdb4c075
MG
2720 ++i);
2721 if (i >= C0_NREGS && cache->c0.c0_rt[C0_RA].fr_reg == C0_RA)
2722 i = C0_RA;
5142f611 2723 if (i < C0_NREGS)
bdb4c075 2724 {
5142f611
MG
2725 ra = get_frame_register_unsigned
2726 (this_frame,
2727 gdbarch_tdep (gdbarch)->a0_base + cache->c0.c0_rt[i].fr_reg);
bdb4c075
MG
2728 }
2729 else ra = 0;
2730 }
2731
dbab50de 2732 finish_frame_analysis:
bdb4c075
MG
2733 cache->pc = start_pc;
2734 cache->ra = ra;
2735 /* RA == 0 marks the outermost frame. Do not go past it. */
2736 cache->prev_sp = (ra != 0) ? prev_sp : 0;
2737 cache->c0.fp_regnum = fp_regnum;
2738 cache->c0.c0_frmsz = c0_frmsz;
2739 cache->c0.c0_hasfp = c0_hasfp;
2740 cache->c0.c0_fp = fp;
2741}
2742
08b9c608
MG
2743static CORE_ADDR a0_saved;
2744static CORE_ADDR a7_saved;
2745static CORE_ADDR a11_saved;
2746static int a0_was_saved;
2747static int a7_was_saved;
2748static int a11_was_saved;
2749
68d6df83 2750/* Simulate L32E instruction: AT <-- ref (AS + offset). */
08b9c608
MG
2751static void
2752execute_l32e (struct gdbarch *gdbarch, int at, int as, int offset, CORE_ADDR wb)
2753{
2754 int atreg = arreg_number (gdbarch, gdbarch_tdep (gdbarch)->a0_base + at, wb);
2755 int asreg = arreg_number (gdbarch, gdbarch_tdep (gdbarch)->a0_base + as, wb);
2756 CORE_ADDR addr = xtensa_read_register (asreg) + offset;
2757 unsigned int spilled_value
2758 = read_memory_unsigned_integer (addr, 4, gdbarch_byte_order (gdbarch));
2759
2760 if ((at == 0) && !a0_was_saved)
2761 {
2762 a0_saved = xtensa_read_register (atreg);
2763 a0_was_saved = 1;
2764 }
2765 else if ((at == 7) && !a7_was_saved)
2766 {
2767 a7_saved = xtensa_read_register (atreg);
2768 a7_was_saved = 1;
2769 }
2770 else if ((at == 11) && !a11_was_saved)
2771 {
2772 a11_saved = xtensa_read_register (atreg);
2773 a11_was_saved = 1;
2774 }
2775
2776 xtensa_write_register (atreg, spilled_value);
2777}
2778
68d6df83 2779/* Simulate S32E instruction: AT --> ref (AS + offset). */
08b9c608
MG
2780static void
2781execute_s32e (struct gdbarch *gdbarch, int at, int as, int offset, CORE_ADDR wb)
2782{
2783 int atreg = arreg_number (gdbarch, gdbarch_tdep (gdbarch)->a0_base + at, wb);
2784 int asreg = arreg_number (gdbarch, gdbarch_tdep (gdbarch)->a0_base + as, wb);
2785 CORE_ADDR addr = xtensa_read_register (asreg) + offset;
2786 ULONGEST spilled_value = xtensa_read_register (atreg);
2787
2788 write_memory_unsigned_integer (addr, 4,
2789 gdbarch_byte_order (gdbarch),
2790 spilled_value);
2791}
2792
2793#define XTENSA_MAX_WINDOW_INTERRUPT_HANDLER_LEN 200
2794
68d6df83
MG
2795typedef enum
2796{
08b9c608
MG
2797 xtWindowOverflow,
2798 xtWindowUnderflow,
2799 xtNoExceptionHandler
2800} xtensa_exception_handler_t;
2801
68d6df83 2802/* Execute instruction stream from current PC until hitting RFWU or RFWO.
08b9c608
MG
2803 Return type of Xtensa Window Interrupt Handler on success. */
2804static xtensa_exception_handler_t
2805execute_code (struct gdbarch *gdbarch, CORE_ADDR current_pc, CORE_ADDR wb)
2806{
2807 xtensa_isa isa;
2808 xtensa_insnbuf ins, slot;
2809 char ibuf[XTENSA_ISA_BSZ];
2810 CORE_ADDR ia, bt, ba;
2811 xtensa_format ifmt;
2812 int ilen, islots, is;
2813 xtensa_opcode opc;
2814 int insn_num = 0;
2815 int fail = 0;
2816 void (*func) (struct gdbarch *, int, int, int, CORE_ADDR);
2817
2818 int at, as, offset;
2819 int num_operands;
2820
2821 /* WindowUnderflow12 = true, when inside _WindowUnderflow12. */
2822 int WindowUnderflow12 = (current_pc & 0x1ff) >= 0x140;
2823
2824 isa = xtensa_default_isa;
2825 gdb_assert (XTENSA_ISA_BSZ >= xtensa_isa_maxlength (isa));
2826 ins = xtensa_insnbuf_alloc (isa);
2827 slot = xtensa_insnbuf_alloc (isa);
2828 ba = 0;
2829 ia = current_pc;
2830 bt = ia;
2831
2832 a0_was_saved = 0;
2833 a7_was_saved = 0;
2834 a11_was_saved = 0;
2835
2836 while (insn_num++ < XTENSA_MAX_WINDOW_INTERRUPT_HANDLER_LEN)
2837 {
2838 if (ia + xtensa_isa_maxlength (isa) > bt)
2839 {
2840 ba = ia;
2841 bt = (ba + XTENSA_ISA_BSZ);
2842 if (target_read_memory (ba, ibuf, bt - ba) != 0)
2843 return xtNoExceptionHandler;
2844 }
2845 xtensa_insnbuf_from_chars (isa, ins, &ibuf[ia-ba], 0);
2846 ifmt = xtensa_format_decode (isa, ins);
2847 if (ifmt == XTENSA_UNDEFINED)
2848 return xtNoExceptionHandler;
2849 ilen = xtensa_format_length (isa, ifmt);
2850 if (ilen == XTENSA_UNDEFINED)
2851 return xtNoExceptionHandler;
2852 islots = xtensa_format_num_slots (isa, ifmt);
2853 if (islots == XTENSA_UNDEFINED)
2854 return xtNoExceptionHandler;
2855 for (is = 0; is < islots; ++is)
2856 {
2857 if (xtensa_format_get_slot (isa, ifmt, is, ins, slot))
2858 return xtNoExceptionHandler;
2859 opc = xtensa_opcode_decode (isa, ifmt, is, slot);
2860 if (opc == XTENSA_UNDEFINED)
2861 return xtNoExceptionHandler;
2862 switch (call0_classify_opcode (isa, opc))
2863 {
2864 case c0opc_illegal:
2865 case c0opc_flow:
2866 case c0opc_entry:
2867 case c0opc_break:
2868 /* We expect none of them here. */
2869 return xtNoExceptionHandler;
2870 case c0opc_l32e:
2871 func = execute_l32e;
2872 break;
2873 case c0opc_s32e:
2874 func = execute_s32e;
2875 break;
2876 case c0opc_rfwo: /* RFWO. */
2877 /* Here, we return from WindowOverflow handler and,
2878 if we stopped at the very beginning, which means
2879 A0 was saved, we have to restore it now. */
2880 if (a0_was_saved)
2881 {
2882 int arreg = arreg_number (gdbarch,
2883 gdbarch_tdep (gdbarch)->a0_base,
2884 wb);
2885 xtensa_write_register (arreg, a0_saved);
2886 }
2887 return xtWindowOverflow;
2888 case c0opc_rfwu: /* RFWU. */
2889 /* Here, we return from WindowUnderflow handler.
2890 Let's see if either A7 or A11 has to be restored. */
2891 if (WindowUnderflow12)
2892 {
2893 if (a11_was_saved)
2894 {
2895 int arreg = arreg_number (gdbarch,
2896 gdbarch_tdep (gdbarch)->a0_base + 11,
2897 wb);
2898 xtensa_write_register (arreg, a11_saved);
2899 }
2900 }
2901 else if (a7_was_saved)
2902 {
2903 int arreg = arreg_number (gdbarch,
2904 gdbarch_tdep (gdbarch)->a0_base + 7,
2905 wb);
2906 xtensa_write_register (arreg, a7_saved);
2907 }
2908 return xtWindowUnderflow;
2909 default: /* Simply skip this insns. */
2910 continue;
2911 }
2912
2913 /* Decode arguments for L32E / S32E and simulate their execution. */
2914 if ( xtensa_opcode_num_operands (isa, opc) != 3 )
2915 return xtNoExceptionHandler;
2916 if (xtensa_operand_get_field (isa, opc, 0, ifmt, is, slot, &at))
2917 return xtNoExceptionHandler;
2918 if (xtensa_operand_decode (isa, opc, 0, &at))
2919 return xtNoExceptionHandler;
2920 if (xtensa_operand_get_field (isa, opc, 1, ifmt, is, slot, &as))
2921 return xtNoExceptionHandler;
2922 if (xtensa_operand_decode (isa, opc, 1, &as))
2923 return xtNoExceptionHandler;
2924 if (xtensa_operand_get_field (isa, opc, 2, ifmt, is, slot, &offset))
2925 return xtNoExceptionHandler;
2926 if (xtensa_operand_decode (isa, opc, 2, &offset))
2927 return xtNoExceptionHandler;
2928
2929 (*func) (gdbarch, at, as, offset, wb);
2930 }
2931
2932 ia += ilen;
2933 }
2934 return xtNoExceptionHandler;
2935}
2936
2937/* Handle Window Overflow / Underflow exception frames. */
2938
2939static void
2940xtensa_window_interrupt_frame_cache (struct frame_info *this_frame,
2941 xtensa_frame_cache_t *cache,
2942 CORE_ADDR pc)
2943{
2944 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2945 CORE_ADDR ps, wb, ws, ra;
2946 int epc1_regnum, i, regnum;
2947 xtensa_exception_handler_t eh_type;
2948
2949 /* Read PS, WB, and WS from the hardware. Note that PS register
2950 must be present, if Windowed ABI is supported. */
2951 ps = xtensa_read_register (gdbarch_ps_regnum (gdbarch));
2952 wb = xtensa_read_register (gdbarch_tdep (gdbarch)->wb_regnum);
2953 ws = xtensa_read_register (gdbarch_tdep (gdbarch)->ws_regnum);
2954
2955 /* Execute all the remaining instructions from Window Interrupt Handler
2956 by simulating them on the remote protocol level. On return, set the
2957 type of Xtensa Window Interrupt Handler, or report an error. */
2958 eh_type = execute_code (gdbarch, pc, wb);
2959 if (eh_type == xtNoExceptionHandler)
2960 error (_("\
2961Unable to decode Xtensa Window Interrupt Handler's code."));
2962
2963 cache->ps = ps ^ PS_EXC; /* Clear the exception bit in PS. */
2964 cache->call0 = 0; /* It's Windowed ABI. */
2965
2966 /* All registers for the cached frame will be alive. */
2967 for (i = 0; i < XTENSA_NUM_SAVED_AREGS; i++)
2968 cache->wd.aregs[i] = -1;
2969
2970 if (eh_type == xtWindowOverflow)
2971 cache->wd.ws = ws ^ (1 << wb);
2972 else /* eh_type == xtWindowUnderflow. */
2973 cache->wd.ws = ws | (1 << wb);
2974
2975 cache->wd.wb = (ps & 0xf00) >> 8; /* Set WB to OWB. */
2976 regnum = arreg_number (gdbarch, gdbarch_tdep (gdbarch)->a0_base,
2977 cache->wd.wb);
2978 ra = xtensa_read_register (regnum);
2979 cache->wd.callsize = WINSIZE (ra);
2980 cache->prev_sp = xtensa_read_register (regnum + 1);
2981 /* Set regnum to a frame pointer of the frame being cached. */
2982 regnum = xtensa_scan_prologue (gdbarch, pc);
2983 regnum = arreg_number (gdbarch,
2984 gdbarch_tdep (gdbarch)->a0_base + regnum,
2985 cache->wd.wb);
2986 cache->base = get_frame_register_unsigned (this_frame, regnum);
2987
2988 /* Read PC of interrupted function from EPC1 register. */
2989 epc1_regnum = xtensa_find_register_by_name (gdbarch,"epc1");
2990 if (epc1_regnum < 0)
2991 error(_("Unable to read Xtensa register EPC1"));
2992 cache->ra = xtensa_read_register (epc1_regnum);
2993 cache->pc = get_frame_func (this_frame);
2994}
2995
bdb4c075
MG
2996
2997/* Skip function prologue.
2998
2999 Return the pc of the first instruction after prologue. GDB calls this to
3000 find the address of the first line of the function or (if there is no line
3001 number information) to skip the prologue for planting breakpoints on
3002 function entries. Use debug info (if present) or prologue analysis to skip
3003 the prologue to achieve reliable debugging behavior. For windowed ABI,
3004 only the 'entry' instruction is skipped. It is not strictly necessary to
3005 skip the prologue (Call0) or 'entry' (Windowed) because xt-gdb knows how to
3006 backtrace at any point in the prologue, however certain potential hazards
3007 are avoided and a more "normal" debugging experience is ensured by
3008 skipping the prologue (can be disabled by defining DONT_SKIP_PROLOG).
3009 For example, if we don't skip the prologue:
3010 - Some args may not yet have been saved to the stack where the debug
3011 info expects to find them (true anyway when only 'entry' is skipped);
3012 - Software breakpoints ('break' instrs) may not have been unplanted
3013 when the prologue analysis is done on initializing the frame cache,
3014 and breaks in the prologue will throw off the analysis.
ca3bf3bd
DJ
3015
3016 If we have debug info ( line-number info, in particular ) we simply skip
3017 the code associated with the first function line effectively skipping
bdb4c075 3018 the prologue code. It works even in cases like
ca3bf3bd
DJ
3019
3020 int main()
3021 { int local_var = 1;
3022 ....
3023 }
3024
3025 because, for this source code, both Xtensa compilers will generate two
3026 separate entries ( with the same line number ) in dwarf line-number
3027 section to make sure there is a boundary between the prologue code and
3028 the rest of the function.
3029
bdb4c075
MG
3030 If there is no debug info, we need to analyze the code. */
3031
3032/* #define DONT_SKIP_PROLOGUE */
ca3bf3bd 3033
63807e1d 3034static CORE_ADDR
6093d2eb 3035xtensa_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR start_pc)
ca3bf3bd 3036{
bdb4c075
MG
3037 struct symtab_and_line prologue_sal;
3038 CORE_ADDR body_pc;
3039
ca3bf3bd
DJ
3040 DEBUGTRACE ("xtensa_skip_prologue (start_pc = 0x%08x)\n", (int) start_pc);
3041
bdb4c075
MG
3042#if DONT_SKIP_PROLOGUE
3043 return start_pc;
3044#endif
3045
3046 /* Try to find first body line from debug info. */
3047
3048 prologue_sal = find_pc_line (start_pc, 0);
3049 if (prologue_sal.line != 0) /* Found debug info. */
ca3bf3bd 3050 {
f976a05d
MG
3051 /* In Call0, it is possible to have a function with only one instruction
3052 ('ret') resulting from a one-line optimized function that does nothing.
3053 In that case, prologue_sal.end may actually point to the start of the
3054 next function in the text section, causing a breakpoint to be set at
3055 the wrong place. Check, if the end address is within a different
3056 function, and if so return the start PC. We know we have symbol
3057 information. */
ca3bf3bd 3058
bdb4c075
MG
3059 CORE_ADDR end_func;
3060
f976a05d
MG
3061 if ((gdbarch_tdep (gdbarch)->call_abi == CallAbiCall0Only)
3062 && call0_ret (start_pc, prologue_sal.end))
3063 return start_pc;
3064
bdb4c075
MG
3065 find_pc_partial_function (prologue_sal.end, NULL, &end_func, NULL);
3066 if (end_func != start_pc)
ca3bf3bd
DJ
3067 return start_pc;
3068
bdb4c075 3069 return prologue_sal.end;
ca3bf3bd 3070 }
ca3bf3bd 3071
bdb4c075 3072 /* No debug line info. Analyze prologue for Call0 or simply skip ENTRY. */
dbab50de
MG
3073 body_pc = call0_analyze_prologue (gdbarch, start_pc, 0, 0,
3074 xtensa_alloc_frame_cache (0));
bdb4c075
MG
3075 return body_pc != 0 ? body_pc : start_pc;
3076}
ca3bf3bd
DJ
3077
3078/* Verify the current configuration. */
ca3bf3bd
DJ
3079static void
3080xtensa_verify_config (struct gdbarch *gdbarch)
3081{
3082 struct ui_file *log;
3083 struct cleanup *cleanups;
3084 struct gdbarch_tdep *tdep;
759ef836 3085 long length;
ca3bf3bd
DJ
3086 char *buf;
3087
3088 tdep = gdbarch_tdep (gdbarch);
3089 log = mem_fileopen ();
3090 cleanups = make_cleanup_ui_file_delete (log);
3091
3092 /* Verify that we got a reasonable number of AREGS. */
3093 if ((tdep->num_aregs & -tdep->num_aregs) != tdep->num_aregs)
bdb4c075
MG
3094 fprintf_unfiltered (log, _("\
3095\n\tnum_aregs: Number of AR registers (%d) is not a power of two!"),
3096 tdep->num_aregs);
ca3bf3bd
DJ
3097
3098 /* Verify that certain registers exist. */
bdb4c075 3099
ca3bf3bd 3100 if (tdep->pc_regnum == -1)
bdb4c075
MG
3101 fprintf_unfiltered (log, _("\n\tpc_regnum: No PC register"));
3102 if (tdep->isa_use_exceptions && tdep->ps_regnum == -1)
3103 fprintf_unfiltered (log, _("\n\tps_regnum: No PS register"));
3104
3105 if (tdep->isa_use_windowed_registers)
3106 {
3107 if (tdep->wb_regnum == -1)
3108 fprintf_unfiltered (log, _("\n\twb_regnum: No WB register"));
3109 if (tdep->ws_regnum == -1)
3110 fprintf_unfiltered (log, _("\n\tws_regnum: No WS register"));
3111 if (tdep->ar_base == -1)
3112 fprintf_unfiltered (log, _("\n\tar_base: No AR registers"));
3113 }
3114
ca3bf3bd 3115 if (tdep->a0_base == -1)
bdb4c075 3116 fprintf_unfiltered (log, _("\n\ta0_base: No Ax registers"));
ca3bf3bd 3117
759ef836 3118 buf = ui_file_xstrdup (log, &length);
ca3bf3bd 3119 make_cleanup (xfree, buf);
759ef836 3120 if (length > 0)
ca3bf3bd
DJ
3121 internal_error (__FILE__, __LINE__,
3122 _("the following are invalid: %s"), buf);
3123 do_cleanups (cleanups);
3124}
3125
94a0e877
MG
3126
3127/* Derive specific register numbers from the array of registers. */
3128
63807e1d 3129static void
94a0e877
MG
3130xtensa_derive_tdep (struct gdbarch_tdep *tdep)
3131{
3132 xtensa_register_t* rmap;
3133 int n, max_size = 4;
3134
3135 tdep->num_regs = 0;
3136 tdep->num_nopriv_regs = 0;
3137
3138/* Special registers 0..255 (core). */
3139#define XTENSA_DBREGN_SREG(n) (0x0200+(n))
3140
3141 for (rmap = tdep->regmap, n = 0; rmap->target_number != -1; n++, rmap++)
3142 {
3143 if (rmap->target_number == 0x0020)
3144 tdep->pc_regnum = n;
3145 else if (rmap->target_number == 0x0100)
3146 tdep->ar_base = n;
3147 else if (rmap->target_number == 0x0000)
3148 tdep->a0_base = n;
3149 else if (rmap->target_number == XTENSA_DBREGN_SREG(72))
3150 tdep->wb_regnum = n;
3151 else if (rmap->target_number == XTENSA_DBREGN_SREG(73))
3152 tdep->ws_regnum = n;
3153 else if (rmap->target_number == XTENSA_DBREGN_SREG(233))
3154 tdep->debugcause_regnum = n;
3155 else if (rmap->target_number == XTENSA_DBREGN_SREG(232))
3156 tdep->exccause_regnum = n;
3157 else if (rmap->target_number == XTENSA_DBREGN_SREG(238))
3158 tdep->excvaddr_regnum = n;
3159 else if (rmap->target_number == XTENSA_DBREGN_SREG(0))
3160 tdep->lbeg_regnum = n;
3161 else if (rmap->target_number == XTENSA_DBREGN_SREG(1))
3162 tdep->lend_regnum = n;
3163 else if (rmap->target_number == XTENSA_DBREGN_SREG(2))
3164 tdep->lcount_regnum = n;
3165 else if (rmap->target_number == XTENSA_DBREGN_SREG(3))
3166 tdep->sar_regnum = n;
3167 else if (rmap->target_number == XTENSA_DBREGN_SREG(5))
3168 tdep->litbase_regnum = n;
3169 else if (rmap->target_number == XTENSA_DBREGN_SREG(230))
3170 tdep->ps_regnum = n;
3171#if 0
3172 else if (rmap->target_number == XTENSA_DBREGN_SREG(226))
3173 tdep->interrupt_regnum = n;
3174 else if (rmap->target_number == XTENSA_DBREGN_SREG(227))
3175 tdep->interrupt2_regnum = n;
3176 else if (rmap->target_number == XTENSA_DBREGN_SREG(224))
3177 tdep->cpenable_regnum = n;
3178#endif
3179
3180 if (rmap->byte_size > max_size)
3181 max_size = rmap->byte_size;
3182 if (rmap->mask != 0 && tdep->num_regs == 0)
3183 tdep->num_regs = n;
3184 /* Find out out how to deal with priveleged registers.
3185
3186 if ((rmap->flags & XTENSA_REGISTER_FLAGS_PRIVILEGED) != 0
3187 && tdep->num_nopriv_regs == 0)
3188 tdep->num_nopriv_regs = n;
3189 */
3190 if ((rmap->flags & XTENSA_REGISTER_FLAGS_PRIVILEGED) != 0
3191 && tdep->num_regs == 0)
3192 tdep->num_regs = n;
3193 }
3194
3195 /* Number of pseudo registers. */
3196 tdep->num_pseudo_regs = n - tdep->num_regs;
3197
3198 /* Empirically determined maximum sizes. */
3199 tdep->max_register_raw_size = max_size;
3200 tdep->max_register_virtual_size = max_size;
3201}
3202
ca3bf3bd
DJ
3203/* Module "constructor" function. */
3204
94a0e877
MG
3205extern struct gdbarch_tdep xtensa_tdep;
3206
ca3bf3bd
DJ
3207static struct gdbarch *
3208xtensa_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
3209{
3210 struct gdbarch_tdep *tdep;
3211 struct gdbarch *gdbarch;
3212 struct xtensa_abi_handler *abi_handler;
3213
3214 DEBUGTRACE ("gdbarch_init()\n");
3215
3216 /* We have to set the byte order before we call gdbarch_alloc. */
94a0e877 3217 info.byte_order = XCHAL_HAVE_BE ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE;
ca3bf3bd 3218
94a0e877 3219 tdep = &xtensa_tdep;
ca3bf3bd 3220 gdbarch = gdbarch_alloc (&info, tdep);
94a0e877 3221 xtensa_derive_tdep (tdep);
ca3bf3bd
DJ
3222
3223 /* Verify our configuration. */
3224 xtensa_verify_config (gdbarch);
dbab50de 3225 xtensa_session_once_reported = 0;
ca3bf3bd 3226
bdb4c075 3227 /* Pseudo-Register read/write. */
ca3bf3bd
DJ
3228 set_gdbarch_pseudo_register_read (gdbarch, xtensa_pseudo_register_read);
3229 set_gdbarch_pseudo_register_write (gdbarch, xtensa_pseudo_register_write);
3230
3231 /* Set target information. */
3232 set_gdbarch_num_regs (gdbarch, tdep->num_regs);
3233 set_gdbarch_num_pseudo_regs (gdbarch, tdep->num_pseudo_regs);
3234 set_gdbarch_sp_regnum (gdbarch, tdep->a0_base + 1);
3235 set_gdbarch_pc_regnum (gdbarch, tdep->pc_regnum);
3236 set_gdbarch_ps_regnum (gdbarch, tdep->ps_regnum);
3237
ba2b1c56 3238 /* Renumber registers for known formats (stabs and dwarf2). */
ca3bf3bd 3239 set_gdbarch_stab_reg_to_regnum (gdbarch, xtensa_reg_to_regnum);
ca3bf3bd
DJ
3240 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, xtensa_reg_to_regnum);
3241
3242 /* We provide our own function to get register information. */
3243 set_gdbarch_register_name (gdbarch, xtensa_register_name);
3244 set_gdbarch_register_type (gdbarch, xtensa_register_type);
3245
581e13c1 3246 /* To call functions from GDB using dummy frame. */
ca3bf3bd
DJ
3247 set_gdbarch_push_dummy_call (gdbarch, xtensa_push_dummy_call);
3248
3249 set_gdbarch_believe_pcc_promotion (gdbarch, 1);
3250
3251 set_gdbarch_return_value (gdbarch, xtensa_return_value);
3252
3253 /* Advance PC across any prologue instructions to reach "real" code. */
3254 set_gdbarch_skip_prologue (gdbarch, xtensa_skip_prologue);
3255
3256 /* Stack grows downward. */
3257 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
3258
3259 /* Set breakpoints. */
3260 set_gdbarch_breakpoint_from_pc (gdbarch, xtensa_breakpoint_from_pc);
3261
3262 /* After breakpoint instruction or illegal instruction, pc still
3263 points at break instruction, so don't decrement. */
3264 set_gdbarch_decr_pc_after_break (gdbarch, 0);
3265
3266 /* We don't skip args. */
3267 set_gdbarch_frame_args_skip (gdbarch, 0);
3268
3269 set_gdbarch_unwind_pc (gdbarch, xtensa_unwind_pc);
3270
3271 set_gdbarch_frame_align (gdbarch, xtensa_frame_align);
3272
5142f611 3273 set_gdbarch_dummy_id (gdbarch, xtensa_dummy_id);
ca3bf3bd
DJ
3274
3275 /* Frame handling. */
3276 frame_base_set_default (gdbarch, &xtensa_frame_base);
5142f611
MG
3277 frame_unwind_append_unwinder (gdbarch, &xtensa_unwind);
3278 dwarf2_append_unwinders (gdbarch);
ca3bf3bd
DJ
3279
3280 set_gdbarch_print_insn (gdbarch, print_insn_xtensa);
3281
3282 set_gdbarch_have_nonsteppable_watchpoint (gdbarch, 1);
3283
3284 xtensa_add_reggroups (gdbarch);
3285 set_gdbarch_register_reggroup_p (gdbarch, xtensa_register_reggroup_p);
3286
3287 set_gdbarch_regset_from_core_section (gdbarch,
3288 xtensa_regset_from_core_section);
3289
ee967b5f
MG
3290 set_solib_svr4_fetch_link_map_offsets
3291 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
3292
ca3bf3bd
DJ
3293 return gdbarch;
3294}
3295
ca3bf3bd 3296static void
6b50c0b0 3297xtensa_dump_tdep (struct gdbarch *gdbarch, struct ui_file *file)
ca3bf3bd
DJ
3298{
3299 error (_("xtensa_dump_tdep(): not implemented"));
3300}
3301
63807e1d
PA
3302/* Provide a prototype to silence -Wmissing-prototypes. */
3303extern initialize_file_ftype _initialize_xtensa_tdep;
3304
ca3bf3bd
DJ
3305void
3306_initialize_xtensa_tdep (void)
3307{
3308 struct cmd_list_element *c;
3309
3310 gdbarch_register (bfd_arch_xtensa, xtensa_gdbarch_init, xtensa_dump_tdep);
3311 xtensa_init_reggroups ();
3312
3313 add_setshow_zinteger_cmd ("xtensa",
3314 class_maintenance,
581e13c1
MS
3315 &xtensa_debug_level,
3316 _("Set Xtensa debugging."),
3317 _("Show Xtensa debugging."), _("\
ca3bf3bd
DJ
3318When non-zero, Xtensa-specific debugging is enabled. \
3319Can be 1, 2, 3, or 4 indicating the level of debugging."),
3320 NULL,
3321 NULL,
3322 &setdebuglist, &showdebuglist);
3323}
This page took 0.748734 seconds and 4 git commands to generate.