* lib/gdb.exp (gdb_compile_test): New.
[deliverable/binutils-gdb.git] / gdb / avr-tdep.c
CommitLineData
8818c391 1/* Target-dependent code for Atmel AVR, for GDB.
0fd88904 2
6aba47ca 3 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
0fb0cc75 4 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
8818c391
TR
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
8818c391
TR
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
8818c391 20
de18ac1f 21/* Contributed by Theodore A. Roth, troth@openavr.org */
8818c391
TR
22
23/* Portions of this file were taken from the original gdb-4.18 patch developed
24 by Denis Chertykov, denisc@overta.ru */
25
26#include "defs.h"
4add8633
TR
27#include "frame.h"
28#include "frame-unwind.h"
29#include "frame-base.h"
30#include "trad-frame.h"
8818c391
TR
31#include "gdbcmd.h"
32#include "gdbcore.h"
e6bb342a 33#include "gdbtypes.h"
8818c391
TR
34#include "inferior.h"
35#include "symfile.h"
36#include "arch-utils.h"
37#include "regcache.h"
5f8a3188 38#include "gdb_string.h"
a89aa300 39#include "dis-asm.h"
8818c391
TR
40
41/* AVR Background:
42
43 (AVR micros are pure Harvard Architecture processors.)
44
45 The AVR family of microcontrollers have three distinctly different memory
46 spaces: flash, sram and eeprom. The flash is 16 bits wide and is used for
47 the most part to store program instructions. The sram is 8 bits wide and is
48 used for the stack and the heap. Some devices lack sram and some can have
49 an additional external sram added on as a peripheral.
50
51 The eeprom is 8 bits wide and is used to store data when the device is
52 powered down. Eeprom is not directly accessible, it can only be accessed
53 via io-registers using a special algorithm. Accessing eeprom via gdb's
54 remote serial protocol ('m' or 'M' packets) looks difficult to do and is
55 not included at this time.
56
57 [The eeprom could be read manually via ``x/b <eaddr + AVR_EMEM_START>'' or
58 written using ``set {unsigned char}<eaddr + AVR_EMEM_START>''. For this to
59 work, the remote target must be able to handle eeprom accesses and perform
60 the address translation.]
61
62 All three memory spaces have physical addresses beginning at 0x0. In
63 addition, the flash is addressed by gcc/binutils/gdb with respect to 8 bit
64 bytes instead of the 16 bit wide words used by the real device for the
65 Program Counter.
66
67 In order for remote targets to work correctly, extra bits must be added to
68 addresses before they are send to the target or received from the target
69 via the remote serial protocol. The extra bits are the MSBs and are used to
70 decode which memory space the address is referring to. */
71
72#undef XMALLOC
73#define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
74
8818c391
TR
75/* Constants: prefixed with AVR_ to avoid name space clashes */
76
77enum
2e5ff58c
TR
78{
79 AVR_REG_W = 24,
80 AVR_REG_X = 26,
81 AVR_REG_Y = 28,
82 AVR_FP_REGNUM = 28,
83 AVR_REG_Z = 30,
84
85 AVR_SREG_REGNUM = 32,
86 AVR_SP_REGNUM = 33,
87 AVR_PC_REGNUM = 34,
88
89 AVR_NUM_REGS = 32 + 1 /*SREG*/ + 1 /*SP*/ + 1 /*PC*/,
90 AVR_NUM_REG_BYTES = 32 + 1 /*SREG*/ + 2 /*SP*/ + 4 /*PC*/,
91
92 AVR_PC_REG_INDEX = 35, /* index into array of registers */
93
4add8633 94 AVR_MAX_PROLOGUE_SIZE = 64, /* bytes */
2e5ff58c
TR
95
96 /* Count of pushed registers. From r2 to r17 (inclusively), r28, r29 */
97 AVR_MAX_PUSHES = 18,
98
99 /* Number of the last pushed register. r17 for current avr-gcc */
100 AVR_LAST_PUSHED_REGNUM = 17,
101
4add8633
TR
102 AVR_ARG1_REGNUM = 24, /* Single byte argument */
103 AVR_ARGN_REGNUM = 25, /* Multi byte argments */
104
105 AVR_RET1_REGNUM = 24, /* Single byte return value */
106 AVR_RETN_REGNUM = 25, /* Multi byte return value */
107
2e5ff58c
TR
108 /* FIXME: TRoth/2002-01-??: Can we shift all these memory masks left 8
109 bits? Do these have to match the bfd vma values?. It sure would make
110 things easier in the future if they didn't need to match.
111
112 Note: I chose these values so as to be consistent with bfd vma
113 addresses.
114
115 TRoth/2002-04-08: There is already a conflict with very large programs
116 in the mega128. The mega128 has 128K instruction bytes (64K words),
117 thus the Most Significant Bit is 0x10000 which gets masked off my
118 AVR_MEM_MASK.
119
120 The problem manifests itself when trying to set a breakpoint in a
121 function which resides in the upper half of the instruction space and
122 thus requires a 17-bit address.
123
124 For now, I've just removed the EEPROM mask and changed AVR_MEM_MASK
125 from 0x00ff0000 to 0x00f00000. Eeprom is not accessible from gdb yet,
126 but could be for some remote targets by just adding the correct offset
127 to the address and letting the remote target handle the low-level
128 details of actually accessing the eeprom. */
129
130 AVR_IMEM_START = 0x00000000, /* INSN memory */
131 AVR_SMEM_START = 0x00800000, /* SRAM memory */
8818c391 132#if 1
2e5ff58c
TR
133 /* No eeprom mask defined */
134 AVR_MEM_MASK = 0x00f00000, /* mask to determine memory space */
8818c391 135#else
2e5ff58c
TR
136 AVR_EMEM_START = 0x00810000, /* EEPROM memory */
137 AVR_MEM_MASK = 0x00ff0000, /* mask to determine memory space */
8818c391 138#endif
2e5ff58c 139};
8818c391 140
4add8633
TR
141/* Prologue types:
142
143 NORMAL and CALL are the typical types (the -mcall-prologues gcc option
144 causes the generation of the CALL type prologues). */
145
146enum {
147 AVR_PROLOGUE_NONE, /* No prologue */
148 AVR_PROLOGUE_NORMAL,
149 AVR_PROLOGUE_CALL, /* -mcall-prologues */
150 AVR_PROLOGUE_MAIN,
151 AVR_PROLOGUE_INTR, /* interrupt handler */
152 AVR_PROLOGUE_SIG, /* signal handler */
153};
154
8818c391
TR
155/* Any function with a frame looks like this
156 ....... <-SP POINTS HERE
157 LOCALS1 <-FP POINTS HERE
158 LOCALS0
159 SAVED FP
160 SAVED R3
161 SAVED R2
162 RET PC
163 FIRST ARG
164 SECOND ARG */
165
4add8633 166struct avr_unwind_cache
2e5ff58c 167{
4add8633
TR
168 /* The previous frame's inner most stack address. Used as this
169 frame ID's stack_addr. */
170 CORE_ADDR prev_sp;
171 /* The frame's base, optionally used by the high-level debug info. */
172 CORE_ADDR base;
173 int size;
174 int prologue_type;
175 /* Table indicating the location of each and every register. */
176 struct trad_frame_saved_reg *saved_regs;
2e5ff58c 177};
8818c391
TR
178
179struct gdbarch_tdep
2e5ff58c 180{
4e99ad69
TG
181 /* Number of bytes stored to the stack by call instructions.
182 2 bytes for avr1-5, 3 bytes for avr6. */
183 int call_length;
2e5ff58c 184};
8818c391
TR
185
186/* Lookup the name of a register given it's number. */
187
fa88f677 188static const char *
d93859e2 189avr_register_name (struct gdbarch *gdbarch, int regnum)
8818c391 190{
4e99ad69 191 static const char * const register_names[] = {
2e5ff58c
TR
192 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
193 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
8818c391
TR
194 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
195 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
196 "SREG", "SP", "PC"
197 };
198 if (regnum < 0)
199 return NULL;
200 if (regnum >= (sizeof (register_names) / sizeof (*register_names)))
201 return NULL;
202 return register_names[regnum];
203}
204
8818c391
TR
205/* Return the GDB type object for the "standard" data type
206 of data in register N. */
207
208static struct type *
866b76ea 209avr_register_type (struct gdbarch *gdbarch, int reg_nr)
8818c391 210{
866b76ea 211 if (reg_nr == AVR_PC_REGNUM)
df4df182 212 return builtin_type (gdbarch)->builtin_uint32;
866b76ea 213 if (reg_nr == AVR_SP_REGNUM)
0dfff4cb 214 return builtin_type (gdbarch)->builtin_data_ptr;
866b76ea 215 else
df4df182 216 return builtin_type (gdbarch)->builtin_uint8;
8818c391
TR
217}
218
219/* Instruction address checks and convertions. */
220
221static CORE_ADDR
222avr_make_iaddr (CORE_ADDR x)
223{
224 return ((x) | AVR_IMEM_START);
225}
226
8818c391
TR
227/* FIXME: TRoth: Really need to use a larger mask for instructions. Some
228 devices are already up to 128KBytes of flash space.
229
230 TRoth/2002-04-8: See comment above where AVR_IMEM_START is defined. */
231
232static CORE_ADDR
233avr_convert_iaddr_to_raw (CORE_ADDR x)
234{
235 return ((x) & 0xffffffff);
236}
237
238/* SRAM address checks and convertions. */
239
240static CORE_ADDR
241avr_make_saddr (CORE_ADDR x)
242{
ee143e81
TG
243 /* Return 0 for NULL. */
244 if (x == 0)
245 return 0;
246
8818c391
TR
247 return ((x) | AVR_SMEM_START);
248}
249
8818c391
TR
250static CORE_ADDR
251avr_convert_saddr_to_raw (CORE_ADDR x)
252{
253 return ((x) & 0xffffffff);
254}
255
256/* EEPROM address checks and convertions. I don't know if these will ever
257 actually be used, but I've added them just the same. TRoth */
258
259/* TRoth/2002-04-08: Commented out for now to allow fix for problem with large
260 programs in the mega128. */
261
262/* static CORE_ADDR */
263/* avr_make_eaddr (CORE_ADDR x) */
264/* { */
265/* return ((x) | AVR_EMEM_START); */
266/* } */
267
268/* static int */
269/* avr_eaddr_p (CORE_ADDR x) */
270/* { */
271/* return (((x) & AVR_MEM_MASK) == AVR_EMEM_START); */
272/* } */
273
274/* static CORE_ADDR */
275/* avr_convert_eaddr_to_raw (CORE_ADDR x) */
276/* { */
277/* return ((x) & 0xffffffff); */
278/* } */
279
280/* Convert from address to pointer and vice-versa. */
281
282static void
9898f801
UW
283avr_address_to_pointer (struct gdbarch *gdbarch,
284 struct type *type, gdb_byte *buf, CORE_ADDR addr)
8818c391 285{
e17a4113
UW
286 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
287
8818c391
TR
288 /* Is it a code address? */
289 if (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_FUNC
290 || TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_METHOD)
291 {
e17a4113 292 store_unsigned_integer (buf, TYPE_LENGTH (type), byte_order,
4ea2465e 293 avr_convert_iaddr_to_raw (addr >> 1));
8818c391
TR
294 }
295 else
296 {
297 /* Strip off any upper segment bits. */
e17a4113 298 store_unsigned_integer (buf, TYPE_LENGTH (type), byte_order,
2e5ff58c 299 avr_convert_saddr_to_raw (addr));
8818c391
TR
300 }
301}
302
303static CORE_ADDR
9898f801
UW
304avr_pointer_to_address (struct gdbarch *gdbarch,
305 struct type *type, const gdb_byte *buf)
8818c391 306{
e17a4113
UW
307 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
308 CORE_ADDR addr
309 = extract_unsigned_integer (buf, TYPE_LENGTH (type), byte_order);
8818c391 310
8818c391
TR
311 /* Is it a code address? */
312 if (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_FUNC
313 || TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_METHOD
2e5ff58c 314 || TYPE_CODE_SPACE (TYPE_TARGET_TYPE (type)))
4ea2465e 315 return avr_make_iaddr (addr << 1);
8818c391
TR
316 else
317 return avr_make_saddr (addr);
318}
319
320static CORE_ADDR
61a1198a 321avr_read_pc (struct regcache *regcache)
8818c391 322{
8619218d 323 ULONGEST pc;
61a1198a
UW
324 regcache_cooked_read_unsigned (regcache, AVR_PC_REGNUM, &pc);
325 return avr_make_iaddr (pc);
8818c391
TR
326}
327
328static void
61a1198a 329avr_write_pc (struct regcache *regcache, CORE_ADDR val)
8818c391 330{
61a1198a
UW
331 regcache_cooked_write_unsigned (regcache, AVR_PC_REGNUM,
332 avr_convert_iaddr_to_raw (val));
8818c391
TR
333}
334
4add8633 335/* Function: avr_scan_prologue
8818c391 336
4add8633 337 This function decodes an AVR function prologue to determine:
8818c391
TR
338 1) the size of the stack frame
339 2) which registers are saved on it
340 3) the offsets of saved regs
4add8633 341 This information is stored in the avr_unwind_cache structure.
8818c391 342
e3d8b004
TR
343 Some devices lack the sbiw instruction, so on those replace this:
344 sbiw r28, XX
345 with this:
346 subi r28,lo8(XX)
347 sbci r29,hi8(XX)
348
349 A typical AVR function prologue with a frame pointer might look like this:
350 push rXX ; saved regs
351 ...
352 push r28
353 push r29
354 in r28,__SP_L__
355 in r29,__SP_H__
356 sbiw r28,<LOCALS_SIZE>
357 in __tmp_reg__,__SREG__
8818c391 358 cli
e3d8b004 359 out __SP_H__,r29
72fab697
TR
360 out __SREG__,__tmp_reg__
361 out __SP_L__,r28
e3d8b004
TR
362
363 A typical AVR function prologue without a frame pointer might look like
364 this:
365 push rXX ; saved regs
366 ...
367
368 A main function prologue looks like this:
369 ldi r28,lo8(<RAM_ADDR> - <LOCALS_SIZE>)
370 ldi r29,hi8(<RAM_ADDR> - <LOCALS_SIZE>)
371 out __SP_H__,r29
372 out __SP_L__,r28
373
374 A signal handler prologue looks like this:
375 push __zero_reg__
376 push __tmp_reg__
377 in __tmp_reg__, __SREG__
378 push __tmp_reg__
379 clr __zero_reg__
380 push rXX ; save registers r18:r27, r30:r31
381 ...
382 push r28 ; save frame pointer
383 push r29
384 in r28, __SP_L__
385 in r29, __SP_H__
386 sbiw r28, <LOCALS_SIZE>
387 out __SP_H__, r29
388 out __SP_L__, r28
389
390 A interrupt handler prologue looks like this:
391 sei
392 push __zero_reg__
393 push __tmp_reg__
394 in __tmp_reg__, __SREG__
395 push __tmp_reg__
396 clr __zero_reg__
397 push rXX ; save registers r18:r27, r30:r31
398 ...
399 push r28 ; save frame pointer
400 push r29
401 in r28, __SP_L__
402 in r29, __SP_H__
403 sbiw r28, <LOCALS_SIZE>
404 cli
405 out __SP_H__, r29
406 sei
407 out __SP_L__, r28
408
409 A `-mcall-prologues' prologue looks like this (Note that the megas use a
410 jmp instead of a rjmp, thus the prologue is one word larger since jmp is a
411 32 bit insn and rjmp is a 16 bit insn):
412 ldi r26,lo8(<LOCALS_SIZE>)
413 ldi r27,hi8(<LOCALS_SIZE>)
414 ldi r30,pm_lo8(.L_foo_body)
415 ldi r31,pm_hi8(.L_foo_body)
416 rjmp __prologue_saves__+RRR
417 .L_foo_body: */
8818c391 418
4add8633
TR
419/* Not really part of a prologue, but still need to scan for it, is when a
420 function prologue moves values passed via registers as arguments to new
421 registers. In this case, all local variables live in registers, so there
422 may be some register saves. This is what it looks like:
423 movw rMM, rNN
424 ...
425
426 There could be multiple movw's. If the target doesn't have a movw insn, it
427 will use two mov insns. This could be done after any of the above prologue
428 types. */
429
430static CORE_ADDR
e17a4113 431avr_scan_prologue (struct gdbarch *gdbarch, CORE_ADDR pc_beg, CORE_ADDR pc_end,
4e99ad69 432 struct avr_unwind_cache *info)
8818c391 433{
e17a4113 434 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2e5ff58c
TR
435 int i;
436 unsigned short insn;
2e5ff58c 437 int scan_stage = 0;
8818c391 438 struct minimal_symbol *msymbol;
8818c391
TR
439 unsigned char prologue[AVR_MAX_PROLOGUE_SIZE];
440 int vpc = 0;
4e99ad69
TG
441 int len;
442
443 len = pc_end - pc_beg;
444 if (len > AVR_MAX_PROLOGUE_SIZE)
445 len = AVR_MAX_PROLOGUE_SIZE;
8818c391 446
4add8633
TR
447 /* FIXME: TRoth/2003-06-11: This could be made more efficient by only
448 reading in the bytes of the prologue. The problem is that the figuring
449 out where the end of the prologue is is a bit difficult. The old code
450 tried to do that, but failed quite often. */
4e99ad69 451 read_memory (pc_beg, prologue, len);
8818c391
TR
452
453 /* Scanning main()'s prologue
454 ldi r28,lo8(<RAM_ADDR> - <LOCALS_SIZE>)
455 ldi r29,hi8(<RAM_ADDR> - <LOCALS_SIZE>)
456 out __SP_H__,r29
457 out __SP_L__,r28 */
458
4e99ad69 459 if (len >= 4)
8818c391
TR
460 {
461 CORE_ADDR locals;
4e99ad69 462 static const unsigned char img[] = {
2e5ff58c
TR
463 0xde, 0xbf, /* out __SP_H__,r29 */
464 0xcd, 0xbf /* out __SP_L__,r28 */
8818c391
TR
465 };
466
e17a4113 467 insn = extract_unsigned_integer (&prologue[vpc], 2, byte_order);
8818c391 468 /* ldi r28,lo8(<RAM_ADDR> - <LOCALS_SIZE>) */
2e5ff58c
TR
469 if ((insn & 0xf0f0) == 0xe0c0)
470 {
471 locals = (insn & 0xf) | ((insn & 0x0f00) >> 4);
e17a4113 472 insn = extract_unsigned_integer (&prologue[vpc + 2], 2, byte_order);
2e5ff58c
TR
473 /* ldi r29,hi8(<RAM_ADDR> - <LOCALS_SIZE>) */
474 if ((insn & 0xf0f0) == 0xe0d0)
475 {
476 locals |= ((insn & 0xf) | ((insn & 0x0f00) >> 4)) << 8;
4e99ad69
TG
477 if (vpc + 4 + sizeof (img) < len
478 && memcmp (prologue + vpc + 4, img, sizeof (img)) == 0)
2e5ff58c 479 {
4add8633
TR
480 info->prologue_type = AVR_PROLOGUE_MAIN;
481 info->base = locals;
4e99ad69 482 return pc_beg + 4;
2e5ff58c
TR
483 }
484 }
485 }
8818c391 486 }
2e5ff58c 487
4add8633
TR
488 /* Scanning `-mcall-prologues' prologue
489 Classic prologue is 10 bytes, mega prologue is a 12 bytes long */
8818c391 490
e3d8b004 491 while (1) /* Using a while to avoid many goto's */
8818c391
TR
492 {
493 int loc_size;
494 int body_addr;
495 unsigned num_pushes;
4add8633 496 int pc_offset = 0;
2e5ff58c 497
4e99ad69
TG
498 /* At least the fifth instruction must have been executed to
499 modify frame shape. */
500 if (len < 10)
501 break;
502
e17a4113 503 insn = extract_unsigned_integer (&prologue[vpc], 2, byte_order);
8818c391 504 /* ldi r26,<LOCALS_SIZE> */
2e5ff58c
TR
505 if ((insn & 0xf0f0) != 0xe0a0)
506 break;
8818c391 507 loc_size = (insn & 0xf) | ((insn & 0x0f00) >> 4);
4add8633 508 pc_offset += 2;
2e5ff58c 509
e17a4113 510 insn = extract_unsigned_integer (&prologue[vpc + 2], 2, byte_order);
8818c391
TR
511 /* ldi r27,<LOCALS_SIZE> / 256 */
512 if ((insn & 0xf0f0) != 0xe0b0)
2e5ff58c 513 break;
8818c391 514 loc_size |= ((insn & 0xf) | ((insn & 0x0f00) >> 4)) << 8;
4add8633 515 pc_offset += 2;
2e5ff58c 516
e17a4113 517 insn = extract_unsigned_integer (&prologue[vpc + 4], 2, byte_order);
8818c391
TR
518 /* ldi r30,pm_lo8(.L_foo_body) */
519 if ((insn & 0xf0f0) != 0xe0e0)
2e5ff58c 520 break;
8818c391 521 body_addr = (insn & 0xf) | ((insn & 0x0f00) >> 4);
4add8633 522 pc_offset += 2;
8818c391 523
e17a4113 524 insn = extract_unsigned_integer (&prologue[vpc + 6], 2, byte_order);
8818c391
TR
525 /* ldi r31,pm_hi8(.L_foo_body) */
526 if ((insn & 0xf0f0) != 0xe0f0)
2e5ff58c 527 break;
8818c391 528 body_addr |= ((insn & 0xf) | ((insn & 0x0f00) >> 4)) << 8;
4add8633 529 pc_offset += 2;
8818c391 530
8818c391
TR
531 msymbol = lookup_minimal_symbol ("__prologue_saves__", NULL, NULL);
532 if (!msymbol)
2e5ff58c 533 break;
8818c391 534
e17a4113 535 insn = extract_unsigned_integer (&prologue[vpc + 8], 2, byte_order);
8818c391 536 /* rjmp __prologue_saves__+RRR */
e3d8b004
TR
537 if ((insn & 0xf000) == 0xc000)
538 {
539 /* Extract PC relative offset from RJMP */
540 i = (insn & 0xfff) | (insn & 0x800 ? (-1 ^ 0xfff) : 0);
541 /* Convert offset to byte addressable mode */
542 i *= 2;
543 /* Destination address */
4e99ad69 544 i += pc_beg + 10;
e3d8b004 545
4e99ad69 546 if (body_addr != (pc_beg + 10)/2)
e3d8b004 547 break;
4add8633
TR
548
549 pc_offset += 2;
e3d8b004 550 }
e3d8b004
TR
551 else if ((insn & 0xfe0e) == 0x940c)
552 {
553 /* Extract absolute PC address from JMP */
554 i = (((insn & 0x1) | ((insn & 0x1f0) >> 3) << 16)
e17a4113
UW
555 | (extract_unsigned_integer (&prologue[vpc + 10], 2, byte_order)
556 & 0xffff));
e3d8b004
TR
557 /* Convert address to byte addressable mode */
558 i *= 2;
559
4e99ad69 560 if (body_addr != (pc_beg + 12)/2)
e3d8b004 561 break;
4add8633
TR
562
563 pc_offset += 4;
e3d8b004
TR
564 }
565 else
566 break;
2e5ff58c 567
4add8633 568 /* Resolve offset (in words) from __prologue_saves__ symbol.
8818c391
TR
569 Which is a pushes count in `-mcall-prologues' mode */
570 num_pushes = AVR_MAX_PUSHES - (i - SYMBOL_VALUE_ADDRESS (msymbol)) / 2;
571
572 if (num_pushes > AVR_MAX_PUSHES)
4add8633 573 {
edefbb7c 574 fprintf_unfiltered (gdb_stderr, _("Num pushes too large: %d\n"),
4add8633
TR
575 num_pushes);
576 num_pushes = 0;
577 }
2e5ff58c 578
8818c391 579 if (num_pushes)
2e5ff58c
TR
580 {
581 int from;
4add8633
TR
582
583 info->saved_regs[AVR_FP_REGNUM + 1].addr = num_pushes;
2e5ff58c 584 if (num_pushes >= 2)
4add8633
TR
585 info->saved_regs[AVR_FP_REGNUM].addr = num_pushes - 1;
586
2e5ff58c
TR
587 i = 0;
588 for (from = AVR_LAST_PUSHED_REGNUM + 1 - (num_pushes - 2);
589 from <= AVR_LAST_PUSHED_REGNUM; ++from)
4add8633 590 info->saved_regs [from].addr = ++i;
2e5ff58c 591 }
4add8633
TR
592 info->size = loc_size + num_pushes;
593 info->prologue_type = AVR_PROLOGUE_CALL;
594
4e99ad69 595 return pc_beg + pc_offset;
8818c391
TR
596 }
597
4add8633
TR
598 /* Scan for the beginning of the prologue for an interrupt or signal
599 function. Note that we have to set the prologue type here since the
600 third stage of the prologue may not be present (e.g. no saved registered
601 or changing of the SP register). */
8818c391 602
4add8633 603 if (1)
8818c391 604 {
4e99ad69 605 static const unsigned char img[] = {
2e5ff58c
TR
606 0x78, 0x94, /* sei */
607 0x1f, 0x92, /* push r1 */
608 0x0f, 0x92, /* push r0 */
609 0x0f, 0xb6, /* in r0,0x3f SREG */
610 0x0f, 0x92, /* push r0 */
611 0x11, 0x24 /* clr r1 */
8818c391 612 };
4e99ad69
TG
613 if (len >= sizeof (img)
614 && memcmp (prologue, img, sizeof (img)) == 0)
2e5ff58c 615 {
4add8633 616 info->prologue_type = AVR_PROLOGUE_INTR;
2e5ff58c 617 vpc += sizeof (img);
4add8633
TR
618 info->saved_regs[AVR_SREG_REGNUM].addr = 3;
619 info->saved_regs[0].addr = 2;
620 info->saved_regs[1].addr = 1;
621 info->size += 3;
2e5ff58c 622 }
4e99ad69
TG
623 else if (len >= sizeof (img) - 2
624 && memcmp (img + 2, prologue, sizeof (img) - 2) == 0)
2e5ff58c 625 {
4add8633
TR
626 info->prologue_type = AVR_PROLOGUE_SIG;
627 vpc += sizeof (img) - 2;
628 info->saved_regs[AVR_SREG_REGNUM].addr = 3;
629 info->saved_regs[0].addr = 2;
630 info->saved_regs[1].addr = 1;
631 info->size += 3;
2e5ff58c 632 }
8818c391
TR
633 }
634
635 /* First stage of the prologue scanning.
4add8633 636 Scan pushes (saved registers) */
8818c391 637
4e99ad69 638 for (; vpc < len; vpc += 2)
8818c391 639 {
e17a4113 640 insn = extract_unsigned_integer (&prologue[vpc], 2, byte_order);
2e5ff58c
TR
641 if ((insn & 0xfe0f) == 0x920f) /* push rXX */
642 {
643 /* Bits 4-9 contain a mask for registers R0-R32. */
4add8633
TR
644 int regno = (insn & 0x1f0) >> 4;
645 info->size++;
646 info->saved_regs[regno].addr = info->size;
2e5ff58c
TR
647 scan_stage = 1;
648 }
8818c391 649 else
2e5ff58c 650 break;
8818c391
TR
651 }
652
4add8633
TR
653 if (vpc >= AVR_MAX_PROLOGUE_SIZE)
654 fprintf_unfiltered (gdb_stderr,
edefbb7c 655 _("Hit end of prologue while scanning pushes\n"));
4add8633 656
8818c391
TR
657 /* Second stage of the prologue scanning.
658 Scan:
659 in r28,__SP_L__
660 in r29,__SP_H__ */
661
4e99ad69 662 if (scan_stage == 1 && vpc < len)
8818c391 663 {
4e99ad69 664 static const unsigned char img[] = {
2e5ff58c
TR
665 0xcd, 0xb7, /* in r28,__SP_L__ */
666 0xde, 0xb7 /* in r29,__SP_H__ */
8818c391
TR
667 };
668 unsigned short insn1;
2e5ff58c 669
4e99ad69
TG
670 if (vpc + sizeof (img) < len
671 && memcmp (prologue + vpc, img, sizeof (img)) == 0)
2e5ff58c
TR
672 {
673 vpc += 4;
2e5ff58c
TR
674 scan_stage = 2;
675 }
8818c391
TR
676 }
677
678 /* Third stage of the prologue scanning. (Really two stages)
679 Scan for:
680 sbiw r28,XX or subi r28,lo8(XX)
72fab697 681 sbci r29,hi8(XX)
8818c391
TR
682 in __tmp_reg__,__SREG__
683 cli
e3d8b004 684 out __SP_H__,r29
8818c391 685 out __SREG__,__tmp_reg__
e3d8b004 686 out __SP_L__,r28 */
8818c391 687
4e99ad69 688 if (scan_stage == 2 && vpc < len)
8818c391
TR
689 {
690 int locals_size = 0;
4e99ad69 691 static const unsigned char img[] = {
2e5ff58c
TR
692 0x0f, 0xb6, /* in r0,0x3f */
693 0xf8, 0x94, /* cli */
e3d8b004 694 0xde, 0xbf, /* out 0x3e,r29 ; SPH */
2e5ff58c 695 0x0f, 0xbe, /* out 0x3f,r0 ; SREG */
e3d8b004 696 0xcd, 0xbf /* out 0x3d,r28 ; SPL */
8818c391 697 };
4e99ad69 698 static const unsigned char img_sig[] = {
e3d8b004
TR
699 0xde, 0xbf, /* out 0x3e,r29 ; SPH */
700 0xcd, 0xbf /* out 0x3d,r28 ; SPL */
8818c391 701 };
4e99ad69 702 static const unsigned char img_int[] = {
2e5ff58c 703 0xf8, 0x94, /* cli */
e3d8b004 704 0xde, 0xbf, /* out 0x3e,r29 ; SPH */
2e5ff58c 705 0x78, 0x94, /* sei */
e3d8b004 706 0xcd, 0xbf /* out 0x3d,r28 ; SPL */
8818c391 707 };
2e5ff58c 708
e17a4113 709 insn = extract_unsigned_integer (&prologue[vpc], 2, byte_order);
8818c391 710 vpc += 2;
2e5ff58c
TR
711 if ((insn & 0xff30) == 0x9720) /* sbiw r28,XXX */
712 locals_size = (insn & 0xf) | ((insn & 0xc0) >> 2);
713 else if ((insn & 0xf0f0) == 0x50c0) /* subi r28,lo8(XX) */
714 {
715 locals_size = (insn & 0xf) | ((insn & 0xf00) >> 4);
e17a4113 716 insn = extract_unsigned_integer (&prologue[vpc], 2, byte_order);
2e5ff58c
TR
717 vpc += 2;
718 locals_size += ((insn & 0xf) | ((insn & 0xf00) >> 4) << 8);
719 }
8818c391 720 else
4e99ad69 721 return pc_beg + vpc;
4add8633
TR
722
723 /* Scan the last part of the prologue. May not be present for interrupt
724 or signal handler functions, which is why we set the prologue type
725 when we saw the beginning of the prologue previously. */
726
4e99ad69
TG
727 if (vpc + sizeof (img_sig) < len
728 && memcmp (prologue + vpc, img_sig, sizeof (img_sig)) == 0)
4add8633
TR
729 {
730 vpc += sizeof (img_sig);
731 }
4e99ad69
TG
732 else if (vpc + sizeof (img_int) < len
733 && memcmp (prologue + vpc, img_int, sizeof (img_int)) == 0)
4add8633
TR
734 {
735 vpc += sizeof (img_int);
736 }
4e99ad69
TG
737 if (vpc + sizeof (img) < len
738 && memcmp (prologue + vpc, img, sizeof (img)) == 0)
4add8633
TR
739 {
740 info->prologue_type = AVR_PROLOGUE_NORMAL;
741 vpc += sizeof (img);
742 }
743
744 info->size += locals_size;
745
4e99ad69 746 /* Fall through. */
8818c391 747 }
4add8633
TR
748
749 /* If we got this far, we could not scan the prologue, so just return the pc
750 of the frame plus an adjustment for argument move insns. */
751
4e99ad69
TG
752 for (; vpc < len; vpc += 2)
753 {
e17a4113 754 insn = extract_unsigned_integer (&prologue[vpc], 2, byte_order);
4e99ad69
TG
755 if ((insn & 0xff00) == 0x0100) /* movw rXX, rYY */
756 continue;
757 else if ((insn & 0xfc00) == 0x2c00) /* mov rXX, rYY */
758 continue;
759 else
760 break;
761 }
762
763 return pc_beg + vpc;
8818c391
TR
764}
765
4add8633 766static CORE_ADDR
6093d2eb 767avr_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
4add8633
TR
768{
769 CORE_ADDR func_addr, func_end;
770 CORE_ADDR prologue_end = pc;
8818c391 771
4add8633 772 /* See what the symbol table says */
8818c391 773
4add8633
TR
774 if (find_pc_partial_function (pc, NULL, &func_addr, &func_end))
775 {
776 struct symtab_and_line sal;
777 struct avr_unwind_cache info = {0};
778 struct trad_frame_saved_reg saved_regs[AVR_NUM_REGS];
2e5ff58c 779
4add8633 780 info.saved_regs = saved_regs;
8818c391 781
4add8633
TR
782 /* Need to run the prologue scanner to figure out if the function has a
783 prologue and possibly skip over moving arguments passed via registers
784 to other registers. */
2e5ff58c 785
e17a4113 786 prologue_end = avr_scan_prologue (gdbarch, func_addr, func_end, &info);
8818c391 787
3b85b0f1
TR
788 if (info.prologue_type == AVR_PROLOGUE_NONE)
789 return pc;
790 else
4add8633
TR
791 {
792 sal = find_pc_line (func_addr, 0);
8818c391 793
4add8633
TR
794 if (sal.line != 0 && sal.end < func_end)
795 return sal.end;
796 }
797 }
2e5ff58c 798
4e99ad69
TG
799 /* Either we didn't find the start of this function (nothing we can do),
800 or there's no line info, or the line after the prologue is after
801 the end of the function (there probably isn't a prologue). */
2e5ff58c 802
4add8633
TR
803 return prologue_end;
804}
8818c391 805
4add8633
TR
806/* Not all avr devices support the BREAK insn. Those that don't should treat
807 it as a NOP. Thus, it should be ok. Since the avr is currently a remote
808 only target, this shouldn't be a problem (I hope). TRoth/2003-05-14 */
8818c391 809
4add8633 810static const unsigned char *
67d57894 811avr_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR * pcptr, int *lenptr)
4add8633 812{
4e99ad69 813 static const unsigned char avr_break_insn [] = { 0x98, 0x95 };
4add8633
TR
814 *lenptr = sizeof (avr_break_insn);
815 return avr_break_insn;
8818c391
TR
816}
817
4e99ad69 818/* Given a return value in `regcache' with a type `type',
4add8633
TR
819 extract and copy its value into `valbuf'.
820
821 Return values are always passed via registers r25:r24:... */
8818c391
TR
822
823static void
4add8633 824avr_extract_return_value (struct type *type, struct regcache *regcache,
1f3a99d5 825 gdb_byte *valbuf)
8818c391 826{
e17a4113
UW
827 struct gdbarch *gdbarch = get_regcache_arch (regcache);
828 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
4add8633
TR
829 ULONGEST r24, r25;
830 ULONGEST c;
831 int len;
832 if (TYPE_LENGTH (type) == 1)
8818c391 833 {
4add8633 834 regcache_cooked_read_unsigned (regcache, 24, &c);
e17a4113 835 store_unsigned_integer (valbuf, 1, byte_order, c);
8818c391
TR
836 }
837 else
838 {
4add8633
TR
839 int i;
840 /* The MSB of the return value is always in r25, calculate which
841 register holds the LSB. */
842 int lsb_reg = 25 - TYPE_LENGTH (type) + 1;
8818c391 843
4add8633
TR
844 for (i=0; i< TYPE_LENGTH (type); i++)
845 {
846 regcache_cooked_read (regcache, lsb_reg + i,
847 (bfd_byte *) valbuf + i);
4add8633
TR
848 }
849 }
850}
8818c391 851
4c8b6ae0
UW
852/* Determine, for architecture GDBARCH, how a return value of TYPE
853 should be returned. If it is supposed to be returned in registers,
854 and READBUF is non-zero, read the appropriate value from REGCACHE,
855 and copy it into READBUF. If WRITEBUF is non-zero, write the value
856 from WRITEBUF into REGCACHE. */
857
63807e1d 858static enum return_value_convention
c055b101
CV
859avr_return_value (struct gdbarch *gdbarch, struct type *func_type,
860 struct type *valtype, struct regcache *regcache,
861 gdb_byte *readbuf, const gdb_byte *writebuf)
4c8b6ae0
UW
862{
863 int struct_return = ((TYPE_CODE (valtype) == TYPE_CODE_STRUCT
864 || TYPE_CODE (valtype) == TYPE_CODE_UNION
865 || TYPE_CODE (valtype) == TYPE_CODE_ARRAY)
866 && !(TYPE_LENGTH (valtype) == 1
867 || TYPE_LENGTH (valtype) == 2
868 || TYPE_LENGTH (valtype) == 4
869 || TYPE_LENGTH (valtype) == 8));
870
871 if (writebuf != NULL)
872 {
873 gdb_assert (!struct_return);
874 error (_("Cannot store return value."));
875 }
876
877 if (readbuf != NULL)
878 {
879 gdb_assert (!struct_return);
880 avr_extract_return_value (valtype, regcache, readbuf);
881 }
882
883 if (struct_return)
884 return RETURN_VALUE_STRUCT_CONVENTION;
885 else
886 return RETURN_VALUE_REGISTER_CONVENTION;
887}
888
889
4add8633
TR
890/* Put here the code to store, into fi->saved_regs, the addresses of
891 the saved registers of frame described by FRAME_INFO. This
892 includes special registers such as pc and fp saved in special ways
893 in the stack frame. sp is even more special: the address we return
894 for it IS the sp for the next frame. */
8818c391 895
63807e1d 896static struct avr_unwind_cache *
94afd7a6 897avr_frame_unwind_cache (struct frame_info *this_frame,
4add8633 898 void **this_prologue_cache)
8818c391 899{
4e99ad69 900 CORE_ADDR start_pc, current_pc;
4add8633
TR
901 ULONGEST prev_sp;
902 ULONGEST this_base;
903 struct avr_unwind_cache *info;
4e99ad69
TG
904 struct gdbarch *gdbarch;
905 struct gdbarch_tdep *tdep;
4add8633
TR
906 int i;
907
4e99ad69
TG
908 if (*this_prologue_cache)
909 return *this_prologue_cache;
4add8633
TR
910
911 info = FRAME_OBSTACK_ZALLOC (struct avr_unwind_cache);
4e99ad69 912 *this_prologue_cache = info;
94afd7a6 913 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
4add8633
TR
914
915 info->size = 0;
916 info->prologue_type = AVR_PROLOGUE_NONE;
917
4e99ad69
TG
918 start_pc = get_frame_func (this_frame);
919 current_pc = get_frame_pc (this_frame);
920 if ((start_pc > 0) && (start_pc <= current_pc))
e17a4113
UW
921 avr_scan_prologue (get_frame_arch (this_frame),
922 start_pc, current_pc, info);
4add8633 923
3b85b0f1
TR
924 if ((info->prologue_type != AVR_PROLOGUE_NONE)
925 && (info->prologue_type != AVR_PROLOGUE_MAIN))
4add8633
TR
926 {
927 ULONGEST high_base; /* High byte of FP */
928
929 /* The SP was moved to the FP. This indicates that a new frame
930 was created. Get THIS frame's FP value by unwinding it from
931 the next frame. */
94afd7a6 932 this_base = get_frame_register_unsigned (this_frame, AVR_FP_REGNUM);
4e99ad69 933 high_base = get_frame_register_unsigned (this_frame, AVR_FP_REGNUM + 1);
4add8633
TR
934 this_base += (high_base << 8);
935
936 /* The FP points at the last saved register. Adjust the FP back
937 to before the first saved register giving the SP. */
938 prev_sp = this_base + info->size;
939 }
8818c391 940 else
4add8633
TR
941 {
942 /* Assume that the FP is this frame's SP but with that pushed
943 stack space added back. */
94afd7a6 944 this_base = get_frame_register_unsigned (this_frame, AVR_SP_REGNUM);
4add8633
TR
945 prev_sp = this_base + info->size;
946 }
947
948 /* Add 1 here to adjust for the post-decrement nature of the push
949 instruction.*/
4e99ad69 950 info->prev_sp = avr_make_saddr (prev_sp + 1);
4add8633
TR
951 info->base = avr_make_saddr (this_base);
952
4e99ad69
TG
953 gdbarch = get_frame_arch (this_frame);
954
4add8633 955 /* Adjust all the saved registers so that they contain addresses and not
3b85b0f1 956 offsets. */
4e99ad69
TG
957 for (i = 0; i < gdbarch_num_regs (gdbarch) - 1; i++)
958 if (info->saved_regs[i].addr > 0)
959 info->saved_regs[i].addr = info->prev_sp - info->saved_regs[i].addr;
4add8633
TR
960
961 /* Except for the main and startup code, the return PC is always saved on
962 the stack and is at the base of the frame. */
963
964 if (info->prologue_type != AVR_PROLOGUE_MAIN)
4e99ad69 965 info->saved_regs[AVR_PC_REGNUM].addr = info->prev_sp;
4add8633 966
3b85b0f1
TR
967 /* The previous frame's SP needed to be computed. Save the computed
968 value. */
4e99ad69
TG
969 tdep = gdbarch_tdep (gdbarch);
970 trad_frame_set_value (info->saved_regs, AVR_SP_REGNUM,
971 info->prev_sp - 1 + tdep->call_length);
3b85b0f1 972
4add8633 973 return info;
8818c391
TR
974}
975
976static CORE_ADDR
4add8633 977avr_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
8818c391 978{
4add8633
TR
979 ULONGEST pc;
980
11411de3 981 pc = frame_unwind_register_unsigned (next_frame, AVR_PC_REGNUM);
4add8633
TR
982
983 return avr_make_iaddr (pc);
8818c391
TR
984}
985
30244cd8
UW
986static CORE_ADDR
987avr_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
988{
989 ULONGEST sp;
990
11411de3 991 sp = frame_unwind_register_unsigned (next_frame, AVR_SP_REGNUM);
30244cd8
UW
992
993 return avr_make_saddr (sp);
994}
995
4add8633
TR
996/* Given a GDB frame, determine the address of the calling function's
997 frame. This will be used to create a new GDB frame struct. */
8818c391 998
4add8633 999static void
94afd7a6 1000avr_frame_this_id (struct frame_info *this_frame,
4add8633
TR
1001 void **this_prologue_cache,
1002 struct frame_id *this_id)
8818c391 1003{
4add8633 1004 struct avr_unwind_cache *info
94afd7a6 1005 = avr_frame_unwind_cache (this_frame, this_prologue_cache);
4add8633
TR
1006 CORE_ADDR base;
1007 CORE_ADDR func;
1008 struct frame_id id;
1009
1010 /* The FUNC is easy. */
94afd7a6 1011 func = get_frame_func (this_frame);
4add8633 1012
4add8633
TR
1013 /* Hopefully the prologue analysis either correctly determined the
1014 frame's base (which is the SP from the previous frame), or set
1015 that base to "NULL". */
1016 base = info->prev_sp;
1017 if (base == 0)
1018 return;
1019
1020 id = frame_id_build (base, func);
4add8633 1021 (*this_id) = id;
8818c391
TR
1022}
1023
94afd7a6
UW
1024static struct value *
1025avr_frame_prev_register (struct frame_info *this_frame,
4e99ad69 1026 void **this_prologue_cache, int regnum)
8818c391 1027{
e17a4113
UW
1028 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1029 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
4add8633 1030 struct avr_unwind_cache *info
94afd7a6 1031 = avr_frame_unwind_cache (this_frame, this_prologue_cache);
8818c391 1032
3b85b0f1
TR
1033 if (regnum == AVR_PC_REGNUM)
1034 {
1035 if (trad_frame_addr_p (info->saved_regs, regnum))
1036 {
94afd7a6
UW
1037 /* Reading the return PC from the PC register is slightly
1038 abnormal. register_size(AVR_PC_REGNUM) says it is 4 bytes,
1039 but in reality, only two bytes (3 in upcoming mega256) are
1040 stored on the stack.
1041
1042 Also, note that the value on the stack is an addr to a word
1043 not a byte, so we will need to multiply it by two at some
1044 point.
1045
1046 And to confuse matters even more, the return address stored
1047 on the stack is in big endian byte order, even though most
1048 everything else about the avr is little endian. Ick! */
94afd7a6 1049 ULONGEST pc;
4e99ad69
TG
1050 int i;
1051 unsigned char buf[3];
1052 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1053 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
94afd7a6 1054
4e99ad69 1055 read_memory (info->saved_regs[regnum].addr, buf, tdep->call_length);
94afd7a6 1056
4e99ad69
TG
1057 /* Extract the PC read from memory as a big-endian. */
1058 pc = 0;
1059 for (i = 0; i < tdep->call_length; i++)
1060 pc = (pc << 8) | buf[i];
94afd7a6 1061
4e99ad69 1062 return frame_unwind_got_constant (this_frame, regnum, pc << 1);
3b85b0f1 1063 }
94afd7a6
UW
1064
1065 return frame_unwind_got_optimized (this_frame, regnum);
3b85b0f1 1066 }
94afd7a6
UW
1067
1068 return trad_frame_get_prev_register (this_frame, info->saved_regs, regnum);
4add8633 1069}
8818c391 1070
4add8633
TR
1071static const struct frame_unwind avr_frame_unwind = {
1072 NORMAL_FRAME,
1073 avr_frame_this_id,
94afd7a6
UW
1074 avr_frame_prev_register,
1075 NULL,
1076 default_frame_sniffer
4add8633
TR
1077};
1078
8818c391 1079static CORE_ADDR
94afd7a6 1080avr_frame_base_address (struct frame_info *this_frame, void **this_cache)
8818c391 1081{
4add8633 1082 struct avr_unwind_cache *info
94afd7a6 1083 = avr_frame_unwind_cache (this_frame, this_cache);
8818c391 1084
4add8633
TR
1085 return info->base;
1086}
8818c391 1087
4add8633
TR
1088static const struct frame_base avr_frame_base = {
1089 &avr_frame_unwind,
1090 avr_frame_base_address,
1091 avr_frame_base_address,
1092 avr_frame_base_address
1093};
ced15480 1094
94afd7a6
UW
1095/* Assuming THIS_FRAME is a dummy, return the frame ID of that dummy
1096 frame. The frame ID's base needs to match the TOS value saved by
1097 save_dummy_frame_tos(), and the PC match the dummy frame's breakpoint. */
8818c391 1098
4add8633 1099static struct frame_id
94afd7a6 1100avr_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
4add8633
TR
1101{
1102 ULONGEST base;
8818c391 1103
94afd7a6
UW
1104 base = get_frame_register_unsigned (this_frame, AVR_SP_REGNUM);
1105 return frame_id_build (avr_make_saddr (base), get_frame_pc (this_frame));
8818c391
TR
1106}
1107
4add8633
TR
1108/* When arguments must be pushed onto the stack, they go on in reverse
1109 order. The below implements a FILO (stack) to do this. */
8818c391 1110
4add8633
TR
1111struct stack_item
1112{
1113 int len;
1114 struct stack_item *prev;
1115 void *data;
1116};
8818c391 1117
4add8633 1118static struct stack_item *
0fd88904 1119push_stack_item (struct stack_item *prev, const bfd_byte *contents, int len)
8818c391 1120{
4add8633
TR
1121 struct stack_item *si;
1122 si = xmalloc (sizeof (struct stack_item));
1123 si->data = xmalloc (len);
1124 si->len = len;
1125 si->prev = prev;
1126 memcpy (si->data, contents, len);
1127 return si;
8818c391
TR
1128}
1129
4add8633
TR
1130static struct stack_item *pop_stack_item (struct stack_item *si);
1131static struct stack_item *
1132pop_stack_item (struct stack_item *si)
8818c391 1133{
4add8633
TR
1134 struct stack_item *dead = si;
1135 si = si->prev;
1136 xfree (dead->data);
1137 xfree (dead);
1138 return si;
8818c391
TR
1139}
1140
8818c391
TR
1141/* Setup the function arguments for calling a function in the inferior.
1142
1143 On the AVR architecture, there are 18 registers (R25 to R8) which are
1144 dedicated for passing function arguments. Up to the first 18 arguments
1145 (depending on size) may go into these registers. The rest go on the stack.
1146
4add8633
TR
1147 All arguments are aligned to start in even-numbered registers (odd-sized
1148 arguments, including char, have one free register above them). For example,
1149 an int in arg1 and a char in arg2 would be passed as such:
1150
1151 arg1 -> r25:r24
1152 arg2 -> r22
1153
1154 Arguments that are larger than 2 bytes will be split between two or more
1155 registers as available, but will NOT be split between a register and the
1156 stack. Arguments that go onto the stack are pushed last arg first (this is
1157 similar to the d10v). */
1158
1159/* NOTE: TRoth/2003-06-17: The rest of this comment is old looks to be
1160 inaccurate.
8818c391
TR
1161
1162 An exceptional case exists for struct arguments (and possibly other
1163 aggregates such as arrays) -- if the size is larger than WORDSIZE bytes but
1164 not a multiple of WORDSIZE bytes. In this case the argument is never split
1165 between the registers and the stack, but instead is copied in its entirety
1166 onto the stack, AND also copied into as many registers as there is room
1167 for. In other words, space in registers permitting, two copies of the same
1168 argument are passed in. As far as I can tell, only the one on the stack is
1169 used, although that may be a function of the level of compiler
1170 optimization. I suspect this is a compiler bug. Arguments of these odd
1171 sizes are left-justified within the word (as opposed to arguments smaller
1172 than WORDSIZE bytes, which are right-justified).
1173
1174 If the function is to return an aggregate type such as a struct, the caller
1175 must allocate space into which the callee will copy the return value. In
1176 this case, a pointer to the return value location is passed into the callee
1177 in register R0, which displaces one of the other arguments passed in via
1178 registers R0 to R2. */
1179
1180static CORE_ADDR
7d9b040b 1181avr_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
4add8633
TR
1182 struct regcache *regcache, CORE_ADDR bp_addr,
1183 int nargs, struct value **args, CORE_ADDR sp,
1184 int struct_return, CORE_ADDR struct_addr)
8818c391 1185{
e17a4113 1186 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
4add8633 1187 int i;
6d1915d4
TG
1188 unsigned char buf[3];
1189 int call_length = gdbarch_tdep (gdbarch)->call_length;
4add8633
TR
1190 CORE_ADDR return_pc = avr_convert_iaddr_to_raw (bp_addr);
1191 int regnum = AVR_ARGN_REGNUM;
1192 struct stack_item *si = NULL;
8818c391 1193
8818c391 1194#if 0
4add8633
TR
1195 /* FIXME: TRoth/2003-06-18: Not sure what to do when returning a struct. */
1196 if (struct_return)
8818c391 1197 {
4add8633 1198 fprintf_unfiltered (gdb_stderr, "struct_return: 0x%lx\n", struct_addr);
9c9acae0
UW
1199 regcache_cooked_write_unsigned (regcache, argreg--, struct_addr & 0xff);
1200 regcache_cooked_write_unsigned (regcache, argreg--, (struct_addr >>8) & 0xff);
8818c391 1201 }
4add8633 1202#endif
8818c391 1203
4add8633 1204 for (i = 0; i < nargs; i++)
8818c391 1205 {
4add8633
TR
1206 int last_regnum;
1207 int j;
1208 struct value *arg = args[i];
4991999e 1209 struct type *type = check_typedef (value_type (arg));
0fd88904 1210 const bfd_byte *contents = value_contents (arg);
4add8633
TR
1211 int len = TYPE_LENGTH (type);
1212
1213 /* Calculate the potential last register needed. */
1214 last_regnum = regnum - (len + (len & 1));
1215
1216 /* If there are registers available, use them. Once we start putting
1217 stuff on the stack, all subsequent args go on stack. */
1218 if ((si == NULL) && (last_regnum >= 8))
1219 {
1220 ULONGEST val;
1221
1222 /* Skip a register for odd length args. */
1223 if (len & 1)
1224 regnum--;
1225
e17a4113 1226 val = extract_unsigned_integer (contents, len, byte_order);
6d1915d4
TG
1227 for (j = 0; j < len; j++)
1228 regcache_cooked_write_unsigned
1229 (regcache, regnum--, val >> (8 * (len - j - 1)));
4add8633
TR
1230 }
1231 /* No registers available, push the args onto the stack. */
1232 else
1233 {
1234 /* From here on, we don't care about regnum. */
1235 si = push_stack_item (si, contents, len);
1236 }
8818c391 1237 }
909cd28e 1238
4add8633
TR
1239 /* Push args onto the stack. */
1240 while (si)
1241 {
1242 sp -= si->len;
1243 /* Add 1 to sp here to account for post decr nature of pushes. */
4e99ad69 1244 write_memory (sp + 1, si->data, si->len);
4add8633
TR
1245 si = pop_stack_item (si);
1246 }
3605c34a 1247
4add8633
TR
1248 /* Set the return address. For the avr, the return address is the BP_ADDR.
1249 Need to push the return address onto the stack noting that it needs to be
1250 in big-endian order on the stack. */
6d1915d4
TG
1251 for (i = 1; i <= call_length; i++)
1252 {
1253 buf[call_length - i] = return_pc & 0xff;
1254 return_pc >>= 8;
1255 }
3605c34a 1256
6d1915d4
TG
1257 sp -= call_length;
1258 /* Use 'sp + 1' since pushes are post decr ops. */
1259 write_memory (sp + 1, buf, call_length);
3605c34a 1260
4add8633
TR
1261 /* Finally, update the SP register. */
1262 regcache_cooked_write_unsigned (regcache, AVR_SP_REGNUM,
1263 avr_convert_saddr_to_raw (sp));
3605c34a 1264
6d1915d4
TG
1265 /* Return SP value for the dummy frame, where the return address hasn't been
1266 pushed. */
1267 return sp + call_length;
3605c34a
TR
1268}
1269
53f6a2c9
TG
1270/* Unfortunately dwarf2 register for SP is 32. */
1271
1272static int
1273avr_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int reg)
1274{
1275 if (reg >= 0 && reg < 32)
1276 return reg;
1277 if (reg == 32)
1278 return AVR_SP_REGNUM;
1279
1280 warning (_("Unmapped DWARF Register #%d encountered."), reg);
1281
1282 return -1;
1283}
1284
8818c391
TR
1285/* Initialize the gdbarch structure for the AVR's. */
1286
1287static struct gdbarch *
2e5ff58c
TR
1288avr_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1289{
2e5ff58c
TR
1290 struct gdbarch *gdbarch;
1291 struct gdbarch_tdep *tdep;
4e99ad69
TG
1292 struct gdbarch_list *best_arch;
1293 int call_length;
8818c391 1294
4e99ad69 1295 /* Avr-6 call instructions save 3 bytes. */
8818c391
TR
1296 switch (info.bfd_arch_info->mach)
1297 {
1298 case bfd_mach_avr1:
1299 case bfd_mach_avr2:
1300 case bfd_mach_avr3:
1301 case bfd_mach_avr4:
1302 case bfd_mach_avr5:
4e99ad69
TG
1303 default:
1304 call_length = 2;
1305 break;
1306 case bfd_mach_avr6:
1307 call_length = 3;
8818c391
TR
1308 break;
1309 }
1310
4e99ad69
TG
1311 /* If there is already a candidate, use it. */
1312 for (best_arch = gdbarch_list_lookup_by_info (arches, &info);
1313 best_arch != NULL;
1314 best_arch = gdbarch_list_lookup_by_info (best_arch->next, &info))
1315 {
1316 if (gdbarch_tdep (best_arch->gdbarch)->call_length == call_length)
1317 return best_arch->gdbarch;
1318 }
1319
1320 /* None found, create a new architecture from the information provided. */
1321 tdep = XMALLOC (struct gdbarch_tdep);
1322 gdbarch = gdbarch_alloc (&info, tdep);
1323
1324 tdep->call_length = call_length;
1325
8818c391
TR
1326 set_gdbarch_short_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1327 set_gdbarch_int_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1328 set_gdbarch_long_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1329 set_gdbarch_long_long_bit (gdbarch, 8 * TARGET_CHAR_BIT);
1330 set_gdbarch_ptr_bit (gdbarch, 2 * TARGET_CHAR_BIT);
1331 set_gdbarch_addr_bit (gdbarch, 32);
8818c391
TR
1332
1333 set_gdbarch_float_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1334 set_gdbarch_double_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1335 set_gdbarch_long_double_bit (gdbarch, 4 * TARGET_CHAR_BIT);
1336
8da61cc4
DJ
1337 set_gdbarch_float_format (gdbarch, floatformats_ieee_single);
1338 set_gdbarch_double_format (gdbarch, floatformats_ieee_single);
1339 set_gdbarch_long_double_format (gdbarch, floatformats_ieee_single);
8818c391
TR
1340
1341 set_gdbarch_read_pc (gdbarch, avr_read_pc);
1342 set_gdbarch_write_pc (gdbarch, avr_write_pc);
8818c391
TR
1343
1344 set_gdbarch_num_regs (gdbarch, AVR_NUM_REGS);
1345
1346 set_gdbarch_sp_regnum (gdbarch, AVR_SP_REGNUM);
8818c391
TR
1347 set_gdbarch_pc_regnum (gdbarch, AVR_PC_REGNUM);
1348
1349 set_gdbarch_register_name (gdbarch, avr_register_name);
866b76ea 1350 set_gdbarch_register_type (gdbarch, avr_register_type);
8818c391 1351
4c8b6ae0 1352 set_gdbarch_return_value (gdbarch, avr_return_value);
8818c391
TR
1353 set_gdbarch_print_insn (gdbarch, print_insn_avr);
1354
4add8633 1355 set_gdbarch_push_dummy_call (gdbarch, avr_push_dummy_call);
8818c391 1356
53f6a2c9
TG
1357 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, avr_dwarf_reg_to_regnum);
1358
8818c391
TR
1359 set_gdbarch_address_to_pointer (gdbarch, avr_address_to_pointer);
1360 set_gdbarch_pointer_to_address (gdbarch, avr_pointer_to_address);
8818c391 1361
8818c391 1362 set_gdbarch_skip_prologue (gdbarch, avr_skip_prologue);
8818c391
TR
1363 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1364
909cd28e 1365 set_gdbarch_breakpoint_from_pc (gdbarch, avr_breakpoint_from_pc);
8818c391 1366
94afd7a6 1367 frame_unwind_append_unwinder (gdbarch, &avr_frame_unwind);
4add8633
TR
1368 frame_base_set_default (gdbarch, &avr_frame_base);
1369
94afd7a6 1370 set_gdbarch_dummy_id (gdbarch, avr_dummy_id);
4add8633
TR
1371
1372 set_gdbarch_unwind_pc (gdbarch, avr_unwind_pc);
30244cd8 1373 set_gdbarch_unwind_sp (gdbarch, avr_unwind_sp);
8818c391 1374
8818c391
TR
1375 return gdbarch;
1376}
1377
1378/* Send a query request to the avr remote target asking for values of the io
1379 registers. If args parameter is not NULL, then the user has requested info
1380 on a specific io register [This still needs implemented and is ignored for
1381 now]. The query string should be one of these forms:
1382
1383 "Ravr.io_reg" -> reply is "NN" number of io registers
1384
1385 "Ravr.io_reg:addr,len" where addr is first register and len is number of
1386 registers to be read. The reply should be "<NAME>,VV;" for each io register
1387 where, <NAME> is a string, and VV is the hex value of the register.
1388
1389 All io registers are 8-bit. */
1390
1391static void
1392avr_io_reg_read_command (char *args, int from_tty)
1393{
1e3ff5ad 1394 LONGEST bufsiz = 0;
13547ab6 1395 gdb_byte *buf;
2e5ff58c
TR
1396 char query[400];
1397 char *p;
1398 unsigned int nreg = 0;
1399 unsigned int val;
1400 int i, j, k, step;
8818c391 1401
8818c391 1402 /* Find out how many io registers the target has. */
13547ab6
DJ
1403 bufsiz = target_read_alloc (&current_target, TARGET_OBJECT_AVR,
1404 "avr.io_reg", &buf);
8818c391 1405
13547ab6 1406 if (bufsiz <= 0)
8818c391 1407 {
2e5ff58c 1408 fprintf_unfiltered (gdb_stderr,
13547ab6
DJ
1409 _("ERR: info io_registers NOT supported "
1410 "by current target\n"));
8818c391
TR
1411 return;
1412 }
1413
2e5ff58c 1414 if (sscanf (buf, "%x", &nreg) != 1)
8818c391 1415 {
2e5ff58c 1416 fprintf_unfiltered (gdb_stderr,
edefbb7c 1417 _("Error fetching number of io registers\n"));
13547ab6 1418 xfree (buf);
8818c391
TR
1419 return;
1420 }
1421
13547ab6
DJ
1422 xfree (buf);
1423
2e5ff58c 1424 reinitialize_more_filter ();
8818c391 1425
edefbb7c 1426 printf_unfiltered (_("Target has %u io registers:\n\n"), nreg);
8818c391
TR
1427
1428 /* only fetch up to 8 registers at a time to keep the buffer small */
1429 step = 8;
1430
2e5ff58c 1431 for (i = 0; i < nreg; i += step)
8818c391 1432 {
91ccbfc1
TR
1433 /* how many registers this round? */
1434 j = step;
1435 if ((i+j) >= nreg)
1436 j = nreg - i; /* last block is less than 8 registers */
8818c391 1437
2e5ff58c 1438 snprintf (query, sizeof (query) - 1, "avr.io_reg:%x,%x", i, j);
13547ab6
DJ
1439 bufsiz = target_read_alloc (&current_target, TARGET_OBJECT_AVR,
1440 query, &buf);
8818c391
TR
1441
1442 p = buf;
2e5ff58c
TR
1443 for (k = i; k < (i + j); k++)
1444 {
1445 if (sscanf (p, "%[^,],%x;", query, &val) == 2)
1446 {
1447 printf_filtered ("[%02x] %-15s : %02x\n", k, query, val);
1448 while ((*p != ';') && (*p != '\0'))
1449 p++;
1450 p++; /* skip over ';' */
1451 if (*p == '\0')
1452 break;
1453 }
1454 }
13547ab6
DJ
1455
1456 xfree (buf);
8818c391
TR
1457 }
1458}
1459
a78f21af
AC
1460extern initialize_file_ftype _initialize_avr_tdep; /* -Wmissing-prototypes */
1461
8818c391
TR
1462void
1463_initialize_avr_tdep (void)
1464{
1465 register_gdbarch_init (bfd_arch_avr, avr_gdbarch_init);
1466
1467 /* Add a new command to allow the user to query the avr remote target for
1468 the values of the io space registers in a saner way than just using
1469 `x/NNNb ADDR`. */
1470
1471 /* FIXME: TRoth/2002-02-18: This should probably be changed to 'info avr
1472 io_registers' to signify it is not available on other platforms. */
1473
1474 add_cmd ("io_registers", class_info, avr_io_reg_read_command,
1a966eab
AC
1475 _("query remote avr target for io space register values"),
1476 &infolist);
8818c391 1477}
This page took 0.577735 seconds and 4 git commands to generate.