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