OSDN Git Service

b9ce56fa59fc10afd3299ed551ca6e1cf19ac244
[pf3gnuchains/gcc-fork.git] / gcc / config / avr / avr.h
1 /* Definitions of target machine for GNU compiler,
2    for ATMEL AVR at90s8515, ATmega103/103L, ATmega603/603L microcontrollers.
3    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 
4    2008, 2009, 2010, 2011
5    Free Software Foundation, Inc.
6    Contributed by Denis Chertykov (chertykov@gmail.com)
7
8 This file is part of GCC.
9
10 GCC is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
13 any later version.
14
15 GCC is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3.  If not see
22 <http://www.gnu.org/licenses/>.  */
23
24 /* Names to predefine in the preprocessor for this target machine.  */
25
26 struct base_arch_s {
27   /* Assembler only.  */
28   int asm_only;
29
30   /* Core have 'MUL*' instructions.  */
31   int have_mul;
32
33   /* Core have 'CALL' and 'JMP' instructions.  */
34   int have_jmp_call;
35
36   /* Core have 'MOVW' and 'LPM Rx,Z' instructions.  */
37   int have_movw_lpmx;
38
39   /* Core have 'ELPM' instructions.  */
40   int have_elpm;
41
42   /* Core have 'ELPM Rx,Z' instructions.  */
43   int have_elpmx;
44
45   /* Core have 'EICALL' and 'EIJMP' instructions.  */
46   int have_eijmp_eicall;
47
48   /* Reserved for xmega architecture.  */
49   int reserved;
50
51   /* Reserved for xmega architecture.  */
52   int reserved2;
53   
54   /* Default start of data section address for architecture.  */
55   int default_data_section_start;
56
57   const char *const macro;
58   
59   /* Architecture name.  */
60   const char *const arch_name;  
61 };
62
63 /* These names are used as the index into the avr_arch_types[] table 
64    above.  */
65
66 enum avr_arch
67 {
68   ARCH_UNKNOWN,
69   ARCH_AVR1,
70   ARCH_AVR2,
71   ARCH_AVR25,
72   ARCH_AVR3,
73   ARCH_AVR31,
74   ARCH_AVR35,
75   ARCH_AVR4,
76   ARCH_AVR5,
77   ARCH_AVR51,
78   ARCH_AVR6
79 };
80
81 struct mcu_type_s {
82   /* Device name.  */
83   const char *const name;
84   
85   /* Index in avr_arch_types[].  */
86   int arch; 
87   
88   /* Must lie outside user's namespace.  NULL == no macro.  */
89   const char *const macro;
90   
91   /* Stack pointer have 8 bits width.  */
92   int short_sp;
93   
94   /* Some AVR devices have a core erratum when skipping a 2-word instruction.
95      Skip instructions are:  SBRC, SBRS, SBIC, SBIS, CPSE.
96      Problems will occur with return address is IRQ executes during the
97      skip sequence.
98
99      A support ticket from Atmel returned the following information:
100
101          Subject: (ATTicket:644469) On AVR skip-bug core Erratum
102          From: avr@atmel.com                    Date: 2011-07-27
103          (Please keep the subject when replying to this mail)
104
105          This errata exists only in AT90S8515 and ATmega103 devices.
106
107          For information please refer the following respective errata links
108             http://www.atmel.com/dyn/resources/prod_documents/doc2494.pdf
109             http://www.atmel.com/dyn/resources/prod_documents/doc1436.pdf  */
110
111   /* Core Erratum:  Must not skip 2-word instruction.  */
112   int errata_skip;
113   
114   /* Start of data section.  */
115   int data_section_start;
116   
117   /* Name of device library.  */
118   const char *const library_name; 
119 };
120
121 /* Preprocessor macros to define depending on MCU type.  */
122 extern const char *avr_extra_arch_macro;
123 extern const struct base_arch_s *avr_current_arch;
124 extern const struct mcu_type_s *avr_current_device;
125 extern const struct mcu_type_s avr_mcu_types[];
126 extern const struct base_arch_s avr_arch_types[];
127
128 #define TARGET_CPU_CPP_BUILTINS()       avr_cpu_cpp_builtins (pfile)
129
130 #define AVR_HAVE_JMP_CALL (avr_current_arch->have_jmp_call && !TARGET_SHORT_CALLS)
131 #define AVR_HAVE_MUL (avr_current_arch->have_mul)
132 #define AVR_HAVE_MOVW (avr_current_arch->have_movw_lpmx)
133 #define AVR_HAVE_LPMX (avr_current_arch->have_movw_lpmx)
134 #define AVR_HAVE_RAMPZ (avr_current_arch->have_elpm)
135 #define AVR_HAVE_EIJMP_EICALL (avr_current_arch->have_eijmp_eicall)
136 #define AVR_HAVE_8BIT_SP (avr_current_device->short_sp || TARGET_TINY_STACK)
137
138 #define AVR_2_BYTE_PC (!AVR_HAVE_EIJMP_EICALL)
139 #define AVR_3_BYTE_PC (AVR_HAVE_EIJMP_EICALL)
140
141 #define BITS_BIG_ENDIAN 0
142 #define BYTES_BIG_ENDIAN 0
143 #define WORDS_BIG_ENDIAN 0
144
145 #ifdef IN_LIBGCC2
146 /* This is to get correct SI and DI modes in libgcc2.c (32 and 64 bits).  */
147 #define UNITS_PER_WORD 4
148 #else
149 /* Width of a word, in units (bytes).  */
150 #define UNITS_PER_WORD 1
151 #endif
152
153 #define POINTER_SIZE 16
154
155
156 /* Maximum sized of reasonable data type
157    DImode or Dfmode ...  */
158 #define MAX_FIXED_MODE_SIZE 32
159
160 #define PARM_BOUNDARY 8
161
162 #define FUNCTION_BOUNDARY 8
163
164 #define EMPTY_FIELD_BOUNDARY 8
165
166 /* No data type wants to be aligned rounder than this.  */
167 #define BIGGEST_ALIGNMENT 8
168
169 #define TARGET_VTABLE_ENTRY_ALIGN 8
170
171 #define STRICT_ALIGNMENT 0
172
173 #define INT_TYPE_SIZE (TARGET_INT8 ? 8 : 16)
174 #define SHORT_TYPE_SIZE (INT_TYPE_SIZE == 8 ? INT_TYPE_SIZE : 16)
175 #define LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 16 : 32)
176 #define LONG_LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 32 : 64)
177 #define FLOAT_TYPE_SIZE 32
178 #define DOUBLE_TYPE_SIZE 32
179 #define LONG_DOUBLE_TYPE_SIZE 32
180
181 #define DEFAULT_SIGNED_CHAR 1
182
183 #define SIZE_TYPE (INT_TYPE_SIZE == 8 ? "long unsigned int" : "unsigned int")
184 #define PTRDIFF_TYPE (INT_TYPE_SIZE == 8 ? "long int" :"int")
185
186 #define WCHAR_TYPE_SIZE 16
187
188 #define FIRST_PSEUDO_REGISTER 36
189
190 #define FIXED_REGISTERS {\
191   1,1,/* r0 r1 */\
192   0,0,/* r2 r3 */\
193   0,0,/* r4 r5 */\
194   0,0,/* r6 r7 */\
195   0,0,/* r8 r9 */\
196   0,0,/* r10 r11 */\
197   0,0,/* r12 r13 */\
198   0,0,/* r14 r15 */\
199   0,0,/* r16 r17 */\
200   0,0,/* r18 r19 */\
201   0,0,/* r20 r21 */\
202   0,0,/* r22 r23 */\
203   0,0,/* r24 r25 */\
204   0,0,/* r26 r27 */\
205   0,0,/* r28 r29 */\
206   0,0,/* r30 r31 */\
207   1,1,/*  STACK */\
208   1,1 /* arg pointer */  }
209
210 #define CALL_USED_REGISTERS {                   \
211   1,1,/* r0 r1 */                               \
212     0,0,/* r2 r3 */                             \
213     0,0,/* r4 r5 */                             \
214     0,0,/* r6 r7 */                             \
215     0,0,/* r8 r9 */                             \
216     0,0,/* r10 r11 */                           \
217     0,0,/* r12 r13 */                           \
218     0,0,/* r14 r15 */                           \
219     0,0,/* r16 r17 */                           \
220     1,1,/* r18 r19 */                           \
221     1,1,/* r20 r21 */                           \
222     1,1,/* r22 r23 */                           \
223     1,1,/* r24 r25 */                           \
224     1,1,/* r26 r27 */                           \
225     0,0,/* r28 r29 */                           \
226     1,1,/* r30 r31 */                           \
227     1,1,/*  STACK */                            \
228     1,1 /* arg pointer */  }
229
230 #define REG_ALLOC_ORDER {                       \
231     24,25,                                      \
232     18,19,                                      \
233     20,21,                                      \
234     22,23,                                      \
235     30,31,                                      \
236     26,27,                                      \
237     28,29,                                      \
238     17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,    \
239     0,1,                                        \
240     32,33,34,35                                 \
241     }
242
243 #define ADJUST_REG_ALLOC_ORDER order_regs_for_local_alloc ()
244
245
246 #define HARD_REGNO_NREGS(REGNO, MODE) ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
247
248 #define HARD_REGNO_MODE_OK(REGNO, MODE) avr_hard_regno_mode_ok(REGNO, MODE)
249
250 #define MODES_TIEABLE_P(MODE1, MODE2) 1
251
252 enum reg_class {
253   NO_REGS,
254   R0_REG,                       /* r0 */
255   POINTER_X_REGS,               /* r26 - r27 */
256   POINTER_Y_REGS,               /* r28 - r29 */
257   POINTER_Z_REGS,               /* r30 - r31 */
258   STACK_REG,                    /* STACK */
259   BASE_POINTER_REGS,            /* r28 - r31 */
260   POINTER_REGS,                 /* r26 - r31 */
261   ADDW_REGS,                    /* r24 - r31 */
262   SIMPLE_LD_REGS,               /* r16 - r23 */
263   LD_REGS,                      /* r16 - r31 */
264   NO_LD_REGS,                   /* r0 - r15 */
265   GENERAL_REGS,                 /* r0 - r31 */
266   ALL_REGS, LIM_REG_CLASSES
267 };
268
269
270 #define N_REG_CLASSES (int)LIM_REG_CLASSES
271
272 #define REG_CLASS_NAMES {                                       \
273                  "NO_REGS",                                     \
274                    "R0_REG",    /* r0 */                        \
275                    "POINTER_X_REGS", /* r26 - r27 */            \
276                    "POINTER_Y_REGS", /* r28 - r29 */            \
277                    "POINTER_Z_REGS", /* r30 - r31 */            \
278                    "STACK_REG", /* STACK */                     \
279                    "BASE_POINTER_REGS", /* r28 - r31 */         \
280                    "POINTER_REGS", /* r26 - r31 */              \
281                    "ADDW_REGS", /* r24 - r31 */                 \
282                    "SIMPLE_LD_REGS", /* r16 - r23 */            \
283                    "LD_REGS",   /* r16 - r31 */                 \
284                    "NO_LD_REGS", /* r0 - r15 */                 \
285                    "GENERAL_REGS", /* r0 - r31 */               \
286                    "ALL_REGS" }
287
288 #define REG_CLASS_CONTENTS {                                            \
289   {0x00000000,0x00000000},      /* NO_REGS */                           \
290   {0x00000001,0x00000000},      /* R0_REG */                            \
291   {3 << REG_X,0x00000000},      /* POINTER_X_REGS, r26 - r27 */         \
292   {3 << REG_Y,0x00000000},      /* POINTER_Y_REGS, r28 - r29 */         \
293   {3 << REG_Z,0x00000000},      /* POINTER_Z_REGS, r30 - r31 */         \
294   {0x00000000,0x00000003},      /* STACK_REG, STACK */                  \
295   {(3 << REG_Y) | (3 << REG_Z),                                         \
296      0x00000000},               /* BASE_POINTER_REGS, r28 - r31 */      \
297   {(3 << REG_X) | (3 << REG_Y) | (3 << REG_Z),                          \
298      0x00000000},               /* POINTER_REGS, r26 - r31 */           \
299   {(3 << REG_X) | (3 << REG_Y) | (3 << REG_Z) | (3 << REG_W),           \
300      0x00000000},               /* ADDW_REGS, r24 - r31 */              \
301   {0x00ff0000,0x00000000},      /* SIMPLE_LD_REGS r16 - r23 */          \
302   {(3 << REG_X)|(3 << REG_Y)|(3 << REG_Z)|(3 << REG_W)|(0xff << 16),    \
303      0x00000000},       /* LD_REGS, r16 - r31 */                        \
304   {0x0000ffff,0x00000000},      /* NO_LD_REGS  r0 - r15 */              \
305   {0xffffffff,0x00000000},      /* GENERAL_REGS, r0 - r31 */            \
306   {0xffffffff,0x00000003}       /* ALL_REGS */                          \
307 }
308
309 #define REGNO_REG_CLASS(R) avr_regno_reg_class(R)
310
311 #define MODE_CODE_BASE_REG_CLASS(mode, outer_code, index_code) \
312   avr_mode_code_base_reg_class (mode, outer_code, index_code)
313
314 #define INDEX_REG_CLASS NO_REGS
315
316 #define REGNO_MODE_CODE_OK_FOR_BASE_P(num, mode, outer_code, index_code) \
317   avr_regno_mode_code_ok_for_base_p (num, mode, outer_code, index_code)
318
319 #define REGNO_OK_FOR_INDEX_P(NUM) 0
320
321 #define TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P hook_bool_mode_true
322
323 #define STACK_PUSH_CODE POST_DEC
324
325 #define STACK_GROWS_DOWNWARD
326
327 #define STARTING_FRAME_OFFSET 1
328
329 #define STACK_POINTER_OFFSET 1
330
331 #define FIRST_PARM_OFFSET(FUNDECL) 0
332
333 #define STACK_BOUNDARY 8
334
335 #define STACK_POINTER_REGNUM 32
336
337 #define FRAME_POINTER_REGNUM REG_Y
338
339 #define ARG_POINTER_REGNUM 34
340
341 #define STATIC_CHAIN_REGNUM 2
342
343 #define ELIMINABLE_REGS {                                       \
344       {ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM},               \
345         {FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}            \
346        ,{FRAME_POINTER_REGNUM+1,STACK_POINTER_REGNUM+1}}
347
348 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET)                    \
349   OFFSET = avr_initial_elimination_offset (FROM, TO)
350
351 #define RETURN_ADDR_RTX(count, tem) avr_return_addr_rtx (count, tem)
352
353 /* Don't use Push rounding. expr.c: emit_single_push_insn is broken 
354    for POST_DEC targets (PR27386).  */
355 /*#define PUSH_ROUNDING(NPUSHED) (NPUSHED)*/
356
357 typedef struct avr_args {
358   int nregs;                    /* # registers available for passing */
359   int regno;                    /* next available register number */
360 } CUMULATIVE_ARGS;
361
362 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, FNDECL, N_NAMED_ARGS) \
363   init_cumulative_args (&(CUM), FNTYPE, LIBNAME, FNDECL)
364
365 #define FUNCTION_ARG_REGNO_P(r) function_arg_regno_p(r)
366
367 #define DEFAULT_PCC_STRUCT_RETURN 0
368
369 #define EPILOGUE_USES(REGNO) avr_epilogue_uses(REGNO)
370
371 #define HAVE_POST_INCREMENT 1
372 #define HAVE_PRE_DECREMENT 1
373
374 #define MAX_REGS_PER_ADDRESS 1
375
376 #define LEGITIMIZE_RELOAD_ADDRESS(X,MODE,OPNUM,TYPE,IND_L,WIN)          \
377   do {                                                                  \
378     rtx new_x = avr_legitimize_reload_address (&(X), MODE, OPNUM, TYPE, \
379                                                ADDR_TYPE (TYPE),        \
380                                                IND_L, make_memloc);     \
381     if (new_x)                                                          \
382       {                                                                 \
383         X = new_x;                                                      \
384         goto WIN;                                                       \
385       }                                                                 \
386   } while (0)
387
388 #define BRANCH_COST(speed_p, predictable_p) 0
389
390 #define SLOW_BYTE_ACCESS 0
391
392 #define NO_FUNCTION_CSE
393
394 #define TEXT_SECTION_ASM_OP "\t.text"
395
396 #define DATA_SECTION_ASM_OP "\t.data"
397
398 #define BSS_SECTION_ASM_OP "\t.section .bss"
399
400 /* Define the pseudo-ops used to switch to the .ctors and .dtors sections.
401    There are no shared libraries on this target, and these sections are
402    placed in the read-only program memory, so they are not writable.  */
403
404 #undef CTORS_SECTION_ASM_OP
405 #define CTORS_SECTION_ASM_OP "\t.section .ctors,\"a\",@progbits"
406
407 #undef DTORS_SECTION_ASM_OP
408 #define DTORS_SECTION_ASM_OP "\t.section .dtors,\"a\",@progbits"
409
410 #define TARGET_ASM_CONSTRUCTOR avr_asm_out_ctor
411
412 #define TARGET_ASM_DESTRUCTOR avr_asm_out_dtor
413
414 #define SUPPORTS_INIT_PRIORITY 0
415
416 #define JUMP_TABLES_IN_TEXT_SECTION 0
417
418 #define ASM_COMMENT_START " ; "
419
420 #define ASM_APP_ON "/* #APP */\n"
421
422 #define ASM_APP_OFF "/* #NOAPP */\n"
423
424 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C, STR) ((C) == '\n' || ((C) == '$'))
425
426 #define ASM_OUTPUT_ALIGNED_DECL_COMMON(STREAM, DECL, NAME, SIZE, ALIGN) \
427   avr_asm_output_aligned_decl_common (STREAM, DECL, NAME, SIZE, ALIGN, false)
428
429 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
430   asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
431
432 #define ASM_OUTPUT_ALIGNED_DECL_LOCAL(STREAM, DECL, NAME, SIZE, ALIGN)  \
433   avr_asm_output_aligned_decl_common (STREAM, DECL, NAME, SIZE, ALIGN, true)
434
435 /* Globalizing directive for a label.  */
436 #define GLOBAL_ASM_OP ".global\t"
437
438 #define SUPPORTS_WEAK 1
439
440 #define HAS_INIT_SECTION 1
441
442 #define REGISTER_NAMES {                                \
443   "r0","r1","r2","r3","r4","r5","r6","r7",              \
444     "r8","r9","r10","r11","r12","r13","r14","r15",      \
445     "r16","r17","r18","r19","r20","r21","r22","r23",    \
446     "r24","r25","r26","r27","r28","r29","r30","r31",    \
447     "__SP_L__","__SP_H__","argL","argH"}
448
449 #define FINAL_PRESCAN_INSN(insn, operand, nop) final_prescan_insn (insn, operand,nop)
450
451 #define PRINT_OPERAND(STREAM, X, CODE) print_operand (STREAM, X, CODE)
452
453 #define PRINT_OPERAND_PUNCT_VALID_P(CODE) ((CODE) == '~' || (CODE) == '!')
454
455 #define PRINT_OPERAND_ADDRESS(STREAM, X) print_operand_address(STREAM, X)
456
457 #define ASM_OUTPUT_REG_PUSH(STREAM, REGNO)      \
458 {                                               \
459   gcc_assert (REGNO < 32);                      \
460   fprintf (STREAM, "\tpush\tr%d", REGNO);       \
461 }
462
463 #define ASM_OUTPUT_REG_POP(STREAM, REGNO)       \
464 {                                               \
465   gcc_assert (REGNO < 32);                      \
466   fprintf (STREAM, "\tpop\tr%d", REGNO);        \
467 }
468
469 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE)          \
470   avr_output_addr_vec_elt(STREAM, VALUE)
471
472 #define ASM_OUTPUT_ALIGN(STREAM, POWER)                 \
473   do {                                                  \
474       if ((POWER) > 1)                                  \
475           fprintf (STREAM, "\t.p2align\t%d\n", POWER);  \
476   } while (0)
477
478 #define CASE_VECTOR_MODE HImode
479
480 #undef WORD_REGISTER_OPERATIONS
481
482 #define MOVE_MAX 4
483
484 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
485
486 #define Pmode HImode
487
488 #define FUNCTION_MODE HImode
489
490 #define DOLLARS_IN_IDENTIFIERS 0
491
492 #define TRAMPOLINE_SIZE 4
493
494 /* Store in cc_status the expressions
495    that the condition codes will describe
496    after execution of an instruction whose pattern is EXP.
497    Do not alter them if the instruction would not alter the cc's.  */
498
499 #define NOTICE_UPDATE_CC(EXP, INSN) notice_update_cc(EXP, INSN)
500
501 /* The add insns don't set overflow in a usable way.  */
502 #define CC_OVERFLOW_UNUSABLE 01000
503 /* The mov,and,or,xor insns don't set carry.  That's ok though as the
504    Z bit is all we need when doing unsigned comparisons on the result of
505    these insns (since they're always with 0).  However, conditions.h has
506    CC_NO_OVERFLOW defined for this purpose.  Rename it to something more
507    understandable.  */
508 #define CC_NO_CARRY CC_NO_OVERFLOW
509
510
511 /* Output assembler code to FILE to increment profiler label # LABELNO
512    for profiling a function entry.  */
513
514 #define FUNCTION_PROFILER(FILE, LABELNO)  \
515   fprintf (FILE, "/* profiler %d */", (LABELNO))
516
517 #define ADJUST_INSN_LENGTH(INSN, LENGTH) (LENGTH =\
518                                           adjust_insn_length (INSN, LENGTH))
519
520 extern const char *avr_device_to_arch (int argc, const char **argv);
521 extern const char *avr_device_to_data_start (int argc, const char **argv);
522 extern const char *avr_device_to_startfiles (int argc, const char **argv);
523 extern const char *avr_device_to_devicelib (int argc, const char **argv);
524
525 #define EXTRA_SPEC_FUNCTIONS \
526   { "device_to_arch", avr_device_to_arch }, \
527   { "device_to_data_start", avr_device_to_data_start }, \
528   { "device_to_startfile", avr_device_to_startfiles }, \
529   { "device_to_devicelib", avr_device_to_devicelib },
530
531 #define CPP_SPEC ""
532
533 #define CC1_SPEC ""
534
535 #define CC1PLUS_SPEC "%{!frtti:-fno-rtti} \
536     %{!fenforce-eh-specs:-fno-enforce-eh-specs} \
537     %{!fexceptions:-fno-exceptions}"
538 /* A C string constant that tells the GCC driver program options to
539    pass to `cc1plus'.  */
540
541 #define ASM_SPEC "%{mmcu=avr25:-mmcu=avr2;mmcu=avr35:-mmcu=avr3;mmcu=avr31:-mmcu=avr3;mmcu=avr51:-mmcu=avr5;\
542 mmcu=*:-mmcu=%*}"
543
544 #define LINK_SPEC "\
545 %{mrelax:--relax\
546          %{mpmem-wrap-around:%{mmcu=at90usb8*:--pmem-wrap-around=8k}\
547                              %{mmcu=atmega16*:--pmem-wrap-around=16k}\
548                              %{mmcu=atmega32*|\
549                                mmcu=at90can32*:--pmem-wrap-around=32k}\
550                              %{mmcu=atmega64*|\
551                                mmcu=at90can64*|\
552                                mmcu=at90usb64*:--pmem-wrap-around=64k}}}\
553 %:device_to_arch(%{mmcu=*:%*})\
554 %:device_to_data_start(%{mmcu=*:%*})"
555
556 #define LIB_SPEC \
557   "%{!mmcu=at90s1*:%{!mmcu=attiny11:%{!mmcu=attiny12:%{!mmcu=attiny15:%{!mmcu=attiny28: -lc }}}}}"
558
559 #define LIBSTDCXX "gcc"
560 /* No libstdc++ for now.  Empty string doesn't work.  */
561
562 #define LIBGCC_SPEC \
563   "%{!mmcu=at90s1*:%{!mmcu=attiny11:%{!mmcu=attiny12:%{!mmcu=attiny15:%{!mmcu=attiny28: -lgcc }}}}}"
564
565 #define STARTFILE_SPEC "%:device_to_startfile(%{mmcu=*:%*})"
566
567 #define ENDFILE_SPEC ""
568
569 /* This is the default without any -mmcu=* option (AT90S*).  */
570 #define MULTILIB_DEFAULTS { "mmcu=avr2" }
571
572 #define TEST_HARD_REG_CLASS(CLASS, REGNO) \
573   TEST_HARD_REG_BIT (reg_class_contents[ (int) (CLASS)], REGNO)
574
575 /* Note that the other files fail to use these
576    in some of the places where they should.  */
577
578 #if defined(__STDC__) || defined(ALMOST_STDC)
579 #define AS2(a,b,c) #a " " #b "," #c
580 #define AS2C(b,c) " " #b "," #c
581 #define AS3(a,b,c,d) #a " " #b "," #c "," #d
582 #define AS1(a,b) #a " " #b
583 #else
584 #define AS1(a,b) "a     b"
585 #define AS2(a,b,c) "a   b,c"
586 #define AS2C(b,c) " b,c"
587 #define AS3(a,b,c,d) "a b,c,d"
588 #endif
589 #define OUT_AS1(a,b) output_asm_insn (AS1(a,b), operands)
590 #define OUT_AS2(a,b,c) output_asm_insn (AS2(a,b,c), operands)
591 #define CR_TAB "\n\t"
592
593 #define DWARF2_ADDR_SIZE 4
594
595 #define INCOMING_RETURN_ADDR_RTX   avr_incoming_return_addr_rtx ()
596 #define INCOMING_FRAME_SP_OFFSET   (AVR_3_BYTE_PC ? 3 : 2)
597
598 /* The caller's stack pointer value immediately before the call
599    is one byte below the first argument.  */
600 #define ARG_POINTER_CFA_OFFSET(FNDECL)  -1
601
602 #define HARD_REGNO_RENAME_OK(OLD_REG, NEW_REG) \
603   avr_hard_regno_rename_ok (OLD_REG, NEW_REG)
604
605 /* A C structure for machine-specific, per-function data.
606    This is added to the cfun structure.  */
607 struct GTY(()) machine_function
608 {
609   /* 'true' - if current function is a naked function.  */
610   int is_naked;
611
612   /* 'true' - if current function is an interrupt function 
613      as specified by the "interrupt" attribute.  */
614   int is_interrupt;
615
616   /* 'true' - if current function is a signal function 
617      as specified by the "signal" attribute.  */
618   int is_signal;
619   
620   /* 'true' - if current function is a 'task' function 
621      as specified by the "OS_task" attribute.  */
622   int is_OS_task;
623
624   /* 'true' - if current function is a 'main' function 
625      as specified by the "OS_main" attribute.  */
626   int is_OS_main;
627   
628   /* Current function stack size.  */
629   int stack_usage;
630
631   /* 'true' if a callee might be tail called */
632   int sibcall_fails;
633 };
634
635 /* AVR does not round pushes, but the existance of this macro is
636    required in order for pushes to be generated.  */
637 #define PUSH_ROUNDING(X)        (X)