1 /* Definitions of target machine for GNU compiler,
2 for ATMEL AVR at90s8515, ATmega103/103L, ATmega603/603L microcontrollers.
3 Copyright (C) 1998-2013 Free Software Foundation, Inc.
4 Contributed by Denis Chertykov (chertykov@gmail.com)
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GCC 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.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 /* Id of the address space as used in c_register_addr_space */
27 /* Flavour of memory: 0 = RAM, 1 = Flash */
30 /* Width of pointer (in bytes) */
33 /* Name of the address space as visible to the user */
36 /* Segment (i.e. 64k memory chunk) number. */
39 /* Section prefix, e.g. ".progmem1.data" */
40 const char *section_name
;
43 extern const avr_addrspace_t avr_addrspace
[];
45 /* Known address spaces */
49 ADDR_SPACE_RAM
, /* ADDR_SPACE_GENERIC */
61 #define TARGET_CPU_CPP_BUILTINS() avr_cpu_cpp_builtins (pfile)
63 #define AVR_HAVE_JMP_CALL (avr_current_arch->have_jmp_call)
64 #define AVR_HAVE_MUL (avr_current_arch->have_mul)
65 #define AVR_HAVE_MOVW (avr_current_arch->have_movw_lpmx)
66 #define AVR_HAVE_LPMX (avr_current_arch->have_movw_lpmx)
67 #define AVR_HAVE_ELPM (avr_current_arch->have_elpm)
68 #define AVR_HAVE_ELPMX (avr_current_arch->have_elpmx)
69 #define AVR_HAVE_RAMPD (avr_current_arch->have_rampd)
70 #define AVR_HAVE_RAMPX (avr_current_arch->have_rampd)
71 #define AVR_HAVE_RAMPY (avr_current_arch->have_rampd)
72 #define AVR_HAVE_RAMPZ (avr_current_arch->have_elpm \
73 || avr_current_arch->have_rampd)
74 #define AVR_HAVE_EIJMP_EICALL (avr_current_arch->have_eijmp_eicall)
76 /* Handling of 8-bit SP versus 16-bit SP is as follows:
78 -msp8 is used internally to select the right multilib for targets with
79 8-bit SP. -msp8 is set automatically by DRIVER_SELF_SPECS for devices
80 with 8-bit SP or by multilib generation machinery. If a frame pointer is
81 needed and SP is only 8 bits wide, SP is zero-extended to get FP.
83 TARGET_TINY_STACK is triggered by -mtiny-stack which is a user option.
84 This option has no effect on multilib selection. It serves to save some
85 bytes on 16-bit SP devices by only changing SP_L and leaving SP_H alone.
87 These two properties are reflected by built-in macros __AVR_SP8__ resp.
88 __AVR_HAVE_8BIT_SP__ and __AVR_HAVE_16BIT_SP__. During multilib generation
89 there is always __AVR_SP8__ == __AVR_HAVE_8BIT_SP__. */
91 #define AVR_HAVE_8BIT_SP \
92 (avr_current_device->short_sp || TARGET_TINY_STACK || avr_sp8)
94 #define AVR_HAVE_SPH (!avr_sp8)
96 #define AVR_2_BYTE_PC (!AVR_HAVE_EIJMP_EICALL)
97 #define AVR_3_BYTE_PC (AVR_HAVE_EIJMP_EICALL)
99 #define AVR_XMEGA (avr_current_arch->xmega_p)
101 #define BITS_BIG_ENDIAN 0
102 #define BYTES_BIG_ENDIAN 0
103 #define WORDS_BIG_ENDIAN 0
106 /* This is to get correct SI and DI modes in libgcc2.c (32 and 64 bits). */
107 #define UNITS_PER_WORD 4
109 /* Width of a word, in units (bytes). */
110 #define UNITS_PER_WORD 1
113 #define POINTER_SIZE 16
116 /* Maximum sized of reasonable data type
117 DImode or Dfmode ... */
118 #define MAX_FIXED_MODE_SIZE 32
120 #define PARM_BOUNDARY 8
122 #define FUNCTION_BOUNDARY 8
124 #define EMPTY_FIELD_BOUNDARY 8
126 /* No data type wants to be aligned rounder than this. */
127 #define BIGGEST_ALIGNMENT 8
129 #define TARGET_VTABLE_ENTRY_ALIGN 8
131 #define STRICT_ALIGNMENT 0
133 #define INT_TYPE_SIZE (TARGET_INT8 ? 8 : 16)
134 #define SHORT_TYPE_SIZE (INT_TYPE_SIZE == 8 ? INT_TYPE_SIZE : 16)
135 #define LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 16 : 32)
136 #define LONG_LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 32 : 64)
137 #define FLOAT_TYPE_SIZE 32
138 #define DOUBLE_TYPE_SIZE 32
139 #define LONG_DOUBLE_TYPE_SIZE 32
140 #define LONG_LONG_ACCUM_TYPE_SIZE 64
142 #define DEFAULT_SIGNED_CHAR 1
144 #define SIZE_TYPE (INT_TYPE_SIZE == 8 ? "long unsigned int" : "unsigned int")
145 #define PTRDIFF_TYPE (INT_TYPE_SIZE == 8 ? "long int" :"int")
147 #define WCHAR_TYPE_SIZE 16
149 #define FIRST_PSEUDO_REGISTER 36
151 #define FIXED_REGISTERS {\
169 1,1 /* arg pointer */ }
171 #define CALL_USED_REGISTERS { \
189 1,1 /* arg pointer */ }
191 #define REG_ALLOC_ORDER { \
199 17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2, \
204 #define ADJUST_REG_ALLOC_ORDER avr_adjust_reg_alloc_order()
207 #define HARD_REGNO_NREGS(REGNO, MODE) \
208 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
210 #define HARD_REGNO_MODE_OK(REGNO, MODE) avr_hard_regno_mode_ok(REGNO, MODE)
212 #define MODES_TIEABLE_P(MODE1, MODE2) 1
217 POINTER_X_REGS
, /* r26 - r27 */
218 POINTER_Y_REGS
, /* r28 - r29 */
219 POINTER_Z_REGS
, /* r30 - r31 */
220 STACK_REG
, /* STACK */
221 BASE_POINTER_REGS
, /* r28 - r31 */
222 POINTER_REGS
, /* r26 - r31 */
223 ADDW_REGS
, /* r24 - r31 */
224 SIMPLE_LD_REGS
, /* r16 - r23 */
225 LD_REGS
, /* r16 - r31 */
226 NO_LD_REGS
, /* r0 - r15 */
227 GENERAL_REGS
, /* r0 - r31 */
228 ALL_REGS
, LIM_REG_CLASSES
232 #define N_REG_CLASSES (int)LIM_REG_CLASSES
234 #define REG_CLASS_NAMES { \
237 "POINTER_X_REGS", /* r26 - r27 */ \
238 "POINTER_Y_REGS", /* r28 - r29 */ \
239 "POINTER_Z_REGS", /* r30 - r31 */ \
240 "STACK_REG", /* STACK */ \
241 "BASE_POINTER_REGS", /* r28 - r31 */ \
242 "POINTER_REGS", /* r26 - r31 */ \
243 "ADDW_REGS", /* r24 - r31 */ \
244 "SIMPLE_LD_REGS", /* r16 - r23 */ \
245 "LD_REGS", /* r16 - r31 */ \
246 "NO_LD_REGS", /* r0 - r15 */ \
247 "GENERAL_REGS", /* r0 - r31 */ \
250 #define REG_CLASS_CONTENTS { \
251 {0x00000000,0x00000000}, /* NO_REGS */ \
252 {0x00000001,0x00000000}, /* R0_REG */ \
253 {3 << REG_X,0x00000000}, /* POINTER_X_REGS, r26 - r27 */ \
254 {3 << REG_Y,0x00000000}, /* POINTER_Y_REGS, r28 - r29 */ \
255 {3 << REG_Z,0x00000000}, /* POINTER_Z_REGS, r30 - r31 */ \
256 {0x00000000,0x00000003}, /* STACK_REG, STACK */ \
257 {(3 << REG_Y) | (3 << REG_Z), \
258 0x00000000}, /* BASE_POINTER_REGS, r28 - r31 */ \
259 {(3 << REG_X) | (3 << REG_Y) | (3 << REG_Z), \
260 0x00000000}, /* POINTER_REGS, r26 - r31 */ \
261 {(3 << REG_X) | (3 << REG_Y) | (3 << REG_Z) | (3 << REG_W), \
262 0x00000000}, /* ADDW_REGS, r24 - r31 */ \
263 {0x00ff0000,0x00000000}, /* SIMPLE_LD_REGS r16 - r23 */ \
264 {(3 << REG_X)|(3 << REG_Y)|(3 << REG_Z)|(3 << REG_W)|(0xff << 16), \
265 0x00000000}, /* LD_REGS, r16 - r31 */ \
266 {0x0000ffff,0x00000000}, /* NO_LD_REGS r0 - r15 */ \
267 {0xffffffff,0x00000000}, /* GENERAL_REGS, r0 - r31 */ \
268 {0xffffffff,0x00000003} /* ALL_REGS */ \
271 #define REGNO_REG_CLASS(R) avr_regno_reg_class(R)
273 #define MODE_CODE_BASE_REG_CLASS(mode, as, outer_code, index_code) \
274 avr_mode_code_base_reg_class (mode, as, outer_code, index_code)
276 #define INDEX_REG_CLASS NO_REGS
278 #define REGNO_MODE_CODE_OK_FOR_BASE_P(num, mode, as, outer_code, index_code) \
279 avr_regno_mode_code_ok_for_base_p (num, mode, as, outer_code, index_code)
281 #define REGNO_OK_FOR_INDEX_P(NUM) 0
283 #define HARD_REGNO_CALL_PART_CLOBBERED(REGNO, MODE) \
284 avr_hard_regno_call_part_clobbered (REGNO, MODE)
286 #define TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P hook_bool_mode_true
288 #define STACK_PUSH_CODE POST_DEC
290 #define STACK_GROWS_DOWNWARD
292 #define STARTING_FRAME_OFFSET avr_starting_frame_offset()
294 #define STACK_POINTER_OFFSET 1
296 #define FIRST_PARM_OFFSET(FUNDECL) 0
298 #define STACK_BOUNDARY 8
300 #define STACK_POINTER_REGNUM 32
302 #define FRAME_POINTER_REGNUM REG_Y
304 #define ARG_POINTER_REGNUM 34
306 #define STATIC_CHAIN_REGNUM 2
308 #define ELIMINABLE_REGS { \
309 {ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM}, \
310 {FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM} \
311 ,{FRAME_POINTER_REGNUM+1,STACK_POINTER_REGNUM+1}}
313 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
314 OFFSET = avr_initial_elimination_offset (FROM, TO)
316 #define RETURN_ADDR_RTX(count, tem) avr_return_addr_rtx (count, tem)
318 /* Don't use Push rounding. expr.c: emit_single_push_insn is broken
319 for POST_DEC targets (PR27386). */
320 /*#define PUSH_ROUNDING(NPUSHED) (NPUSHED)*/
322 typedef struct avr_args
324 /* # Registers available for passing */
327 /* Next available register number */
331 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, FNDECL, N_NAMED_ARGS) \
332 avr_init_cumulative_args (&(CUM), FNTYPE, LIBNAME, FNDECL)
334 #define FUNCTION_ARG_REGNO_P(r) avr_function_arg_regno_p(r)
336 #define DEFAULT_PCC_STRUCT_RETURN 0
338 #define EPILOGUE_USES(REGNO) avr_epilogue_uses(REGNO)
340 #define HAVE_POST_INCREMENT 1
341 #define HAVE_PRE_DECREMENT 1
343 #define MAX_REGS_PER_ADDRESS 1
345 #define LEGITIMIZE_RELOAD_ADDRESS(X,MODE,OPNUM,TYPE,IND_L,WIN) \
347 rtx new_x = avr_legitimize_reload_address (&(X), MODE, OPNUM, TYPE, \
349 IND_L, make_memloc); \
357 #define BRANCH_COST(speed_p, predictable_p) avr_branch_cost
359 #define SLOW_BYTE_ACCESS 0
361 #define NO_FUNCTION_CSE
363 #define REGISTER_TARGET_PRAGMAS() \
365 avr_register_target_pragmas(); \
368 #define TEXT_SECTION_ASM_OP "\t.text"
370 #define DATA_SECTION_ASM_OP "\t.data"
372 #define BSS_SECTION_ASM_OP "\t.section .bss"
374 /* Define the pseudo-ops used to switch to the .ctors and .dtors sections.
375 There are no shared libraries on this target, and these sections are
376 placed in the read-only program memory, so they are not writable. */
378 #undef CTORS_SECTION_ASM_OP
379 #define CTORS_SECTION_ASM_OP "\t.section .ctors,\"a\",@progbits"
381 #undef DTORS_SECTION_ASM_OP
382 #define DTORS_SECTION_ASM_OP "\t.section .dtors,\"a\",@progbits"
384 #define TARGET_ASM_CONSTRUCTOR avr_asm_out_ctor
386 #define TARGET_ASM_DESTRUCTOR avr_asm_out_dtor
388 #define SUPPORTS_INIT_PRIORITY 0
390 #define JUMP_TABLES_IN_TEXT_SECTION 0
392 #define ASM_COMMENT_START " ; "
394 #define ASM_APP_ON "/* #APP */\n"
396 #define ASM_APP_OFF "/* #NOAPP */\n"
398 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C, STR) ((C) == '\n' || ((C) == '$'))
400 #define ASM_OUTPUT_ALIGNED_DECL_COMMON(STREAM, DECL, NAME, SIZE, ALIGN) \
401 avr_asm_output_aligned_decl_common (STREAM, DECL, NAME, SIZE, ALIGN, false)
403 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
404 asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
406 #define ASM_OUTPUT_ALIGNED_DECL_LOCAL(STREAM, DECL, NAME, SIZE, ALIGN) \
407 avr_asm_output_aligned_decl_common (STREAM, DECL, NAME, SIZE, ALIGN, true)
409 /* Globalizing directive for a label. */
410 #define GLOBAL_ASM_OP ".global\t"
412 #define SUPPORTS_WEAK 1
414 #define HAS_INIT_SECTION 1
416 #define REGISTER_NAMES { \
417 "r0","r1","r2","r3","r4","r5","r6","r7", \
418 "r8","r9","r10","r11","r12","r13","r14","r15", \
419 "r16","r17","r18","r19","r20","r21","r22","r23", \
420 "r24","r25","r26","r27","r28","r29","r30","r31", \
421 "__SP_L__","__SP_H__","argL","argH"}
423 #define FINAL_PRESCAN_INSN(insn, operand, nop) \
424 avr_final_prescan_insn (insn, operand,nop)
426 #define ASM_OUTPUT_REG_PUSH(STREAM, REGNO) \
428 gcc_assert (REGNO < 32); \
429 fprintf (STREAM, "\tpush\tr%d", REGNO); \
432 #define ASM_OUTPUT_REG_POP(STREAM, REGNO) \
434 gcc_assert (REGNO < 32); \
435 fprintf (STREAM, "\tpop\tr%d", REGNO); \
438 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \
439 avr_output_addr_vec_elt (STREAM, VALUE)
441 #define ASM_OUTPUT_ALIGN(STREAM, POWER) \
444 fprintf (STREAM, "\t.p2align\t%d\n", POWER); \
447 #define CASE_VECTOR_MODE HImode
449 #undef WORD_REGISTER_OPERATIONS
453 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
457 #define FUNCTION_MODE HImode
459 #define DOLLARS_IN_IDENTIFIERS 0
461 #define TRAMPOLINE_SIZE 4
463 /* Store in cc_status the expressions
464 that the condition codes will describe
465 after execution of an instruction whose pattern is EXP.
466 Do not alter them if the instruction would not alter the cc's. */
468 #define NOTICE_UPDATE_CC(EXP, INSN) avr_notice_update_cc (EXP, INSN)
470 /* The add insns don't set overflow in a usable way. */
471 #define CC_OVERFLOW_UNUSABLE 01000
472 /* The mov,and,or,xor insns don't set carry. That's ok though as the
473 Z bit is all we need when doing unsigned comparisons on the result of
474 these insns (since they're always with 0). However, conditions.h has
475 CC_NO_OVERFLOW defined for this purpose. Rename it to something more
477 #define CC_NO_CARRY CC_NO_OVERFLOW
480 /* Output assembler code to FILE to increment profiler label # LABELNO
481 for profiling a function entry. */
483 #define FUNCTION_PROFILER(FILE, LABELNO) \
484 fprintf (FILE, "/* profiler %d */", (LABELNO))
486 #define ADJUST_INSN_LENGTH(INSN, LENGTH) \
487 (LENGTH = avr_adjust_insn_length (INSN, LENGTH))
489 extern const char *avr_device_to_as (int argc
, const char **argv
);
490 extern const char *avr_device_to_ld (int argc
, const char **argv
);
491 extern const char *avr_device_to_data_start (int argc
, const char **argv
);
492 extern const char *avr_device_to_startfiles (int argc
, const char **argv
);
493 extern const char *avr_device_to_devicelib (int argc
, const char **argv
);
494 extern const char *avr_device_to_sp8 (int argc
, const char **argv
);
496 #define EXTRA_SPEC_FUNCTIONS \
497 { "device_to_as", avr_device_to_as }, \
498 { "device_to_ld", avr_device_to_ld }, \
499 { "device_to_data_start", avr_device_to_data_start }, \
500 { "device_to_startfile", avr_device_to_startfiles }, \
501 { "device_to_devicelib", avr_device_to_devicelib }, \
502 { "device_to_sp8", avr_device_to_sp8 },
504 #define DRIVER_SELF_SPECS " %:device_to_sp8(%{mmcu=*:%*}) "
509 #define CC1PLUS_SPEC "%{!frtti:-fno-rtti} \
510 %{!fenforce-eh-specs:-fno-enforce-eh-specs} \
511 %{!fexceptions:-fno-exceptions}"
513 #define ASM_SPEC "%:device_to_as(%{mmcu=*:%*}) "
517 %{mpmem-wrap-around:%{mmcu=at90usb8*:--pmem-wrap-around=8k}\
518 %{mmcu=atmega16*:--pmem-wrap-around=16k}\
520 mmcu=at90can32*:--pmem-wrap-around=32k}\
523 mmcu=at90usb64*:--pmem-wrap-around=64k}}}\
524 %:device_to_ld(%{mmcu=*:%*})\
525 %:device_to_data_start(%{mmcu=*:%*})"
528 "%{!mmcu=at90s1*:%{!mmcu=attiny11:%{!mmcu=attiny12:%{!mmcu=attiny15:%{!mmcu=attiny28: -lc }}}}}"
530 #define LIBSTDCXX "gcc"
531 /* No libstdc++ for now. Empty string doesn't work. */
533 #define LIBGCC_SPEC \
534 "%{!mmcu=at90s1*:%{!mmcu=attiny11:%{!mmcu=attiny12:%{!mmcu=attiny15:%{!mmcu=attiny28: -lgcc }}}}}"
536 #define STARTFILE_SPEC "%:device_to_startfile(%{mmcu=*:%*})"
538 #define ENDFILE_SPEC ""
540 /* This is the default without any -mmcu=* option (AT90S*). */
541 #define MULTILIB_DEFAULTS { "mmcu=avr2" }
543 #define TEST_HARD_REG_CLASS(CLASS, REGNO) \
544 TEST_HARD_REG_BIT (reg_class_contents[ (int) (CLASS)], REGNO)
546 #define CR_TAB "\n\t"
548 #define DWARF2_ADDR_SIZE 4
550 #define INCOMING_RETURN_ADDR_RTX avr_incoming_return_addr_rtx ()
551 #define INCOMING_FRAME_SP_OFFSET (AVR_3_BYTE_PC ? 3 : 2)
553 /* The caller's stack pointer value immediately before the call
554 is one byte below the first argument. */
555 #define ARG_POINTER_CFA_OFFSET(FNDECL) -1
557 #define HARD_REGNO_RENAME_OK(OLD_REG, NEW_REG) \
558 avr_hard_regno_rename_ok (OLD_REG, NEW_REG)
560 /* A C structure for machine-specific, per-function data.
561 This is added to the cfun structure. */
562 struct GTY(()) machine_function
564 /* 'true' - if current function is a naked function. */
567 /* 'true' - if current function is an interrupt function
568 as specified by the "interrupt" attribute. */
571 /* 'true' - if current function is a signal function
572 as specified by the "signal" attribute. */
575 /* 'true' - if current function is a 'task' function
576 as specified by the "OS_task" attribute. */
579 /* 'true' - if current function is a 'main' function
580 as specified by the "OS_main" attribute. */
583 /* Current function stack size. */
586 /* 'true' if a callee might be tail called */
589 /* 'true' if the above is_foo predicates are sanity-checked to avoid
590 multiple diagnose for the same function. */
591 int attributes_checked_p
;
594 /* AVR does not round pushes, but the existence of this macro is
595 required in order for pushes to be generated. */
596 #define PUSH_ROUNDING(X) (X)
598 /* Define prototype here to avoid build warning. Some files using
599 ACCUMULATE_OUTGOING_ARGS (directly or indirectly) include
600 tm.h but not tm_p.h. */
601 extern int avr_accumulate_outgoing_args (void);
602 #define ACCUMULATE_OUTGOING_ARGS avr_accumulate_outgoing_args()
604 #define INIT_EXPANDERS avr_init_expanders()