OSDN Git Service

* config/avr/avr.h (AVR_HAVE_8BIT_SP): New macros.
[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 Free Software Foundation, Inc.
5    Contributed by Denis Chertykov (chertykov@gmail.com)
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
13
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3.  If not see
21 <http://www.gnu.org/licenses/>.  */
22
23 /* Names to predefine in the preprocessor for this target machine.  */
24
25 struct base_arch_s {
26   /* Assembler only.  */
27   int asm_only;
28
29   /* Core have 'MUL*' instructions.  */
30   int have_mul;
31
32   /* Core have 'CALL' and 'JMP' instructions.  */
33   int have_jmp_call;
34
35   /* Core have 'MOVW' and 'LPM Rx,Z' instructions.  */
36   int have_movw_lpmx;
37
38   /* Core have 'ELPM' instructions.  */
39   int have_elpm;
40
41   /* Core have 'ELPM Rx,Z' instructions.  */
42   int have_elpmx;
43
44   /* Core have 'EICALL' and 'EIJMP' instructions.  */
45   int have_eijmp_eicall;
46
47   /* Reserved for xmega architecture.  */
48   int reserved;
49
50   /* Reserved for xmega architecture.  */
51   int reserved2;
52   
53   /* Default start of data section address for architecture.  */
54   int default_data_section_start;
55
56   const char *const macro;
57   
58   /* Architecture name.  */
59   const char *const arch_name;  
60 };
61
62 /* These names are used as the index into the avr_arch_types[] table 
63    above.  */
64
65 enum avr_arch
66 {
67   ARCH_UNKNOWN,
68   ARCH_AVR1,
69   ARCH_AVR2,
70   ARCH_AVR25,
71   ARCH_AVR3,
72   ARCH_AVR31,
73   ARCH_AVR35,
74   ARCH_AVR4,
75   ARCH_AVR5,
76   ARCH_AVR51,
77   ARCH_AVR6
78 };
79
80 struct mcu_type_s {
81   /* Device name.  */
82   const char *const name;
83   
84   /* Index in avr_arch_types[].  */
85   int arch; 
86   
87   /* Must lie outside user's namespace.  NULL == no macro.  */
88   const char *const macro;
89   
90   /* Stack pointer have 8 bits width.  */
91   int short_sp;
92   
93   /* Start of data section.  */
94   int data_section_start;
95   
96   /* Name of device library.  */
97   const char *const library_name; 
98 };
99
100 extern const struct base_arch_s *avr_current_arch;
101 extern const struct mcu_type_s *avr_current_device;
102 extern const struct mcu_type_s avr_mcu_types[];
103 extern const struct base_arch_s avr_arch_types[];
104
105 #define TARGET_CPU_CPP_BUILTINS()       avr_cpu_cpp_builtins (pfile)
106
107 #if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS)
108 extern GTY(()) section *progmem_section;
109 #endif
110
111 #define AVR_HAVE_JMP_CALL (avr_current_arch->have_jmp_call && !TARGET_SHORT_CALLS)
112 #define AVR_HAVE_MUL (avr_current_arch->have_mul)
113 #define AVR_HAVE_MOVW (avr_current_arch->have_movw_lpmx)
114 #define AVR_HAVE_LPMX (avr_current_arch->have_movw_lpmx)
115 #define AVR_HAVE_RAMPZ (avr_current_arch->have_elpm)
116 #define AVR_HAVE_EIJMP_EICALL (avr_current_arch->have_eijmp_eicall)
117 #define AVR_HAVE_8BIT_SP (avr_current_device->short_sp || TARGET_TINY_STACK)
118
119 #define AVR_2_BYTE_PC (!AVR_HAVE_EIJMP_EICALL)
120 #define AVR_3_BYTE_PC (AVR_HAVE_EIJMP_EICALL)
121
122 #define TARGET_VERSION fprintf (stderr, " (GNU assembler syntax)");
123
124 #define OVERRIDE_OPTIONS avr_override_options ()
125
126 #define CAN_DEBUG_WITHOUT_FP
127
128 #define BITS_BIG_ENDIAN 0
129 #define BYTES_BIG_ENDIAN 0
130 #define WORDS_BIG_ENDIAN 0
131
132 #ifdef IN_LIBGCC2
133 /* This is to get correct SI and DI modes in libgcc2.c (32 and 64 bits).  */
134 #define UNITS_PER_WORD 4
135 #else
136 /* Width of a word, in units (bytes).  */
137 #define UNITS_PER_WORD 1
138 #endif
139
140 #define POINTER_SIZE 16
141
142
143 /* Maximum sized of reasonable data type
144    DImode or Dfmode ...  */
145 #define MAX_FIXED_MODE_SIZE 32
146
147 #define PARM_BOUNDARY 8
148
149 #define FUNCTION_BOUNDARY 8
150
151 #define EMPTY_FIELD_BOUNDARY 8
152
153 /* No data type wants to be aligned rounder than this.  */
154 #define BIGGEST_ALIGNMENT 8
155
156 #define MAX_OFILE_ALIGNMENT (32768 * 8)
157
158 #define TARGET_VTABLE_ENTRY_ALIGN 8
159
160 #define STRICT_ALIGNMENT 0
161
162 #define INT_TYPE_SIZE (TARGET_INT8 ? 8 : 16)
163 #define SHORT_TYPE_SIZE (INT_TYPE_SIZE == 8 ? INT_TYPE_SIZE : 16)
164 #define LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 16 : 32)
165 #define LONG_LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 32 : 64)
166 #define FLOAT_TYPE_SIZE 32
167 #define DOUBLE_TYPE_SIZE 32
168 #define LONG_DOUBLE_TYPE_SIZE 32
169
170 #define DEFAULT_SIGNED_CHAR 1
171
172 #define SIZE_TYPE (INT_TYPE_SIZE == 8 ? "long unsigned int" : "unsigned int")
173 #define PTRDIFF_TYPE (INT_TYPE_SIZE == 8 ? "long int" :"int")
174
175 #define WCHAR_TYPE_SIZE 16
176
177 #define FIRST_PSEUDO_REGISTER 36
178
179 #define FIXED_REGISTERS {\
180   1,1,/* r0 r1 */\
181   0,0,/* r2 r3 */\
182   0,0,/* r4 r5 */\
183   0,0,/* r6 r7 */\
184   0,0,/* r8 r9 */\
185   0,0,/* r10 r11 */\
186   0,0,/* r12 r13 */\
187   0,0,/* r14 r15 */\
188   0,0,/* r16 r17 */\
189   0,0,/* r18 r19 */\
190   0,0,/* r20 r21 */\
191   0,0,/* r22 r23 */\
192   0,0,/* r24 r25 */\
193   0,0,/* r26 r27 */\
194   0,0,/* r28 r29 */\
195   0,0,/* r30 r31 */\
196   1,1,/*  STACK */\
197   1,1 /* arg pointer */  }
198
199 #define CALL_USED_REGISTERS {                   \
200   1,1,/* r0 r1 */                               \
201     0,0,/* r2 r3 */                             \
202     0,0,/* r4 r5 */                             \
203     0,0,/* r6 r7 */                             \
204     0,0,/* r8 r9 */                             \
205     0,0,/* r10 r11 */                           \
206     0,0,/* r12 r13 */                           \
207     0,0,/* r14 r15 */                           \
208     0,0,/* r16 r17 */                           \
209     1,1,/* r18 r19 */                           \
210     1,1,/* r20 r21 */                           \
211     1,1,/* r22 r23 */                           \
212     1,1,/* r24 r25 */                           \
213     1,1,/* r26 r27 */                           \
214     0,0,/* r28 r29 */                           \
215     1,1,/* r30 r31 */                           \
216     1,1,/*  STACK */                            \
217     1,1 /* arg pointer */  }
218
219 #define REG_ALLOC_ORDER {                       \
220     24,25,                                      \
221     18,19,                                      \
222     20,21,                                      \
223     22,23,                                      \
224     30,31,                                      \
225     26,27,                                      \
226     28,29,                                      \
227     17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2,    \
228     0,1,                                        \
229     32,33,34,35                                 \
230     }
231
232 #define ORDER_REGS_FOR_LOCAL_ALLOC order_regs_for_local_alloc ()
233
234
235 #define HARD_REGNO_NREGS(REGNO, MODE) ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
236
237 #define HARD_REGNO_MODE_OK(REGNO, MODE) avr_hard_regno_mode_ok(REGNO, MODE)
238
239 #define MODES_TIEABLE_P(MODE1, MODE2) 1
240
241 enum reg_class {
242   NO_REGS,
243   R0_REG,                       /* r0 */
244   POINTER_X_REGS,               /* r26 - r27 */
245   POINTER_Y_REGS,               /* r28 - r29 */
246   POINTER_Z_REGS,               /* r30 - r31 */
247   STACK_REG,                    /* STACK */
248   BASE_POINTER_REGS,            /* r28 - r31 */
249   POINTER_REGS,                 /* r26 - r31 */
250   ADDW_REGS,                    /* r24 - r31 */
251   SIMPLE_LD_REGS,               /* r16 - r23 */
252   LD_REGS,                      /* r16 - r31 */
253   NO_LD_REGS,                   /* r0 - r15 */
254   GENERAL_REGS,                 /* r0 - r31 */
255   ALL_REGS, LIM_REG_CLASSES
256 };
257
258
259 #define N_REG_CLASSES (int)LIM_REG_CLASSES
260
261 #define REG_CLASS_NAMES {                                       \
262                  "NO_REGS",                                     \
263                    "R0_REG",    /* r0 */                        \
264                    "POINTER_X_REGS", /* r26 - r27 */            \
265                    "POINTER_Y_REGS", /* r28 - r29 */            \
266                    "POINTER_Z_REGS", /* r30 - r31 */            \
267                    "STACK_REG", /* STACK */                     \
268                    "BASE_POINTER_REGS", /* r28 - r31 */         \
269                    "POINTER_REGS", /* r26 - r31 */              \
270                    "ADDW_REGS", /* r24 - r31 */                 \
271                    "SIMPLE_LD_REGS", /* r16 - r23 */            \
272                    "LD_REGS",   /* r16 - r31 */                 \
273                    "NO_LD_REGS", /* r0 - r15 */                 \
274                    "GENERAL_REGS", /* r0 - r31 */               \
275                    "ALL_REGS" }
276
277 #define REG_CLASS_CONTENTS {                                            \
278   {0x00000000,0x00000000},      /* NO_REGS */                           \
279   {0x00000001,0x00000000},      /* R0_REG */                            \
280   {3 << REG_X,0x00000000},      /* POINTER_X_REGS, r26 - r27 */         \
281   {3 << REG_Y,0x00000000},      /* POINTER_Y_REGS, r28 - r29 */         \
282   {3 << REG_Z,0x00000000},      /* POINTER_Z_REGS, r30 - r31 */         \
283   {0x00000000,0x00000003},      /* STACK_REG, STACK */                  \
284   {(3 << REG_Y) | (3 << REG_Z),                                         \
285      0x00000000},               /* BASE_POINTER_REGS, r28 - r31 */      \
286   {(3 << REG_X) | (3 << REG_Y) | (3 << REG_Z),                          \
287      0x00000000},               /* POINTER_REGS, r26 - r31 */           \
288   {(3 << REG_X) | (3 << REG_Y) | (3 << REG_Z) | (3 << REG_W),           \
289      0x00000000},               /* ADDW_REGS, r24 - r31 */              \
290   {0x00ff0000,0x00000000},      /* SIMPLE_LD_REGS r16 - r23 */          \
291   {(3 << REG_X)|(3 << REG_Y)|(3 << REG_Z)|(3 << REG_W)|(0xff << 16),    \
292      0x00000000},       /* LD_REGS, r16 - r31 */                        \
293   {0x0000ffff,0x00000000},      /* NO_LD_REGS  r0 - r15 */              \
294   {0xffffffff,0x00000000},      /* GENERAL_REGS, r0 - r31 */            \
295   {0xffffffff,0x00000003}       /* ALL_REGS */                          \
296 }
297
298 #define REGNO_REG_CLASS(R) avr_regno_reg_class(R)
299
300 /* The following macro defines cover classes for Integrated Register
301    Allocator.  Cover classes is a set of non-intersected register
302    classes covering all hard registers used for register allocation
303    purpose.  Any move between two registers of a cover class should be
304    cheaper than load or store of the registers.  The macro value is
305    array of register classes with LIM_REG_CLASSES used as the end
306    marker.  */
307
308 #define IRA_COVER_CLASSES               \
309 {                                       \
310   GENERAL_REGS, LIM_REG_CLASSES         \
311 }
312
313 #define BASE_REG_CLASS (reload_completed ? BASE_POINTER_REGS : POINTER_REGS)
314
315 #define INDEX_REG_CLASS NO_REGS
316
317 #define REGNO_OK_FOR_BASE_P(r) (((r) < FIRST_PSEUDO_REGISTER            \
318                                  && ((r) == REG_X                       \
319                                      || (r) == REG_Y                    \
320                                      || (r) == REG_Z                    \
321                                      || (r) == ARG_POINTER_REGNUM))     \
322                                 || (reg_renumber                        \
323                                     && (reg_renumber[r] == REG_X        \
324                                         || reg_renumber[r] == REG_Y     \
325                                         || reg_renumber[r] == REG_Z     \
326                                         || (reg_renumber[r]             \
327                                             == ARG_POINTER_REGNUM))))
328
329 #define REGNO_OK_FOR_INDEX_P(NUM) 0
330
331 #define PREFERRED_RELOAD_CLASS(X, CLASS) preferred_reload_class(X,CLASS)
332
333 #define SMALL_REGISTER_CLASSES 1
334
335 #define CLASS_LIKELY_SPILLED_P(c) class_likely_spilled_p(c)
336
337 #define CLASS_MAX_NREGS(CLASS, MODE)   class_max_nregs (CLASS, MODE)
338
339 #define STACK_PUSH_CODE POST_DEC
340
341 #define STACK_GROWS_DOWNWARD
342
343 #define STARTING_FRAME_OFFSET 1
344
345 #define STACK_POINTER_OFFSET 1
346
347 #define FIRST_PARM_OFFSET(FUNDECL) 0
348
349 #define STACK_BOUNDARY 8
350
351 #define STACK_POINTER_REGNUM 32
352
353 #define FRAME_POINTER_REGNUM REG_Y
354
355 #define ARG_POINTER_REGNUM 34
356
357 #define STATIC_CHAIN_REGNUM 2
358
359 /* Offset from the frame pointer register value to the top of the stack.  */
360 #define FRAME_POINTER_CFA_OFFSET(FNDECL) 0
361
362 #define ELIMINABLE_REGS {                                       \
363       {ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM},               \
364         {FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}            \
365        ,{FRAME_POINTER_REGNUM+1,STACK_POINTER_REGNUM+1}}
366
367 #define CAN_ELIMINATE(FROM, TO) avr_can_eliminate (FROM, TO)
368
369 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET)                    \
370   OFFSET = avr_initial_elimination_offset (FROM, TO)
371
372 #define RETURN_ADDR_RTX(count, x) \
373   gen_rtx_MEM (Pmode, memory_address (Pmode, plus_constant (tem, 1)))
374
375 /* Don't use Push rounding. expr.c: emit_single_push_insn is broken 
376    for POST_DEC targets (PR27386).  */
377 /*#define PUSH_ROUNDING(NPUSHED) (NPUSHED)*/
378
379 #define RETURN_POPS_ARGS(FUNDECL, FUNTYPE, STACK_SIZE) 0
380
381 #define FUNCTION_ARG(CUM, MODE, TYPE, NAMED) (function_arg (&(CUM), MODE, TYPE, NAMED))
382
383 typedef struct avr_args {
384   int nregs;                    /* # registers available for passing */
385   int regno;                    /* next available register number */
386 } CUMULATIVE_ARGS;
387
388 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, FNDECL, N_NAMED_ARGS) \
389   init_cumulative_args (&(CUM), FNTYPE, LIBNAME, FNDECL)
390
391 #define FUNCTION_ARG_ADVANCE(CUM, MODE, TYPE, NAMED)    \
392   (function_arg_advance (&CUM, MODE, TYPE, NAMED))
393
394 #define FUNCTION_ARG_REGNO_P(r) function_arg_regno_p(r)
395
396 extern int avr_reg_order[];
397
398 #define RET_REGISTER avr_ret_register ()
399
400 #define LIBCALL_VALUE(MODE)  avr_libcall_value (MODE)
401
402 #define FUNCTION_VALUE_REGNO_P(N) ((int) (N) == RET_REGISTER)
403
404 #define DEFAULT_PCC_STRUCT_RETURN 0
405
406 #define EPILOGUE_USES(REGNO) avr_epilogue_uses(REGNO)
407
408 #define HAVE_POST_INCREMENT 1
409 #define HAVE_PRE_DECREMENT 1
410
411 #define CONSTANT_ADDRESS_P(X) CONSTANT_P (X)
412
413 #define MAX_REGS_PER_ADDRESS 1
414
415 #define REG_OK_FOR_BASE_NOSTRICT_P(X) \
416   (REGNO (X) >= FIRST_PSEUDO_REGISTER || REG_OK_FOR_BASE_STRICT_P(X))
417
418 #define REG_OK_FOR_BASE_STRICT_P(X) REGNO_OK_FOR_BASE_P (REGNO (X))
419
420 #ifdef REG_OK_STRICT
421 #  define REG_OK_FOR_BASE_P(X) REG_OK_FOR_BASE_STRICT_P (X)
422 #else
423 #  define REG_OK_FOR_BASE_P(X) REG_OK_FOR_BASE_NOSTRICT_P (X)
424 #endif
425
426 #define REG_OK_FOR_INDEX_P(X) 0
427
428 #define XEXP_(X,Y) (X)
429
430 /* LEGITIMIZE_RELOAD_ADDRESS will allow register R26/27 to be used, where it
431    is no worse than normal base pointers R28/29 and R30/31. For example:
432    If base offset is greater than 63 bytes or for R++ or --R addressing.  */
433    
434 #define LEGITIMIZE_RELOAD_ADDRESS(X, MODE, OPNUM, TYPE, IND_LEVELS, WIN)    \
435 do {                                                                        \
436   if (1&&(GET_CODE (X) == POST_INC || GET_CODE (X) == PRE_DEC))     \
437     {                                                                       \
438       push_reload (XEXP (X,0), XEXP (X,0), &XEXP (X,0), &XEXP (X,0),        \
439                    POINTER_REGS, GET_MODE (X),GET_MODE (X) , 0, 0,          \
440                    OPNUM, RELOAD_OTHER);                                    \
441       goto WIN;                                                             \
442     }                                                                       \
443   if (GET_CODE (X) == PLUS                                                  \
444       && REG_P (XEXP (X, 0))                                                \
445       && reg_equiv_constant[REGNO (XEXP (X, 0))] == 0                       \
446       && GET_CODE (XEXP (X, 1)) == CONST_INT                                \
447       && INTVAL (XEXP (X, 1)) >= 1)                                         \
448     {                                                                       \
449       int fit = INTVAL (XEXP (X, 1)) <= (64 - GET_MODE_SIZE (MODE));        \
450       if (fit)                                                              \
451         {                                                                   \
452           if (reg_equiv_address[REGNO (XEXP (X, 0))] != 0)                  \
453             {                                                               \
454               int regno = REGNO (XEXP (X, 0));                              \
455               rtx mem = make_memloc (X, regno);                             \
456               push_reload (XEXP (mem,0), NULL, &XEXP (mem,0), NULL,         \
457                            POINTER_REGS, Pmode, VOIDmode, 0, 0,             \
458                            1, ADDR_TYPE (TYPE));                            \
459               push_reload (mem, NULL_RTX, &XEXP (X, 0), NULL,               \
460                            BASE_POINTER_REGS, GET_MODE (X), VOIDmode, 0, 0, \
461                            OPNUM, TYPE);                                    \
462               goto WIN;                                                     \
463             }                                                               \
464         }                                                                   \
465       else if (! (frame_pointer_needed && XEXP (X,0) == frame_pointer_rtx)) \
466         {                                                                   \
467           push_reload (X, NULL_RTX, &X, NULL,                               \
468                        POINTER_REGS, GET_MODE (X), VOIDmode, 0, 0,          \
469                        OPNUM, TYPE);                                        \
470           goto WIN;                                                         \
471         }                                                                   \
472     }                                                                       \
473 } while(0)
474
475 #define LEGITIMATE_CONSTANT_P(X) 1
476
477 #define REGISTER_MOVE_COST(MODE, FROM, TO) ((FROM) == STACK_REG ? 6 \
478                                             : (TO) == STACK_REG ? 12 \
479                                             : 2)
480
481 #define MEMORY_MOVE_COST(MODE,CLASS,IN) ((MODE)==QImode ? 2 :   \
482                                          (MODE)==HImode ? 4 :   \
483                                          (MODE)==SImode ? 8 :   \
484                                          (MODE)==SFmode ? 8 : 16)
485
486 #define BRANCH_COST(speed_p, predictable_p) 0
487
488 #define SLOW_BYTE_ACCESS 0
489
490 #define NO_FUNCTION_CSE
491
492 #define TEXT_SECTION_ASM_OP "\t.text"
493
494 #define DATA_SECTION_ASM_OP "\t.data"
495
496 #define BSS_SECTION_ASM_OP "\t.section .bss"
497
498 /* Define the pseudo-ops used to switch to the .ctors and .dtors sections.
499    There are no shared libraries on this target, and these sections are
500    placed in the read-only program memory, so they are not writable.  */
501
502 #undef CTORS_SECTION_ASM_OP
503 #define CTORS_SECTION_ASM_OP "\t.section .ctors,\"a\",@progbits"
504
505 #undef DTORS_SECTION_ASM_OP
506 #define DTORS_SECTION_ASM_OP "\t.section .dtors,\"a\",@progbits"
507
508 #define TARGET_ASM_CONSTRUCTOR avr_asm_out_ctor
509
510 #define TARGET_ASM_DESTRUCTOR avr_asm_out_dtor
511
512 #define SUPPORTS_INIT_PRIORITY 0
513
514 #define JUMP_TABLES_IN_TEXT_SECTION 0
515
516 #define ASM_COMMENT_START " ; "
517
518 #define ASM_APP_ON "/* #APP */\n"
519
520 #define ASM_APP_OFF "/* #NOAPP */\n"
521
522 /* Switch into a generic section.  */
523 #define TARGET_ASM_NAMED_SECTION default_elf_asm_named_section
524 #define TARGET_ASM_INIT_SECTIONS avr_asm_init_sections
525
526 #define ASM_OUTPUT_ASCII(FILE, P, SIZE)  gas_output_ascii (FILE,P,SIZE)
527
528 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C, STR) ((C) == '\n' || ((C) == '$'))
529
530 #define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED)                     \
531 do {                                                                       \
532      fputs ("\t.comm ", (STREAM));                                         \
533      assemble_name ((STREAM), (NAME));                                     \
534      fprintf ((STREAM), ",%lu,1\n", (unsigned long)(SIZE));                \
535 } while (0)
536
537 #define ASM_OUTPUT_BSS(FILE, DECL, NAME, SIZE, ROUNDED)                 \
538   asm_output_bss ((FILE), (DECL), (NAME), (SIZE), (ROUNDED))
539
540 #define ASM_OUTPUT_LOCAL(STREAM, NAME, SIZE, ROUNDED)                   \
541 do {                                                                    \
542      fputs ("\t.lcomm ", (STREAM));                                     \
543      assemble_name ((STREAM), (NAME));                                  \
544      fprintf ((STREAM), ",%d\n", (int)(SIZE));                          \
545 } while (0)
546
547 #undef TYPE_ASM_OP
548 #undef SIZE_ASM_OP
549 #undef WEAK_ASM_OP
550 #define TYPE_ASM_OP     "\t.type\t"
551 #define SIZE_ASM_OP     "\t.size\t"
552 #define WEAK_ASM_OP     "\t.weak\t"
553 /* Define the strings used for the special svr4 .type and .size directives.
554    These strings generally do not vary from one system running svr4 to
555    another, but if a given system (e.g. m88k running svr) needs to use
556    different pseudo-op names for these, they may be overridden in the
557    file which includes this one.  */
558
559
560 #undef TYPE_OPERAND_FMT
561 #define TYPE_OPERAND_FMT        "@%s"
562 /* The following macro defines the format used to output the second
563    operand of the .type assembler directive.  Different svr4 assemblers
564    expect various different forms for this operand.  The one given here
565    is just a default.  You may need to override it in your machine-
566    specific tm.h file (depending upon the particulars of your assembler).  */
567
568 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL)             \
569 avr_asm_declare_function_name ((FILE), (NAME), (DECL))
570
571 #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL)                    \
572   do {                                                                  \
573     if (!flag_inhibit_size_directive)                                   \
574       ASM_OUTPUT_MEASURED_SIZE (FILE, FNAME);                           \
575   } while (0)
576
577 #define ASM_DECLARE_OBJECT_NAME(FILE, NAME, DECL)                       \
578 do {                                                                    \
579   ASM_OUTPUT_TYPE_DIRECTIVE (FILE, NAME, "object");                     \
580   size_directive_output = 0;                                            \
581   if (!flag_inhibit_size_directive && DECL_SIZE (DECL))                 \
582     {                                                                   \
583       size_directive_output = 1;                                        \
584       ASM_OUTPUT_SIZE_DIRECTIVE (FILE, NAME,                            \
585                                  int_size_in_bytes (TREE_TYPE (DECL))); \
586     }                                                                   \
587   ASM_OUTPUT_LABEL(FILE, NAME);                                         \
588 } while (0)
589
590 #undef ASM_FINISH_DECLARE_OBJECT
591 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP_LEVEL, AT_END)         \
592 do {                                                                     \
593      const char *name = XSTR (XEXP (DECL_RTL (DECL), 0), 0);             \
594      HOST_WIDE_INT size;                                                 \
595      if (!flag_inhibit_size_directive && DECL_SIZE (DECL)                \
596          && ! AT_END && TOP_LEVEL                                        \
597          && DECL_INITIAL (DECL) == error_mark_node                       \
598          && !size_directive_output)                                      \
599        {                                                                 \
600          size_directive_output = 1;                                      \
601          size = int_size_in_bytes (TREE_TYPE (DECL));                    \
602          ASM_OUTPUT_SIZE_DIRECTIVE (FILE, name, size);                   \
603        }                                                                 \
604    } while (0)
605
606
607 #define ESCAPES \
608 "\1\1\1\1\1\1\1\1btn\1fr\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\
609 \0\0\"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
610 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\\\0\0\0\
611 \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1\
612 \1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\
613 \1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\
614 \1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\
615 \1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1"
616 /* A table of bytes codes used by the ASM_OUTPUT_ASCII and
617    ASM_OUTPUT_LIMITED_STRING macros.  Each byte in the table
618    corresponds to a particular byte value [0..255].  For any
619    given byte value, if the value in the corresponding table
620    position is zero, the given character can be output directly.
621    If the table value is 1, the byte must be output as a \ooo
622    octal escape.  If the tables value is anything else, then the
623    byte value should be output as a \ followed by the value
624    in the table.  Note that we can use standard UN*X escape
625    sequences for many control characters, but we don't use
626    \a to represent BEL because some svr4 assemblers (e.g. on
627    the i386) don't know about that.  Also, we don't use \v
628    since some versions of gas, such as 2.2 did not accept it.  */
629
630 #define STRING_LIMIT    ((unsigned) 64)
631 #define STRING_ASM_OP   "\t.string\t"
632 /* Some svr4 assemblers have a limit on the number of characters which
633    can appear in the operand of a .string directive.  If your assembler
634    has such a limitation, you should define STRING_LIMIT to reflect that
635    limit.  Note that at least some svr4 assemblers have a limit on the
636    actual number of bytes in the double-quoted string, and that they
637    count each character in an escape sequence as one byte.  Thus, an
638    escape sequence like \377 would count as four bytes.
639
640    If your target assembler doesn't support the .string directive, you
641    should define this to zero.  */
642
643 /* Globalizing directive for a label.  */
644 #define GLOBAL_ASM_OP ".global\t"
645
646 #define SET_ASM_OP      "\t.set\t"
647
648 #define ASM_WEAKEN_LABEL(FILE, NAME)    \
649   do                                    \
650     {                                   \
651       fputs ("\t.weak\t", (FILE));      \
652       assemble_name ((FILE), (NAME));   \
653       fputc ('\n', (FILE));             \
654     }                                   \
655   while (0)
656
657 #define SUPPORTS_WEAK 1
658
659 #define ASM_GENERATE_INTERNAL_LABEL(STRING, PREFIX, NUM)        \
660 sprintf (STRING, "*.%s%lu", PREFIX, (unsigned long)(NUM))
661
662 #define HAS_INIT_SECTION 1
663
664 #define REGISTER_NAMES {                                \
665   "r0","r1","r2","r3","r4","r5","r6","r7",              \
666     "r8","r9","r10","r11","r12","r13","r14","r15",      \
667     "r16","r17","r18","r19","r20","r21","r22","r23",    \
668     "r24","r25","r26","r27","r28","r29","r30","r31",    \
669     "__SP_L__","__SP_H__","argL","argH"}
670
671 #define FINAL_PRESCAN_INSN(insn, operand, nop) final_prescan_insn (insn, operand,nop)
672
673 #define PRINT_OPERAND(STREAM, X, CODE) print_operand (STREAM, X, CODE)
674
675 #define PRINT_OPERAND_PUNCT_VALID_P(CODE) ((CODE) == '~' || (CODE) == '!')
676
677 #define PRINT_OPERAND_ADDRESS(STREAM, X) print_operand_address(STREAM, X)
678
679 #define USER_LABEL_PREFIX ""
680
681 #define ASSEMBLER_DIALECT AVR_HAVE_MOVW
682
683 #define ASM_OUTPUT_REG_PUSH(STREAM, REGNO)      \
684 {                                               \
685   gcc_assert (REGNO < 32);                      \
686   fprintf (STREAM, "\tpush\tr%d", REGNO);       \
687 }
688
689 #define ASM_OUTPUT_REG_POP(STREAM, REGNO)       \
690 {                                               \
691   gcc_assert (REGNO < 32);                      \
692   fprintf (STREAM, "\tpop\tr%d", REGNO);        \
693 }
694
695 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE)          \
696   avr_output_addr_vec_elt(STREAM, VALUE)
697
698 #define ASM_OUTPUT_CASE_LABEL(STREAM, PREFIX, NUM, TABLE) \
699   (switch_to_section (progmem_section), \
700    (*targetm.asm_out.internal_label) (STREAM, PREFIX, NUM))
701
702 #define ASM_OUTPUT_SKIP(STREAM, N)              \
703 fprintf (STREAM, "\t.skip %lu,0\n", (unsigned long)(N))
704
705 #define ASM_OUTPUT_ALIGN(STREAM, POWER)                 \
706   do {                                                  \
707       if ((POWER) > 1)                                  \
708           fprintf (STREAM, "\t.p2align\t%d\n", POWER);  \
709   } while (0)
710
711 #define CASE_VECTOR_MODE HImode
712
713 #undef WORD_REGISTER_OPERATIONS
714
715 #define MOVE_MAX 4
716
717 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
718
719 #define Pmode HImode
720
721 #define FUNCTION_MODE HImode
722
723 #define DOLLARS_IN_IDENTIFIERS 0
724
725 #define NO_DOLLAR_IN_LABEL 1
726
727 #define TRAMPOLINE_TEMPLATE(FILE) \
728   internal_error ("trampolines not supported")
729
730 #define TRAMPOLINE_SIZE 4
731
732 #define INITIALIZE_TRAMPOLINE(TRAMP, FNADDR, CXT)                             \
733 {                                                                             \
734   emit_move_insn (gen_rtx_MEM (HImode, plus_constant ((TRAMP), 2)), CXT);    \
735   emit_move_insn (gen_rtx_MEM (HImode, plus_constant ((TRAMP), 6)), FNADDR); \
736 }
737 /* Store in cc_status the expressions
738    that the condition codes will describe
739    after execution of an instruction whose pattern is EXP.
740    Do not alter them if the instruction would not alter the cc's.  */
741
742 #define NOTICE_UPDATE_CC(EXP, INSN) notice_update_cc(EXP, INSN)
743
744 /* The add insns don't set overflow in a usable way.  */
745 #define CC_OVERFLOW_UNUSABLE 01000
746 /* The mov,and,or,xor insns don't set carry.  That's ok though as the
747    Z bit is all we need when doing unsigned comparisons on the result of
748    these insns (since they're always with 0).  However, conditions.h has
749    CC_NO_OVERFLOW defined for this purpose.  Rename it to something more
750    understandable.  */
751 #define CC_NO_CARRY CC_NO_OVERFLOW
752
753
754 /* Output assembler code to FILE to increment profiler label # LABELNO
755    for profiling a function entry.  */
756
757 #define FUNCTION_PROFILER(FILE, LABELNO)  \
758   fprintf (FILE, "/* profiler %d */", (LABELNO))
759
760 #define ADJUST_INSN_LENGTH(INSN, LENGTH) (LENGTH =\
761                                           adjust_insn_length (INSN, LENGTH))
762
763 extern const char *avr_device_to_arch (int argc, const char **argv);
764 extern const char *avr_device_to_data_start (int argc, const char **argv);
765 extern const char *avr_device_to_startfiles (int argc, const char **argv);
766 extern const char *avr_device_to_devicelib (int argc, const char **argv);
767
768 #define EXTRA_SPEC_FUNCTIONS \
769   { "device_to_arch", avr_device_to_arch }, \
770   { "device_to_data_start", avr_device_to_data_start }, \
771   { "device_to_startfile", avr_device_to_startfiles }, \
772   { "device_to_devicelib", avr_device_to_devicelib },
773
774 #define CPP_SPEC "%{posix:-D_POSIX_SOURCE}"
775
776 #define CC1_SPEC "%{profile:-p}"
777
778 #define CC1PLUS_SPEC "%{!frtti:-fno-rtti} \
779     %{!fenforce-eh-specs:-fno-enforce-eh-specs} \
780     %{!fexceptions:-fno-exceptions}"
781 /* A C string constant that tells the GCC driver program options to
782    pass to `cc1plus'.  */
783
784 #define ASM_SPEC "%{mmcu=avr25:-mmcu=avr2;mmcu=avr35:-mmcu=avr3;mmcu=avr31:-mmcu=avr3;mmcu=avr51:-mmcu=avr5;\
785 mmcu=*:-mmcu=%*}"
786
787 #define LINK_SPEC "\
788 %{mrelax:--relax\
789          %{mpmem-wrap-around:%{mmcu=at90usb8*:--pmem-wrap-around=8k}\
790                              %{mmcu=atmega16*:--pmem-wrap-around=16k}\
791                              %{mmcu=atmega32*|\
792                                mmcu=at90can32*:--pmem-wrap-around=32k}\
793                              %{mmcu=atmega64*|\
794                                mmcu=at90can64*|\
795                                mmcu=at90usb64*:--pmem-wrap-around=64k}}}\
796 %:device_to_arch(%{mmcu=*:%*})\
797 %:device_to_data_start(%{mmcu=*:%*})"
798
799 #define LIB_SPEC \
800   "%{!mmcu=at90s1*:%{!mmcu=attiny11:%{!mmcu=attiny12:%{!mmcu=attiny15:%{!mmcu=attiny28: -lc }}}}}"
801
802 #define LIBSTDCXX "-lgcc"
803 /* No libstdc++ for now.  Empty string doesn't work.  */
804
805 #define LIBGCC_SPEC \
806   "%{!mmcu=at90s1*:%{!mmcu=attiny11:%{!mmcu=attiny12:%{!mmcu=attiny15:%{!mmcu=attiny28: -lgcc }}}}}"
807
808 #define STARTFILE_SPEC "%:device_to_startfile(%{mmcu=*:%*})"
809
810 #define ENDFILE_SPEC ""
811
812 /* This is the default without any -mmcu=* option (AT90S*).  */
813 #define MULTILIB_DEFAULTS { "mmcu=avr2" }
814
815 /* This is undefined macro for collect2 disabling */
816 #define LINKER_NAME "ld"
817
818 #define TEST_HARD_REG_CLASS(CLASS, REGNO) \
819   TEST_HARD_REG_BIT (reg_class_contents[ (int) (CLASS)], REGNO)
820
821 /* Note that the other files fail to use these
822    in some of the places where they should.  */
823
824 #if defined(__STDC__) || defined(ALMOST_STDC)
825 #define AS2(a,b,c) #a " " #b "," #c
826 #define AS2C(b,c) " " #b "," #c
827 #define AS3(a,b,c,d) #a " " #b "," #c "," #d
828 #define AS1(a,b) #a " " #b
829 #else
830 #define AS1(a,b) "a     b"
831 #define AS2(a,b,c) "a   b,c"
832 #define AS2C(b,c) " b,c"
833 #define AS3(a,b,c,d) "a b,c,d"
834 #endif
835 #define OUT_AS1(a,b) output_asm_insn (AS1(a,b), operands)
836 #define OUT_AS2(a,b,c) output_asm_insn (AS2(a,b,c), operands)
837 #define CR_TAB "\n\t"
838
839 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
840
841 #define DWARF2_DEBUGGING_INFO 1
842
843 #define DWARF2_ADDR_SIZE 4
844
845 #define OBJECT_FORMAT_ELF
846
847 #define HARD_REGNO_RENAME_OK(OLD_REG, NEW_REG) \
848   avr_hard_regno_rename_ok (OLD_REG, NEW_REG)
849
850 /* A C structure for machine-specific, per-function data.
851    This is added to the cfun structure.  */
852 struct GTY(()) machine_function
853 {
854   /* 'true' - if the current function is a leaf function.  */
855   int is_leaf;
856
857   /* 'true' - if current function is a naked function.  */
858   int is_naked;
859
860   /* 'true' - if current function is an interrupt function 
861      as specified by the "interrupt" attribute.  */
862   int is_interrupt;
863
864   /* 'true' - if current function is a signal function 
865      as specified by the "signal" attribute.  */
866   int is_signal;
867   
868   /* 'true' - if current function is a 'task' function 
869      as specified by the "OS_task" attribute.  */
870   int is_OS_task;
871
872   /* 'true' - if current function is a 'main' function 
873      as specified by the "OS_main" attribute.  */
874   int is_OS_main;
875 };