Rebase.
[official-gcc.git] / gcc / config / avr / avr.h
blob921502e3d0bfc1abe87eccbc0c615b84cace13e8
1 /* Definitions of target machine for GNU compiler,
2 for ATMEL AVR at90s8515, ATmega103/103L, ATmega603/603L microcontrollers.
3 Copyright (C) 1998-2014 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)
11 any later version.
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/>. */
22 typedef struct
24 /* Id of the address space as used in c_register_addr_space */
25 unsigned char id;
27 /* Flavour of memory: 0 = RAM, 1 = Flash */
28 int memory_class;
30 /* Width of pointer (in bytes) */
31 int pointer_size;
33 /* Name of the address space as visible to the user */
34 const char *name;
36 /* Segment (i.e. 64k memory chunk) number. */
37 int segment;
39 /* Section prefix, e.g. ".progmem1.data" */
40 const char *section_name;
41 } avr_addrspace_t;
43 extern const avr_addrspace_t avr_addrspace[];
45 /* Known address spaces */
47 enum
49 ADDR_SPACE_RAM, /* ADDR_SPACE_GENERIC */
50 ADDR_SPACE_FLASH,
51 ADDR_SPACE_FLASH1,
52 ADDR_SPACE_FLASH2,
53 ADDR_SPACE_FLASH3,
54 ADDR_SPACE_FLASH4,
55 ADDR_SPACE_FLASH5,
56 ADDR_SPACE_MEMX,
57 /* Sentinel */
58 ADDR_SPACE_COUNT
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->dev_attribute & AVR_SHORT_SP) || \
93 TARGET_TINY_STACK || avr_sp8)
95 #define AVR_HAVE_SPH (!avr_sp8)
97 #define AVR_2_BYTE_PC (!AVR_HAVE_EIJMP_EICALL)
98 #define AVR_3_BYTE_PC (AVR_HAVE_EIJMP_EICALL)
100 #define AVR_XMEGA (avr_current_arch->xmega_p)
102 #define BITS_BIG_ENDIAN 0
103 #define BYTES_BIG_ENDIAN 0
104 #define WORDS_BIG_ENDIAN 0
106 #ifdef IN_LIBGCC2
107 /* This is to get correct SI and DI modes in libgcc2.c (32 and 64 bits). */
108 #define UNITS_PER_WORD 4
109 #else
110 /* Width of a word, in units (bytes). */
111 #define UNITS_PER_WORD 1
112 #endif
114 #define POINTER_SIZE 16
117 /* Maximum sized of reasonable data type
118 DImode or Dfmode ... */
119 #define MAX_FIXED_MODE_SIZE 32
121 #define PARM_BOUNDARY 8
123 #define FUNCTION_BOUNDARY 8
125 #define EMPTY_FIELD_BOUNDARY 8
127 /* No data type wants to be aligned rounder than this. */
128 #define BIGGEST_ALIGNMENT 8
130 #define TARGET_VTABLE_ENTRY_ALIGN 8
132 #define STRICT_ALIGNMENT 0
134 #define INT_TYPE_SIZE (TARGET_INT8 ? 8 : 16)
135 #define SHORT_TYPE_SIZE (INT_TYPE_SIZE == 8 ? INT_TYPE_SIZE : 16)
136 #define LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 16 : 32)
137 #define LONG_LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 32 : 64)
138 #define FLOAT_TYPE_SIZE 32
139 #define DOUBLE_TYPE_SIZE 32
140 #define LONG_DOUBLE_TYPE_SIZE 32
141 #define LONG_LONG_ACCUM_TYPE_SIZE 64
143 #define DEFAULT_SIGNED_CHAR 1
145 #define SIZE_TYPE (INT_TYPE_SIZE == 8 ? "long unsigned int" : "unsigned int")
146 #define PTRDIFF_TYPE (INT_TYPE_SIZE == 8 ? "long int" :"int")
148 #define WCHAR_TYPE_SIZE 16
150 #define FIRST_PSEUDO_REGISTER 36
152 #define FIXED_REGISTERS {\
153 1,1,/* r0 r1 */\
154 0,0,/* r2 r3 */\
155 0,0,/* r4 r5 */\
156 0,0,/* r6 r7 */\
157 0,0,/* r8 r9 */\
158 0,0,/* r10 r11 */\
159 0,0,/* r12 r13 */\
160 0,0,/* r14 r15 */\
161 0,0,/* r16 r17 */\
162 0,0,/* r18 r19 */\
163 0,0,/* r20 r21 */\
164 0,0,/* r22 r23 */\
165 0,0,/* r24 r25 */\
166 0,0,/* r26 r27 */\
167 0,0,/* r28 r29 */\
168 0,0,/* r30 r31 */\
169 1,1,/* STACK */\
170 1,1 /* arg pointer */ }
172 #define CALL_USED_REGISTERS { \
173 1,1,/* r0 r1 */ \
174 0,0,/* r2 r3 */ \
175 0,0,/* r4 r5 */ \
176 0,0,/* r6 r7 */ \
177 0,0,/* r8 r9 */ \
178 0,0,/* r10 r11 */ \
179 0,0,/* r12 r13 */ \
180 0,0,/* r14 r15 */ \
181 0,0,/* r16 r17 */ \
182 1,1,/* r18 r19 */ \
183 1,1,/* r20 r21 */ \
184 1,1,/* r22 r23 */ \
185 1,1,/* r24 r25 */ \
186 1,1,/* r26 r27 */ \
187 0,0,/* r28 r29 */ \
188 1,1,/* r30 r31 */ \
189 1,1,/* STACK */ \
190 1,1 /* arg pointer */ }
192 #define REG_ALLOC_ORDER { \
193 24,25, \
194 18,19, \
195 20,21, \
196 22,23, \
197 30,31, \
198 26,27, \
199 28,29, \
200 17,16,15,14,13,12,11,10,9,8,7,6,5,4,3,2, \
201 0,1, \
202 32,33,34,35 \
205 #define ADJUST_REG_ALLOC_ORDER avr_adjust_reg_alloc_order()
208 #define HARD_REGNO_NREGS(REGNO, MODE) \
209 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
211 #define HARD_REGNO_MODE_OK(REGNO, MODE) avr_hard_regno_mode_ok(REGNO, MODE)
213 #define MODES_TIEABLE_P(MODE1, MODE2) 1
215 enum reg_class {
216 NO_REGS,
217 R0_REG, /* r0 */
218 POINTER_X_REGS, /* r26 - r27 */
219 POINTER_Y_REGS, /* r28 - r29 */
220 POINTER_Z_REGS, /* r30 - r31 */
221 STACK_REG, /* STACK */
222 BASE_POINTER_REGS, /* r28 - r31 */
223 POINTER_REGS, /* r26 - r31 */
224 ADDW_REGS, /* r24 - r31 */
225 SIMPLE_LD_REGS, /* r16 - r23 */
226 LD_REGS, /* r16 - r31 */
227 NO_LD_REGS, /* r0 - r15 */
228 GENERAL_REGS, /* r0 - r31 */
229 ALL_REGS, LIM_REG_CLASSES
233 #define N_REG_CLASSES (int)LIM_REG_CLASSES
235 #define REG_CLASS_NAMES { \
236 "NO_REGS", \
237 "R0_REG", /* r0 */ \
238 "POINTER_X_REGS", /* r26 - r27 */ \
239 "POINTER_Y_REGS", /* r28 - r29 */ \
240 "POINTER_Z_REGS", /* r30 - r31 */ \
241 "STACK_REG", /* STACK */ \
242 "BASE_POINTER_REGS", /* r28 - r31 */ \
243 "POINTER_REGS", /* r26 - r31 */ \
244 "ADDW_REGS", /* r24 - r31 */ \
245 "SIMPLE_LD_REGS", /* r16 - r23 */ \
246 "LD_REGS", /* r16 - r31 */ \
247 "NO_LD_REGS", /* r0 - r15 */ \
248 "GENERAL_REGS", /* r0 - r31 */ \
249 "ALL_REGS" }
251 #define REG_CLASS_CONTENTS { \
252 {0x00000000,0x00000000}, /* NO_REGS */ \
253 {0x00000001,0x00000000}, /* R0_REG */ \
254 {3u << REG_X,0x00000000}, /* POINTER_X_REGS, r26 - r27 */ \
255 {3u << REG_Y,0x00000000}, /* POINTER_Y_REGS, r28 - r29 */ \
256 {3u << REG_Z,0x00000000}, /* POINTER_Z_REGS, r30 - r31 */ \
257 {0x00000000,0x00000003}, /* STACK_REG, STACK */ \
258 {(3u << REG_Y) | (3u << REG_Z), \
259 0x00000000}, /* BASE_POINTER_REGS, r28 - r31 */ \
260 {(3u << REG_X) | (3u << REG_Y) | (3u << REG_Z), \
261 0x00000000}, /* POINTER_REGS, r26 - r31 */ \
262 {(3u << REG_X) | (3u << REG_Y) | (3u << REG_Z) | (3u << REG_W), \
263 0x00000000}, /* ADDW_REGS, r24 - r31 */ \
264 {0x00ff0000,0x00000000}, /* SIMPLE_LD_REGS r16 - r23 */ \
265 {(3u << REG_X)|(3u << REG_Y)|(3u << REG_Z)|(3u << REG_W)|(0xffu << 16),\
266 0x00000000}, /* LD_REGS, r16 - r31 */ \
267 {0x0000ffff,0x00000000}, /* NO_LD_REGS r0 - r15 */ \
268 {0xffffffff,0x00000000}, /* GENERAL_REGS, r0 - r31 */ \
269 {0xffffffff,0x00000003} /* ALL_REGS */ \
272 #define REGNO_REG_CLASS(R) avr_regno_reg_class(R)
274 #define MODE_CODE_BASE_REG_CLASS(mode, as, outer_code, index_code) \
275 avr_mode_code_base_reg_class (mode, as, outer_code, index_code)
277 #define INDEX_REG_CLASS NO_REGS
279 #define REGNO_MODE_CODE_OK_FOR_BASE_P(num, mode, as, outer_code, index_code) \
280 avr_regno_mode_code_ok_for_base_p (num, mode, as, outer_code, index_code)
282 #define REGNO_OK_FOR_INDEX_P(NUM) 0
284 #define HARD_REGNO_CALL_PART_CLOBBERED(REGNO, MODE) \
285 avr_hard_regno_call_part_clobbered (REGNO, MODE)
287 #define TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P hook_bool_mode_true
289 #define STACK_PUSH_CODE POST_DEC
291 #define STACK_GROWS_DOWNWARD
293 #define STARTING_FRAME_OFFSET avr_starting_frame_offset()
295 #define STACK_POINTER_OFFSET 1
297 #define FIRST_PARM_OFFSET(FUNDECL) 0
299 #define STACK_BOUNDARY 8
301 #define STACK_POINTER_REGNUM 32
303 #define FRAME_POINTER_REGNUM REG_Y
305 #define ARG_POINTER_REGNUM 34
307 #define STATIC_CHAIN_REGNUM 2
309 #define ELIMINABLE_REGS { \
310 {ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
311 {ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM}, \
312 {FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM} \
313 ,{FRAME_POINTER_REGNUM+1,STACK_POINTER_REGNUM+1}}
315 #define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
316 OFFSET = avr_initial_elimination_offset (FROM, TO)
318 #define RETURN_ADDR_RTX(count, tem) avr_return_addr_rtx (count, tem)
320 /* Don't use Push rounding. expr.c: emit_single_push_insn is broken
321 for POST_DEC targets (PR27386). */
322 /*#define PUSH_ROUNDING(NPUSHED) (NPUSHED)*/
324 typedef struct avr_args
326 /* # Registers available for passing */
327 int nregs;
329 /* Next available register number */
330 int regno;
331 } CUMULATIVE_ARGS;
333 #define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, FNDECL, N_NAMED_ARGS) \
334 avr_init_cumulative_args (&(CUM), FNTYPE, LIBNAME, FNDECL)
336 #define FUNCTION_ARG_REGNO_P(r) avr_function_arg_regno_p(r)
338 #define DEFAULT_PCC_STRUCT_RETURN 0
340 #define EPILOGUE_USES(REGNO) avr_epilogue_uses(REGNO)
342 #define HAVE_POST_INCREMENT 1
343 #define HAVE_PRE_DECREMENT 1
345 #define MAX_REGS_PER_ADDRESS 1
347 #define LEGITIMIZE_RELOAD_ADDRESS(X,MODE,OPNUM,TYPE,IND_L,WIN) \
348 do { \
349 rtx new_x = avr_legitimize_reload_address (&(X), MODE, OPNUM, TYPE, \
350 ADDR_TYPE (TYPE), \
351 IND_L, make_memloc); \
352 if (new_x) \
354 X = new_x; \
355 goto WIN; \
357 } while (0)
359 #define BRANCH_COST(speed_p, predictable_p) avr_branch_cost
361 #define SLOW_BYTE_ACCESS 0
363 #define NO_FUNCTION_CSE
365 #define REGISTER_TARGET_PRAGMAS() \
366 do { \
367 avr_register_target_pragmas(); \
368 } while (0)
370 #define TEXT_SECTION_ASM_OP "\t.text"
372 #define DATA_SECTION_ASM_OP "\t.data"
374 #define BSS_SECTION_ASM_OP "\t.section .bss"
376 /* Define the pseudo-ops used to switch to the .ctors and .dtors sections.
377 There are no shared libraries on this target, and these sections are
378 placed in the read-only program memory, so they are not writable. */
380 #undef CTORS_SECTION_ASM_OP
381 #define CTORS_SECTION_ASM_OP "\t.section .ctors,\"a\",@progbits"
383 #undef DTORS_SECTION_ASM_OP
384 #define DTORS_SECTION_ASM_OP "\t.section .dtors,\"a\",@progbits"
386 #define TARGET_ASM_CONSTRUCTOR avr_asm_out_ctor
388 #define TARGET_ASM_DESTRUCTOR avr_asm_out_dtor
390 #define SUPPORTS_INIT_PRIORITY 0
392 #define JUMP_TABLES_IN_TEXT_SECTION 0
394 #define ASM_COMMENT_START " ; "
396 #define ASM_APP_ON "/* #APP */\n"
398 #define ASM_APP_OFF "/* #NOAPP */\n"
400 #define IS_ASM_LOGICAL_LINE_SEPARATOR(C, STR) ((C) == '\n' || ((C) == '$'))
402 #define ASM_OUTPUT_ALIGNED_DECL_COMMON(STREAM, DECL, NAME, SIZE, ALIGN) \
403 avr_asm_output_aligned_decl_common (STREAM, DECL, NAME, SIZE, ALIGN, false)
405 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
406 asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
408 #define ASM_OUTPUT_ALIGNED_DECL_LOCAL(STREAM, DECL, NAME, SIZE, ALIGN) \
409 avr_asm_output_aligned_decl_common (STREAM, DECL, NAME, SIZE, ALIGN, true)
411 /* Globalizing directive for a label. */
412 #define GLOBAL_ASM_OP ".global\t"
414 #define SUPPORTS_WEAK 1
416 #define HAS_INIT_SECTION 1
418 #define REGISTER_NAMES { \
419 "r0","r1","r2","r3","r4","r5","r6","r7", \
420 "r8","r9","r10","r11","r12","r13","r14","r15", \
421 "r16","r17","r18","r19","r20","r21","r22","r23", \
422 "r24","r25","r26","r27","r28","r29","r30","r31", \
423 "__SP_L__","__SP_H__","argL","argH"}
425 #define FINAL_PRESCAN_INSN(insn, operand, nop) \
426 avr_final_prescan_insn (insn, operand,nop)
428 #define ASM_OUTPUT_REG_PUSH(STREAM, REGNO) \
430 gcc_assert (REGNO < 32); \
431 fprintf (STREAM, "\tpush\tr%d", REGNO); \
434 #define ASM_OUTPUT_REG_POP(STREAM, REGNO) \
436 gcc_assert (REGNO < 32); \
437 fprintf (STREAM, "\tpop\tr%d", REGNO); \
440 #define ASM_OUTPUT_ADDR_VEC_ELT(STREAM, VALUE) \
441 avr_output_addr_vec_elt (STREAM, VALUE)
443 #define ASM_OUTPUT_ALIGN(STREAM, POWER) \
444 do { \
445 if ((POWER) > 0) \
446 fprintf (STREAM, "\t.p2align\t%d\n", POWER); \
447 } while (0)
449 #define CASE_VECTOR_MODE HImode
451 #undef WORD_REGISTER_OPERATIONS
453 #define MOVE_MAX 4
455 #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
457 #define Pmode HImode
459 #define FUNCTION_MODE HImode
461 #define DOLLARS_IN_IDENTIFIERS 0
463 #define TRAMPOLINE_SIZE 4
465 /* Store in cc_status the expressions
466 that the condition codes will describe
467 after execution of an instruction whose pattern is EXP.
468 Do not alter them if the instruction would not alter the cc's. */
470 #define NOTICE_UPDATE_CC(EXP, INSN) avr_notice_update_cc (EXP, INSN)
472 /* The add insns don't set overflow in a usable way. */
473 #define CC_OVERFLOW_UNUSABLE 01000
474 /* The mov,and,or,xor insns don't set carry. That's ok though as the
475 Z bit is all we need when doing unsigned comparisons on the result of
476 these insns (since they're always with 0). However, conditions.h has
477 CC_NO_OVERFLOW defined for this purpose. Rename it to something more
478 understandable. */
479 #define CC_NO_CARRY CC_NO_OVERFLOW
482 /* Output assembler code to FILE to increment profiler label # LABELNO
483 for profiling a function entry. */
485 #define FUNCTION_PROFILER(FILE, LABELNO) \
486 fprintf (FILE, "/* profiler %d */", (LABELNO))
488 #define ADJUST_INSN_LENGTH(INSN, LENGTH) \
489 (LENGTH = avr_adjust_insn_length (INSN, LENGTH))
491 extern const char *avr_device_to_as (int argc, const char **argv);
492 extern const char *avr_device_to_ld (int argc, const char **argv);
493 extern const char *avr_device_to_data_start (int argc, const char **argv);
494 extern const char *avr_device_to_text_start (int argc, const char **argv);
495 extern const char *avr_device_to_startfiles (int argc, const char **argv);
496 extern const char *avr_device_to_devicelib (int argc, const char **argv);
497 extern const char *avr_device_to_sp8 (int argc, const char **argv);
499 #define EXTRA_SPEC_FUNCTIONS \
500 { "device_to_as", avr_device_to_as }, \
501 { "device_to_ld", avr_device_to_ld }, \
502 { "device_to_data_start", avr_device_to_data_start }, \
503 { "device_to_text_start", avr_device_to_text_start }, \
504 { "device_to_startfile", avr_device_to_startfiles }, \
505 { "device_to_devicelib", avr_device_to_devicelib }, \
506 { "device_to_sp8", avr_device_to_sp8 },
508 #define DRIVER_SELF_SPECS " %:device_to_sp8(%{mmcu=*:%*}) "
509 #define CPP_SPEC ""
511 #define CC1_SPEC ""
513 #define CC1PLUS_SPEC "%{!frtti:-fno-rtti} \
514 %{!fenforce-eh-specs:-fno-enforce-eh-specs} \
515 %{!fexceptions:-fno-exceptions}"
517 #define ASM_SPEC "%:device_to_as(%{mmcu=*:%*}) "
519 #define LINK_SPEC "\
520 %{mrelax:--relax\
521 %{mpmem-wrap-around:%{mmcu=at90usb8*:--pmem-wrap-around=8k}\
522 %{mmcu=atmega16*:--pmem-wrap-around=16k}\
523 %{mmcu=atmega32*|\
524 mmcu=at90can32*:--pmem-wrap-around=32k}\
525 %{mmcu=atmega64*|\
526 mmcu=at90can64*|\
527 mmcu=at90usb64*:--pmem-wrap-around=64k}}}\
528 %:device_to_ld(%{mmcu=*:%*})\
529 %:device_to_data_start(%{mmcu=*:%*})\
530 %:device_to_text_start(%{mmcu=*:%*}) \
531 %{shared:%eshared is not supported}"
533 #define LIB_SPEC \
534 "%{!mmcu=at90s1*:%{!mmcu=attiny11:%{!mmcu=attiny12:%{!mmcu=attiny15:%{!mmcu=attiny28: -lc }}}}}"
536 #define LIBSTDCXX "gcc"
537 /* No libstdc++ for now. Empty string doesn't work. */
539 #define LIBGCC_SPEC \
540 "%{!mmcu=at90s1*:%{!mmcu=attiny11:%{!mmcu=attiny12:%{!mmcu=attiny15:%{!mmcu=attiny28: -lgcc }}}}}"
542 #define STARTFILE_SPEC "%:device_to_startfile(%{mmcu=*:%*})"
544 #define ENDFILE_SPEC ""
546 /* This is the default without any -mmcu=* option (AT90S*). */
547 #define MULTILIB_DEFAULTS { "mmcu=avr2" }
549 #define TEST_HARD_REG_CLASS(CLASS, REGNO) \
550 TEST_HARD_REG_BIT (reg_class_contents[ (int) (CLASS)], REGNO)
552 #define CR_TAB "\n\t"
554 #define DWARF2_ADDR_SIZE 4
556 #define INCOMING_RETURN_ADDR_RTX avr_incoming_return_addr_rtx ()
557 #define INCOMING_FRAME_SP_OFFSET (AVR_3_BYTE_PC ? 3 : 2)
559 /* The caller's stack pointer value immediately before the call
560 is one byte below the first argument. */
561 #define ARG_POINTER_CFA_OFFSET(FNDECL) -1
563 #define HARD_REGNO_RENAME_OK(OLD_REG, NEW_REG) \
564 avr_hard_regno_rename_ok (OLD_REG, NEW_REG)
566 /* A C structure for machine-specific, per-function data.
567 This is added to the cfun structure. */
568 struct GTY(()) machine_function
570 /* 'true' - if current function is a naked function. */
571 int is_naked;
573 /* 'true' - if current function is an interrupt function
574 as specified by the "interrupt" attribute. */
575 int is_interrupt;
577 /* 'true' - if current function is a signal function
578 as specified by the "signal" attribute. */
579 int is_signal;
581 /* 'true' - if current function is a 'task' function
582 as specified by the "OS_task" attribute. */
583 int is_OS_task;
585 /* 'true' - if current function is a 'main' function
586 as specified by the "OS_main" attribute. */
587 int is_OS_main;
589 /* Current function stack size. */
590 int stack_usage;
592 /* 'true' if a callee might be tail called */
593 int sibcall_fails;
595 /* 'true' if the above is_foo predicates are sanity-checked to avoid
596 multiple diagnose for the same function. */
597 int attributes_checked_p;
600 /* AVR does not round pushes, but the existence of this macro is
601 required in order for pushes to be generated. */
602 #define PUSH_ROUNDING(X) (X)
604 /* Define prototype here to avoid build warning. Some files using
605 ACCUMULATE_OUTGOING_ARGS (directly or indirectly) include
606 tm.h but not tm_p.h. */
607 extern int avr_accumulate_outgoing_args (void);
608 #define ACCUMULATE_OUTGOING_ARGS avr_accumulate_outgoing_args()
610 #define INIT_EXPANDERS avr_init_expanders()