]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/arm/arm.h
reg-notes.def (REG_CFA_WINDOW_SAVE): New.
[thirdparty/gcc.git] / gcc / config / arm / arm.h
CommitLineData
f5a1b0d2 1/* Definitions of target machine for GNU compiler, for ARM.
cf011243 2 Copyright (C) 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
5e1b4d5a 3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
bf98ec6c 4 Free Software Foundation, Inc.
35d965d5 5 Contributed by Pieter `Tiggr' Schoenmakers (rcpieter@win.tue.nl)
8b109b37 6 and Martin Simmons (@harleqn.co.uk).
949d79eb 7 More major hacks by Richard Earnshaw (rearnsha@arm.com)
6cfc7210
NC
8 Minor hacks by Nick Clifton (nickc@cygnus.com)
9
4f448245 10 This file is part of GCC.
35d965d5 11
4f448245
NC
12 GCC is free software; you can redistribute it and/or modify it
13 under the terms of the GNU General Public License as published
2f83c7d6 14 by the Free Software Foundation; either version 3, or (at your
4f448245 15 option) any later version.
35d965d5 16
4f448245
NC
17 GCC is distributed in the hope that it will be useful, but WITHOUT
18 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
20 License for more details.
35d965d5 21
4f448245 22 You should have received a copy of the GNU General Public License
2f83c7d6
NC
23 along with GCC; see the file COPYING3. If not see
24 <http://www.gnu.org/licenses/>. */
35d965d5 25
88657302
RH
26#ifndef GCC_ARM_H
27#define GCC_ARM_H
b355a481 28
46107b99
RE
29/* We can't use enum machine_mode inside a generator file because it
30 hasn't been created yet; we shouldn't be using any code that
31 needs the real definition though, so this ought to be safe. */
32#ifdef GENERATOR_FILE
33#define MACHMODE int
34#else
35#include "insn-modes.h"
36#define MACHMODE enum machine_mode
37#endif
38
9403b7f7
RS
39#include "config/vxworks-dummy.h"
40
35fd3193 41/* The architecture define. */
78011587
PB
42extern char arm_arch_name[];
43
e6471be6
NB
44/* Target CPU builtins. */
45#define TARGET_CPU_CPP_BUILTINS() \
46 do \
47 { \
9b66ebb1
PB
48 /* Define __arm__ even when in thumb mode, for \
49 consistency with armcc. */ \
50 builtin_define ("__arm__"); \
61f0ccff 51 builtin_define ("__APCS_32__"); \
9b66ebb1 52 if (TARGET_THUMB) \
e6471be6 53 builtin_define ("__thumb__"); \
5b3e6663
PB
54 if (TARGET_THUMB2) \
55 builtin_define ("__thumb2__"); \
e6471be6
NB
56 \
57 if (TARGET_BIG_END) \
58 { \
59 builtin_define ("__ARMEB__"); \
60 if (TARGET_THUMB) \
61 builtin_define ("__THUMBEB__"); \
62 if (TARGET_LITTLE_WORDS) \
63 builtin_define ("__ARMWEL__"); \
64 } \
65 else \
66 { \
67 builtin_define ("__ARMEL__"); \
68 if (TARGET_THUMB) \
69 builtin_define ("__THUMBEL__"); \
70 } \
71 \
e6471be6
NB
72 if (TARGET_SOFT_FLOAT) \
73 builtin_define ("__SOFTFP__"); \
74 \
9b66ebb1 75 if (TARGET_VFP) \
b5b620a4
JT
76 builtin_define ("__VFP_FP__"); \
77 \
88f77cba
JB
78 if (TARGET_NEON) \
79 builtin_define ("__ARM_NEON__"); \
80 \
e6471be6
NB
81 /* Add a define for interworking. \
82 Needed when building libgcc.a. */ \
2ad4dcf9 83 if (arm_cpp_interwork) \
e6471be6
NB
84 builtin_define ("__THUMB_INTERWORK__"); \
85 \
86 builtin_assert ("cpu=arm"); \
87 builtin_assert ("machine=arm"); \
78011587
PB
88 \
89 builtin_define (arm_arch_name); \
90 if (arm_arch_cirrus) \
91 builtin_define ("__MAVERICK__"); \
92 if (arm_arch_xscale) \
93 builtin_define ("__XSCALE__"); \
94 if (arm_arch_iwmmxt) \
95 builtin_define ("__IWMMXT__"); \
4adf3e34 96 if (TARGET_AAPCS_BASED) \
12ffc7d5
CLT
97 { \
98 if (arm_pcs_default == ARM_PCS_AAPCS_VFP) \
99 builtin_define ("__ARM_PCS_VFP"); \
100 else if (arm_pcs_default == ARM_PCS_AAPCS) \
101 builtin_define ("__ARM_PCS"); \
102 builtin_define ("__ARM_EABI__"); \
103 } \
572070ef
PB
104 if (TARGET_IDIV) \
105 builtin_define ("__ARM_ARCH_EXT_IDIV__"); \
e6471be6
NB
106 } while (0)
107
ad7be009 108#include "config/arm/arm-opts.h"
9b66ebb1 109
78011587
PB
110enum target_cpus
111{
d98a72fd
RE
112#define ARM_CORE(NAME, IDENT, ARCH, FLAGS, COSTS) \
113 TARGET_CPU_##IDENT,
78011587
PB
114#include "arm-cores.def"
115#undef ARM_CORE
116 TARGET_CPU_generic
117};
118
9b66ebb1
PB
119/* The processor for which instructions should be scheduled. */
120extern enum processor_type arm_tune;
121
029e79eb
MS
122enum arm_sync_generator_tag
123 {
124 arm_sync_generator_omn,
125 arm_sync_generator_omrn
126 };
127
128/* Wrapper to pass around a polymorphic pointer to a sync instruction
129 generator and. */
130struct arm_sync_generator
131{
132 enum arm_sync_generator_tag op;
133 union
134 {
135 rtx (* omn) (rtx, rtx, rtx);
136 rtx (* omrn) (rtx, rtx, rtx, rtx);
137 } u;
138};
139
d5b7b3ae 140typedef enum arm_cond_code
89c7ca52
RE
141{
142 ARM_EQ = 0, ARM_NE, ARM_CS, ARM_CC, ARM_MI, ARM_PL, ARM_VS, ARM_VC,
143 ARM_HI, ARM_LS, ARM_GE, ARM_LT, ARM_GT, ARM_LE, ARM_AL, ARM_NV
d5b7b3ae
RE
144}
145arm_cc;
6cfc7210 146
d5b7b3ae 147extern arm_cc arm_current_cc;
ff9940b0 148
d5b7b3ae 149#define ARM_INVERSE_CONDITION_CODE(X) ((arm_cc) (((int)X) ^ 1))
89c7ca52 150
6cfc7210
NC
151extern int arm_target_label;
152extern int arm_ccfsm_state;
e2500fed 153extern GTY(()) rtx arm_target_insn;
d5b7b3ae 154/* The label of the current constant pool. */
e2500fed 155extern rtx pool_vector_label;
d5b7b3ae 156/* Set to 1 when a return insn is output, this means that the epilogue
d6b4baa4 157 is not needed. */
d5b7b3ae 158extern int return_used_this_function;
b76c3c4b
PB
159/* Callback to output language specific object attributes. */
160extern void (*arm_lang_output_object_attributes_hook)(void);
35d965d5 161\f
d6b4baa4 162/* Just in case configure has failed to define anything. */
7a801826
RE
163#ifndef TARGET_CPU_DEFAULT
164#define TARGET_CPU_DEFAULT TARGET_CPU_generic
165#endif
166
7a801826 167
5742588d 168#undef CPP_SPEC
78011587 169#define CPP_SPEC "%(subtarget_cpp_spec) \
5e1b4d5a
JM
170%{mfloat-abi=soft:%{mfloat-abi=hard: \
171 %e-mfloat-abi=soft and -mfloat-abi=hard may not be used together}} \
e6471be6
NB
172%{mbig-endian:%{mlittle-endian: \
173 %e-mbig-endian and -mlittle-endian may not be used together}}"
7a801826 174
be393ecf 175#ifndef CC1_SPEC
dfa08768 176#define CC1_SPEC ""
be393ecf 177#endif
7a801826
RE
178
179/* This macro defines names of additional specifications to put in the specs
180 that can be used in various specifications like CC1_SPEC. Its definition
181 is an initializer with a subgrouping for each command option.
182
183 Each subgrouping contains a string constant, that defines the
4f448245 184 specification name, and a string constant that used by the GCC driver
7a801826
RE
185 program.
186
187 Do not define this macro if it does not need to do anything. */
188#define EXTRA_SPECS \
38fc909b 189 { "subtarget_cpp_spec", SUBTARGET_CPP_SPEC }, \
7a801826
RE
190 SUBTARGET_EXTRA_SPECS
191
914a3b8c 192#ifndef SUBTARGET_EXTRA_SPECS
7a801826 193#define SUBTARGET_EXTRA_SPECS
914a3b8c
DM
194#endif
195
6cfc7210 196#ifndef SUBTARGET_CPP_SPEC
38fc909b 197#define SUBTARGET_CPP_SPEC ""
6cfc7210 198#endif
35d965d5
RS
199\f
200/* Run-time Target Specification. */
9b66ebb1 201#define TARGET_SOFT_FLOAT (arm_float_abi == ARM_FLOAT_ABI_SOFT)
72cdc543
PB
202/* Use hardware floating point instructions. */
203#define TARGET_HARD_FLOAT (arm_float_abi != ARM_FLOAT_ABI_SOFT)
204/* Use hardware floating point calling convention. */
205#define TARGET_HARD_FLOAT_ABI (arm_float_abi == ARM_FLOAT_ABI_HARD)
d79f3032
PB
206#define TARGET_FPA (arm_fpu_desc->model == ARM_FP_MODEL_FPA)
207#define TARGET_MAVERICK (arm_fpu_desc->model == ARM_FP_MODEL_MAVERICK)
208#define TARGET_VFP (arm_fpu_desc->model == ARM_FP_MODEL_VFP)
5a9335ef 209#define TARGET_IWMMXT (arm_arch_iwmmxt)
5b3e6663
PB
210#define TARGET_REALLY_IWMMXT (TARGET_IWMMXT && TARGET_32BIT)
211#define TARGET_IWMMXT_ABI (TARGET_32BIT && arm_abi == ARM_ABI_IWMMXT)
d5b7b3ae
RE
212#define TARGET_ARM (! TARGET_THUMB)
213#define TARGET_EITHER 1 /* (TARGET_ARM | TARGET_THUMB) */
c54c7322
RS
214#define TARGET_BACKTRACE (leaf_function_p () \
215 ? TARGET_TPCS_LEAF_FRAME \
216 : TARGET_TPCS_FRAME)
fdd695fd 217#define TARGET_LDRD (arm_arch5e && ARM_DOUBLEWORD_ALIGN)
b6685939
PB
218#define TARGET_AAPCS_BASED \
219 (arm_abi != ARM_ABI_APCS && arm_abi != ARM_ABI_ATPCS)
3ada8e17 220
d3585b76
DJ
221#define TARGET_HARD_TP (target_thread_pointer == TP_CP15)
222#define TARGET_SOFT_TP (target_thread_pointer == TP_SOFT)
ccdc2164 223#define TARGET_GNU2_TLS (target_tls_dialect == TLS_GNU2)
d3585b76 224
5b3e6663
PB
225/* Only 16-bit thumb code. */
226#define TARGET_THUMB1 (TARGET_THUMB && !arm_arch_thumb2)
227/* Arm or Thumb-2 32-bit code. */
228#define TARGET_32BIT (TARGET_ARM || arm_arch_thumb2)
229/* 32-bit Thumb-2 code. */
230#define TARGET_THUMB2 (TARGET_THUMB && arm_arch_thumb2)
bf98ec6c
PB
231/* Thumb-1 only. */
232#define TARGET_THUMB1_ONLY (TARGET_THUMB1 && !arm_arch_notm)
d79f3032
PB
233/* FPA emulator without LFM. */
234#define TARGET_FPA_EMU2 (TARGET_FPA && arm_fpu_desc->rev == 2)
5b3e6663 235
88f77cba 236/* The following two macros concern the ability to execute coprocessor
302c3d8e
PB
237 instructions for VFPv3 or NEON. TARGET_VFP3/TARGET_VFPD32 are currently
238 only ever tested when we know we are generating for VFP hardware; we need
239 to be more careful with TARGET_NEON as noted below. */
88f77cba 240
302c3d8e 241/* FPU is has the full VFPv3/NEON register file of 32 D registers. */
d79f3032 242#define TARGET_VFPD32 (TARGET_VFP && arm_fpu_desc->regs == VFP_REG_D32)
302c3d8e
PB
243
244/* FPU supports VFPv3 instructions. */
d79f3032 245#define TARGET_VFP3 (TARGET_VFP && arm_fpu_desc->rev >= 3)
302c3d8e 246
e0dc3601
PB
247/* FPU only supports VFP single-precision instructions. */
248#define TARGET_VFP_SINGLE (TARGET_VFP && arm_fpu_desc->regs == VFP_REG_SINGLE)
249
250/* FPU supports VFP double-precision instructions. */
251#define TARGET_VFP_DOUBLE (TARGET_VFP && arm_fpu_desc->regs != VFP_REG_SINGLE)
252
253/* FPU supports half-precision floating-point with NEON element load/store. */
d79f3032
PB
254#define TARGET_NEON_FP16 \
255 (TARGET_VFP && arm_fpu_desc->neon && arm_fpu_desc->fp16)
0fd8c3ad 256
e0dc3601
PB
257/* FPU supports VFP half-precision floating-point. */
258#define TARGET_FP16 (TARGET_VFP && arm_fpu_desc->fp16)
259
88f77cba
JB
260/* FPU supports Neon instructions. The setting of this macro gets
261 revealed via __ARM_NEON__ so we add extra guards upon TARGET_32BIT
262 and TARGET_HARD_FLOAT to ensure that NEON instructions are
263 available. */
264#define TARGET_NEON (TARGET_32BIT && TARGET_HARD_FLOAT \
d79f3032 265 && TARGET_VFP && arm_fpu_desc->neon)
f1adb0a9 266
5b3e6663
PB
267/* "DSP" multiply instructions, eg. SMULxy. */
268#define TARGET_DSP_MULTIPLY \
60bd3528 269 (TARGET_32BIT && arm_arch5e && (arm_arch_notm || arm_arch7em))
5b3e6663
PB
270/* Integer SIMD instructions, and extend-accumulate instructions. */
271#define TARGET_INT_SIMD \
60bd3528 272 (TARGET_32BIT && arm_arch6 && (arm_arch_notm || arm_arch7em))
5b3e6663 273
571191af 274/* Should MOVW/MOVT be used in preference to a constant pool. */
7ec70105
JB
275#define TARGET_USE_MOVT \
276 (arm_arch_thumb2 && !optimize_size && !current_tune->prefer_constant_pool)
571191af 277
5b3e6663
PB
278/* We could use unified syntax for arm mode, but for now we just use it
279 for Thumb-2. */
280#define TARGET_UNIFIED_ASM TARGET_THUMB2
281
029e79eb
MS
282/* Nonzero if this chip provides the DMB instruction. */
283#define TARGET_HAVE_DMB (arm_arch7)
284
285/* Nonzero if this chip implements a memory barrier via CP15. */
286#define TARGET_HAVE_DMB_MCR (arm_arch6k && ! TARGET_HAVE_DMB)
287
288/* Nonzero if this chip implements a memory barrier instruction. */
289#define TARGET_HAVE_MEMORY_BARRIER (TARGET_HAVE_DMB || TARGET_HAVE_DMB_MCR)
290
291/* Nonzero if this chip supports ldrex and strex */
292#define TARGET_HAVE_LDREX ((arm_arch6 && TARGET_ARM) || arm_arch7)
293
294/* Nonzero if this chip supports ldrex{bhd} and strex{bhd}. */
295#define TARGET_HAVE_LDREXBHD ((arm_arch6k && TARGET_ARM) || arm_arch7)
5b3e6663 296
572070ef
PB
297/* Nonzero if integer division instructions supported. */
298#define TARGET_IDIV ((TARGET_ARM && arm_arch_arm_hwdiv) \
299 || (TARGET_THUMB2 && arm_arch_thumb_hwdiv))
300
b3f8d95d
MM
301/* True iff the full BPABI is being used. If TARGET_BPABI is true,
302 then TARGET_AAPCS_BASED must be true -- but the converse does not
303 hold. TARGET_BPABI implies the use of the BPABI runtime library,
304 etc., in addition to just the AAPCS calling conventions. */
305#ifndef TARGET_BPABI
306#define TARGET_BPABI false
f676971a 307#endif
b3f8d95d 308
7816bea0
DJ
309/* Support for a compile-time default CPU, et cetera. The rules are:
310 --with-arch is ignored if -march or -mcpu are specified.
311 --with-cpu is ignored if -march or -mcpu are specified, and is overridden
312 by --with-arch.
313 --with-tune is ignored if -mtune or -mcpu are specified (but not affected
314 by -march).
5e1b4d5a 315 --with-float is ignored if -mfloat-abi is specified.
5848830f 316 --with-fpu is ignored if -mfpu is specified.
ccdc2164
NS
317 --with-abi is ignored if -mabi is specified.
318 --with-tls is ignored if -mtls-dialect is specified. */
7816bea0
DJ
319#define OPTION_DEFAULT_SPECS \
320 {"arch", "%{!march=*:%{!mcpu=*:-march=%(VALUE)}}" }, \
321 {"cpu", "%{!march=*:%{!mcpu=*:-mcpu=%(VALUE)}}" }, \
322 {"tune", "%{!mcpu=*:%{!mtune=*:-mtune=%(VALUE)}}" }, \
5e1b4d5a 323 {"float", "%{!mfloat-abi=*:-mfloat-abi=%(VALUE)}" }, \
5848830f 324 {"fpu", "%{!mfpu=*:-mfpu=%(VALUE)}"}, \
3cf94279 325 {"abi", "%{!mabi=*:-mabi=%(VALUE)}"}, \
ccdc2164
NS
326 {"mode", "%{!marm:%{!mthumb:-m%(VALUE)}}"}, \
327 {"tls", "%{!mtls-dialect:-mtls-dialect=%(VALUE)}"},
7816bea0 328
9b66ebb1
PB
329/* Which floating point model to use. */
330enum arm_fp_model
331{
332 ARM_FP_MODEL_UNKNOWN,
333 /* FPA model (Hardware or software). */
334 ARM_FP_MODEL_FPA,
335 /* Cirrus Maverick floating point model. */
336 ARM_FP_MODEL_MAVERICK,
337 /* VFP floating point model. */
338 ARM_FP_MODEL_VFP
339};
340
d79f3032 341enum vfp_reg_type
24f0c1b4 342{
70dd156a 343 VFP_NONE = 0,
d79f3032
PB
344 VFP_REG_D16,
345 VFP_REG_D32,
346 VFP_REG_SINGLE
24f0c1b4
RE
347};
348
d79f3032
PB
349extern const struct arm_fpu_desc
350{
351 const char *name;
352 enum arm_fp_model model;
353 int rev;
354 enum vfp_reg_type regs;
355 int neon;
356 int fp16;
357} *arm_fpu_desc;
358
359/* Which floating point hardware to schedule for. */
360extern int arm_fpu_attr;
71791e16 361
3d8532aa
PB
362#ifndef TARGET_DEFAULT_FLOAT_ABI
363#define TARGET_DEFAULT_FLOAT_ABI ARM_FLOAT_ABI_SOFT
364#endif
365
0fd8c3ad
SL
366#define LARGEST_EXPONENT_IS_NORMAL(bits) \
367 ((bits) == 16 && arm_fp16_format == ARM_FP16_FORMAT_ALTERNATIVE)
368
5848830f
PB
369#ifndef ARM_DEFAULT_ABI
370#define ARM_DEFAULT_ABI ARM_ABI_APCS
371#endif
372
9b66ebb1
PB
373/* Nonzero if this chip supports the ARM Architecture 3M extensions. */
374extern int arm_arch3m;
11c1a207 375
9b66ebb1 376/* Nonzero if this chip supports the ARM Architecture 4 extensions. */
11c1a207
RE
377extern int arm_arch4;
378
68d560d4
RE
379/* Nonzero if this chip supports the ARM Architecture 4T extensions. */
380extern int arm_arch4t;
381
9b66ebb1 382/* Nonzero if this chip supports the ARM Architecture 5 extensions. */
62b10bbc
NC
383extern int arm_arch5;
384
9b66ebb1 385/* Nonzero if this chip supports the ARM Architecture 5E extensions. */
b15bca31
RE
386extern int arm_arch5e;
387
9b66ebb1
PB
388/* Nonzero if this chip supports the ARM Architecture 6 extensions. */
389extern int arm_arch6;
390
029e79eb
MS
391/* Nonzero if this chip supports the ARM Architecture 6k extensions. */
392extern int arm_arch6k;
393
394/* Nonzero if this chip supports the ARM Architecture 7 extensions. */
395extern int arm_arch7;
396
5b3e6663
PB
397/* Nonzero if instructions not present in the 'M' profile can be used. */
398extern int arm_arch_notm;
399
60bd3528
PB
400/* Nonzero if instructions present in ARMv7E-M can be used. */
401extern int arm_arch7em;
402
f5a1b0d2
NC
403/* Nonzero if this chip can benefit from load scheduling. */
404extern int arm_ld_sched;
405
906668bb 406/* Nonzero if generating Thumb code, either Thumb-1 or Thumb-2. */
0616531f
RE
407extern int thumb_code;
408
906668bb
BS
409/* Nonzero if generating Thumb-1 code. */
410extern int thumb1_code;
411
f5a1b0d2 412/* Nonzero if this chip is a StrongARM. */
abac3b49 413extern int arm_tune_strongarm;
f5a1b0d2 414
9b6b54e2 415/* Nonzero if this chip is a Cirrus variant. */
78011587 416extern int arm_arch_cirrus;
9b6b54e2 417
5a9335ef
NC
418/* Nonzero if this chip supports Intel XScale with Wireless MMX technology. */
419extern int arm_arch_iwmmxt;
420
d19fb8e3 421/* Nonzero if this chip is an XScale. */
4b3c2e48
PB
422extern int arm_arch_xscale;
423
abac3b49 424/* Nonzero if tuning for XScale. */
4b3c2e48 425extern int arm_tune_xscale;
d19fb8e3 426
abac3b49
RE
427/* Nonzero if tuning for stores via the write buffer. */
428extern int arm_tune_wbuf;
f5a1b0d2 429
7612f14d
PB
430/* Nonzero if tuning for Cortex-A9. */
431extern int arm_tune_cortex_a9;
432
2ad4dcf9 433/* Nonzero if we should define __THUMB_INTERWORK__ in the
f676971a 434 preprocessor.
2ad4dcf9
RE
435 XXX This is a bit of a hack, it's intended to help work around
436 problems in GLD which doesn't understand that armv5t code is
437 interworking clean. */
438extern int arm_cpp_interwork;
439
5b3e6663
PB
440/* Nonzero if chip supports Thumb 2. */
441extern int arm_arch_thumb2;
442
572070ef
PB
443/* Nonzero if chip supports integer division instruction in ARM mode. */
444extern int arm_arch_arm_hwdiv;
445
446/* Nonzero if chip supports integer division instruction in Thumb mode. */
447extern int arm_arch_thumb_hwdiv;
5b3e6663 448
2ce9c1b9 449#ifndef TARGET_DEFAULT
c54c7322 450#define TARGET_DEFAULT (MASK_APCS_FRAME)
2ce9c1b9 451#endif
35d965d5 452
86efdc8e
PB
453/* Nonzero if PIC code requires explicit qualifiers to generate
454 PLT and GOT relocs rather than the assembler doing so implicitly.
ed0e6530
PB
455 Subtargets can override these if required. */
456#ifndef NEED_GOT_RELOC
457#define NEED_GOT_RELOC 0
458#endif
459#ifndef NEED_PLT_RELOC
460#define NEED_PLT_RELOC 0
e2723c62 461#endif
84306176
PB
462
463/* Nonzero if we need to refer to the GOT with a PC-relative
464 offset. In other words, generate
465
f676971a 466 .word _GLOBAL_OFFSET_TABLE_ - [. - (.Lxx + 8)]
84306176
PB
467
468 rather than
469
470 .word _GLOBAL_OFFSET_TABLE_ - (.Lxx + 8)
471
f676971a 472 The default is true, which matches NetBSD. Subtargets can
84306176
PB
473 override this if required. */
474#ifndef GOT_PCREL
475#define GOT_PCREL 1
476#endif
35d965d5
RS
477\f
478/* Target machine storage Layout. */
479
ff9940b0
RE
480
481/* Define this macro if it is advisable to hold scalars in registers
482 in a wider mode than that declared by the program. In such cases,
483 the value is constrained to be within the bounds of the declared
484 type, but kept valid in the wider mode. The signedness of the
485 extension may differ from that of the type. */
486
487/* It is far faster to zero extend chars than to sign extend them */
488
6cfc7210 489#define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
2ce9c1b9
RE
490 if (GET_MODE_CLASS (MODE) == MODE_INT \
491 && GET_MODE_SIZE (MODE) < 4) \
492 { \
493 if (MODE == QImode) \
494 UNSIGNEDP = 1; \
495 else if (MODE == HImode) \
61f0ccff 496 UNSIGNEDP = 1; \
2ce9c1b9 497 (MODE) = SImode; \
ff9940b0
RE
498 }
499
35d965d5
RS
500/* Define this if most significant bit is lowest numbered
501 in instructions that operate on numbered bit-fields. */
502#define BITS_BIG_ENDIAN 0
503
f676971a 504/* Define this if most significant byte of a word is the lowest numbered.
3ada8e17
DE
505 Most ARM processors are run in little endian mode, so that is the default.
506 If you want to have it run-time selectable, change the definition in a
507 cover file to be TARGET_BIG_ENDIAN. */
11c1a207 508#define BYTES_BIG_ENDIAN (TARGET_BIG_END != 0)
35d965d5
RS
509
510/* Define this if most significant word of a multiword number is the lowest
11c1a207
RE
511 numbered.
512 This is always false, even when in big-endian mode. */
ddee6aba
RE
513#define WORDS_BIG_ENDIAN (BYTES_BIG_ENDIAN && ! TARGET_LITTLE_WORDS)
514
11c1a207 515/* Define this if most significant word of doubles is the lowest numbered.
f0375c66
NC
516 The rules are different based on whether or not we use FPA-format,
517 VFP-format or some other floating point co-processor's format doubles. */
b5b620a4 518#define FLOAT_WORDS_BIG_ENDIAN (arm_float_words_big_endian ())
7fc6c9f0 519
35d965d5
RS
520#define UNITS_PER_WORD 4
521
5848830f 522/* True if natural alignment is used for doubleword types. */
b6685939
PB
523#define ARM_DOUBLEWORD_ALIGN TARGET_AAPCS_BASED
524
5848830f 525#define DOUBLEWORD_ALIGNMENT 64
35d965d5 526
5848830f 527#define PARM_BOUNDARY 32
5a9335ef 528
5848830f 529#define STACK_BOUNDARY (ARM_DOUBLEWORD_ALIGN ? DOUBLEWORD_ALIGNMENT : 32)
35d965d5 530
5848830f
PB
531#define PREFERRED_STACK_BOUNDARY \
532 (arm_abi == ARM_ABI_ATPCS ? 64 : STACK_BOUNDARY)
0977774b 533
f711a87a 534#define FUNCTION_BOUNDARY ((TARGET_THUMB && optimize_size) ? 16 : 32)
35d965d5 535
92928d71
AO
536/* The lowest bit is used to indicate Thumb-mode functions, so the
537 vbit must go into the delta field of pointers to member
538 functions. */
539#define TARGET_PTRMEMFUNC_VBIT_LOCATION ptrmemfunc_vbit_in_delta
540
35d965d5
RS
541#define EMPTY_FIELD_BOUNDARY 32
542
5848830f 543#define BIGGEST_ALIGNMENT (ARM_DOUBLEWORD_ALIGN ? DOUBLEWORD_ALIGNMENT : 32)
5a9335ef 544
27847754
NC
545/* XXX Blah -- this macro is used directly by libobjc. Since it
546 supports no vector modes, cut out the complexity and fall back
547 on BIGGEST_FIELD_ALIGNMENT. */
548#ifdef IN_TARGET_LIBS
8fca31a2 549#define BIGGEST_FIELD_ALIGNMENT 64
27847754 550#endif
5a9335ef 551
ff9940b0 552/* Make strings word-aligned so strcpy from constants will be faster. */
591af218 553#define CONSTANT_ALIGNMENT_FACTOR (TARGET_THUMB || ! arm_tune_xscale ? 1 : 2)
f676971a 554
d19fb8e3 555#define CONSTANT_ALIGNMENT(EXP, ALIGN) \
5848830f 556 ((TREE_CODE (EXP) == STRING_CST \
36b15ad0 557 && !optimize_size \
5848830f
PB
558 && (ALIGN) < BITS_PER_WORD * CONSTANT_ALIGNMENT_FACTOR) \
559 ? BITS_PER_WORD * CONSTANT_ALIGNMENT_FACTOR : (ALIGN))
ff9940b0 560
96339268
RE
561/* Align definitions of arrays, unions and structures so that
562 initializations and copies can be made more efficient. This is not
563 ABI-changing, so it only affects places where we can see the
0c86e0dd
CLT
564 definition. Increasing the alignment tends to introduce padding,
565 so don't do this when optimizing for size/conserving stack space. */
566#define ARM_EXPAND_ALIGNMENT(COND, EXP, ALIGN) \
567 (((COND) && ((ALIGN) < BITS_PER_WORD) \
96339268
RE
568 && (TREE_CODE (EXP) == ARRAY_TYPE \
569 || TREE_CODE (EXP) == UNION_TYPE \
570 || TREE_CODE (EXP) == RECORD_TYPE)) ? BITS_PER_WORD : (ALIGN))
571
0c86e0dd
CLT
572/* Align global data. */
573#define DATA_ALIGNMENT(EXP, ALIGN) \
574 ARM_EXPAND_ALIGNMENT(!optimize_size, EXP, ALIGN)
575
96339268 576/* Similarly, make sure that objects on the stack are sensibly aligned. */
0c86e0dd
CLT
577#define LOCAL_ALIGNMENT(EXP, ALIGN) \
578 ARM_EXPAND_ALIGNMENT(!flag_conserve_stack, EXP, ALIGN)
96339268 579
723ae7c1
NC
580/* Setting STRUCTURE_SIZE_BOUNDARY to 32 produces more efficient code, but the
581 value set in previous versions of this toolchain was 8, which produces more
582 compact structures. The command line option -mstructure_size_boundary=<n>
f710504c 583 can be used to change this value. For compatibility with the ARM SDK
723ae7c1 584 however the value should be left at 32. ARM SDT Reference Manual (ARM DUI
5848830f
PB
585 0020D) page 2-20 says "Structures are aligned on word boundaries".
586 The AAPCS specifies a value of 8. */
6ead9ba5 587#define STRUCTURE_SIZE_BOUNDARY arm_structure_size_boundary
723ae7c1 588
4912a07c 589/* This is the value used to initialize arm_structure_size_boundary. If a
723ae7c1 590 particular arm target wants to change the default value it should change
6bc82793 591 the definition of this macro, not STRUCTURE_SIZE_BOUNDARY. See netbsd.h
723ae7c1
NC
592 for an example of this. */
593#ifndef DEFAULT_STRUCTURE_SIZE_BOUNDARY
594#define DEFAULT_STRUCTURE_SIZE_BOUNDARY 32
b355a481 595#endif
2a5307b1 596
825dda42 597/* Nonzero if move instructions will actually fail to work
ff9940b0 598 when given unaligned data. */
35d965d5 599#define STRICT_ALIGNMENT 1
b6685939
PB
600
601/* wchar_t is unsigned under the AAPCS. */
602#ifndef WCHAR_TYPE
603#define WCHAR_TYPE (TARGET_AAPCS_BASED ? "unsigned int" : "int")
604
605#define WCHAR_TYPE_SIZE BITS_PER_WORD
606#endif
607
608#ifndef SIZE_TYPE
609#define SIZE_TYPE (TARGET_AAPCS_BASED ? "unsigned int" : "long unsigned int")
610#endif
d81d0bdd 611
077fc835
KH
612#ifndef PTRDIFF_TYPE
613#define PTRDIFF_TYPE (TARGET_AAPCS_BASED ? "int" : "long int")
614#endif
615
d81d0bdd
PB
616/* AAPCS requires that structure alignment is affected by bitfields. */
617#ifndef PCC_BITFIELD_TYPE_MATTERS
618#define PCC_BITFIELD_TYPE_MATTERS TARGET_AAPCS_BASED
619#endif
620
35d965d5
RS
621\f
622/* Standard register usage. */
623
624/* Register allocation in ARM Procedure Call Standard (as used on RISCiX):
625 (S - saved over call).
626
627 r0 * argument word/integer result
628 r1-r3 argument word
629
630 r4-r8 S register variable
631 r9 S (rfp) register variable (real frame pointer)
f676971a 632
f5a1b0d2 633 r10 F S (sl) stack limit (used by -mapcs-stack-check)
35d965d5
RS
634 r11 F S (fp) argument pointer
635 r12 (ip) temp workspace
636 r13 F S (sp) lower end of current stack frame
637 r14 (lr) link address/workspace
638 r15 F (pc) program counter
639
640 f0 floating point result
641 f1-f3 floating point scratch
642
643 f4-f7 S floating point variable
644
ff9940b0
RE
645 cc This is NOT a real register, but is used internally
646 to represent things that use or set the condition
647 codes.
648 sfp This isn't either. It is used during rtl generation
649 since the offset between the frame pointer and the
650 auto's isn't known until after register allocation.
651 afp Nor this, we only need this because of non-local
652 goto. Without it fp appears to be used and the
653 elimination code won't get rid of sfp. It tracks
654 fp exactly at all times.
655
5efd84c5 656 *: See TARGET_CONDITIONAL_REGISTER_USAGE */
35d965d5 657
9b6b54e2
NC
658/*
659 mvf0 Cirrus floating point result
660 mvf1-mvf3 Cirrus floating point scratch
661 mvf4-mvf15 S Cirrus floating point variable. */
662
9b66ebb1
PB
663/* s0-s15 VFP scratch (aka d0-d7).
664 s16-s31 S VFP variable (aka d8-d15).
665 vfpcc Not a real register. Represents the VFP condition
666 code flags. */
667
ff9940b0
RE
668/* The stack backtrace structure is as follows:
669 fp points to here: | save code pointer | [fp]
670 | return link value | [fp, #-4]
671 | return sp value | [fp, #-8]
672 | return fp value | [fp, #-12]
673 [| saved r10 value |]
674 [| saved r9 value |]
675 [| saved r8 value |]
676 [| saved r7 value |]
677 [| saved r6 value |]
678 [| saved r5 value |]
679 [| saved r4 value |]
680 [| saved r3 value |]
681 [| saved r2 value |]
682 [| saved r1 value |]
683 [| saved r0 value |]
684 [| saved f7 value |] three words
685 [| saved f6 value |] three words
686 [| saved f5 value |] three words
687 [| saved f4 value |] three words
688 r0-r3 are not normally saved in a C function. */
689
35d965d5
RS
690/* 1 for registers that have pervasive standard uses
691 and are not available for the register allocator. */
9b66ebb1
PB
692#define FIXED_REGISTERS \
693{ \
694 0,0,0,0,0,0,0,0, \
695 0,0,0,0,0,1,0,1, \
696 0,0,0,0,0,0,0,0, \
9b6b54e2
NC
697 1,1,1, \
698 1,1,1,1,1,1,1,1, \
9b66ebb1
PB
699 1,1,1,1,1,1,1,1, \
700 1,1,1,1,1,1,1,1, \
701 1,1,1,1,1,1,1,1, \
702 1,1,1,1, \
703 1,1,1,1,1,1,1,1, \
704 1,1,1,1,1,1,1,1, \
705 1,1,1,1,1,1,1,1, \
706 1,1,1,1,1,1,1,1, \
f1adb0a9
JB
707 1,1,1,1,1,1,1,1, \
708 1,1,1,1,1,1,1,1, \
709 1,1,1,1,1,1,1,1, \
710 1,1,1,1,1,1,1,1, \
9b66ebb1 711 1 \
35d965d5
RS
712}
713
714/* 1 for registers not available across function calls.
715 These must include the FIXED_REGISTERS and also any
716 registers that can be used without being saved.
717 The latter must include the registers where values are returned
718 and the register where structure-value addresses are passed.
ff9940b0 719 Aside from that, you can include as many other registers as you like.
f676971a 720 The CC is not preserved over function calls on the ARM 6, so it is
d6b4baa4 721 easier to assume this for all. SFP is preserved, since FP is. */
35d965d5
RS
722#define CALL_USED_REGISTERS \
723{ \
724 1,1,1,1,0,0,0,0, \
d5b7b3ae 725 0,0,0,0,1,1,1,1, \
ff9940b0 726 1,1,1,1,0,0,0,0, \
9b6b54e2
NC
727 1,1,1, \
728 1,1,1,1,1,1,1,1, \
5a9335ef
NC
729 1,1,1,1,1,1,1,1, \
730 1,1,1,1,1,1,1,1, \
731 1,1,1,1,1,1,1,1, \
9b66ebb1
PB
732 1,1,1,1, \
733 1,1,1,1,1,1,1,1, \
734 1,1,1,1,1,1,1,1, \
735 1,1,1,1,1,1,1,1, \
736 1,1,1,1,1,1,1,1, \
f1adb0a9
JB
737 1,1,1,1,1,1,1,1, \
738 1,1,1,1,1,1,1,1, \
739 1,1,1,1,1,1,1,1, \
740 1,1,1,1,1,1,1,1, \
9b66ebb1 741 1 \
35d965d5
RS
742}
743
6cc8c0b3
NC
744#ifndef SUBTARGET_CONDITIONAL_REGISTER_USAGE
745#define SUBTARGET_CONDITIONAL_REGISTER_USAGE
746#endif
747
6bc82793 748/* These are a couple of extensions to the formats accepted
dd18ae56
NC
749 by asm_fprintf:
750 %@ prints out ASM_COMMENT_START
751 %r prints out REGISTER_PREFIX reg_names[arg] */
752#define ASM_FPRINTF_EXTENSIONS(FILE, ARGS, P) \
753 case '@': \
754 fputs (ASM_COMMENT_START, FILE); \
755 break; \
756 \
757 case 'r': \
758 fputs (REGISTER_PREFIX, FILE); \
759 fputs (reg_names [va_arg (ARGS, int)], FILE); \
760 break;
761
d5b7b3ae 762/* Round X up to the nearest word. */
0c2ca901 763#define ROUND_UP_WORD(X) (((X) + 3) & ~3)
d5b7b3ae 764
6cfc7210 765/* Convert fron bytes to ints. */
e9d7b180 766#define ARM_NUM_INTS(X) (((X) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
6cfc7210 767
9b66ebb1
PB
768/* The number of (integer) registers required to hold a quantity of type MODE.
769 Also used for VFP registers. */
e9d7b180
JD
770#define ARM_NUM_REGS(MODE) \
771 ARM_NUM_INTS (GET_MODE_SIZE (MODE))
6cfc7210
NC
772
773/* The number of (integer) registers required to hold a quantity of TYPE MODE. */
e9d7b180
JD
774#define ARM_NUM_REGS2(MODE, TYPE) \
775 ARM_NUM_INTS ((MODE) == BLKmode ? \
d5b7b3ae 776 int_size_in_bytes (TYPE) : GET_MODE_SIZE (MODE))
6cfc7210
NC
777
778/* The number of (integer) argument register available. */
d5b7b3ae 779#define NUM_ARG_REGS 4
6cfc7210 780
390b17c2
RE
781/* And similarly for the VFP. */
782#define NUM_VFP_ARG_REGS 16
783
093354e0 784/* Return the register number of the N'th (integer) argument. */
d5b7b3ae 785#define ARG_REGISTER(N) (N - 1)
6cfc7210 786
d5b7b3ae
RE
787/* Specify the registers used for certain standard purposes.
788 The values of these macros are register numbers. */
35d965d5 789
d5b7b3ae
RE
790/* The number of the last argument register. */
791#define LAST_ARG_REGNUM ARG_REGISTER (NUM_ARG_REGS)
35d965d5 792
c769a35d
RE
793/* The numbers of the Thumb register ranges. */
794#define FIRST_LO_REGNUM 0
6d3d9133 795#define LAST_LO_REGNUM 7
c769a35d
RE
796#define FIRST_HI_REGNUM 8
797#define LAST_HI_REGNUM 11
6d3d9133 798
f0a0390e
RH
799/* Overridden by config/arm/bpabi.h. */
800#ifndef ARM_UNWIND_INFO
801#define ARM_UNWIND_INFO 0
617a1b71
PB
802#endif
803
c9ca9b88
PB
804/* Use r0 and r1 to pass exception handling information. */
805#define EH_RETURN_DATA_REGNO(N) (((N) < 2) ? N : INVALID_REGNUM)
806
6d3d9133 807/* The register that holds the return address in exception handlers. */
c9ca9b88
PB
808#define ARM_EH_STACKADJ_REGNUM 2
809#define EH_RETURN_STACKADJ_RTX gen_rtx_REG (SImode, ARM_EH_STACKADJ_REGNUM)
35d965d5 810
d5b7b3ae
RE
811/* The native (Norcroft) Pascal compiler for the ARM passes the static chain
812 as an invisible last argument (possible since varargs don't exist in
813 Pascal), so the following is not true. */
5b3e6663 814#define STATIC_CHAIN_REGNUM 12
35d965d5 815
d5b7b3ae
RE
816/* Define this to be where the real frame pointer is if it is not possible to
817 work out the offset between the frame pointer and the automatic variables
818 until after register allocation has taken place. FRAME_POINTER_REGNUM
819 should point to a special register that we will make sure is eliminated.
820
821 For the Thumb we have another problem. The TPCS defines the frame pointer
6bc82793 822 as r11, and GCC believes that it is always possible to use the frame pointer
d5b7b3ae
RE
823 as base register for addressing purposes. (See comments in
824 find_reloads_address()). But - the Thumb does not allow high registers,
825 including r11, to be used as base address registers. Hence our problem.
826
827 The solution used here, and in the old thumb port is to use r7 instead of
828 r11 as the hard frame pointer and to have special code to generate
829 backtrace structures on the stack (if required to do so via a command line
6bc82793 830 option) using r11. This is the only 'user visible' use of r11 as a frame
d5b7b3ae
RE
831 pointer. */
832#define ARM_HARD_FRAME_POINTER_REGNUM 11
833#define THUMB_HARD_FRAME_POINTER_REGNUM 7
35d965d5 834
b15bca31
RE
835#define HARD_FRAME_POINTER_REGNUM \
836 (TARGET_ARM \
837 ? ARM_HARD_FRAME_POINTER_REGNUM \
838 : THUMB_HARD_FRAME_POINTER_REGNUM)
d5b7b3ae 839
e3339d0f
JM
840#define HARD_FRAME_POINTER_IS_FRAME_POINTER 0
841#define HARD_FRAME_POINTER_IS_ARG_POINTER 0
842
b15bca31 843#define FP_REGNUM HARD_FRAME_POINTER_REGNUM
d5b7b3ae 844
b15bca31
RE
845/* Register to use for pushing function arguments. */
846#define STACK_POINTER_REGNUM SP_REGNUM
d5b7b3ae
RE
847
848/* ARM floating pointer registers. */
9b66ebb1
PB
849#define FIRST_FPA_REGNUM 16
850#define LAST_FPA_REGNUM 23
2fa330b2
PB
851#define IS_FPA_REGNUM(REGNUM) \
852 (((REGNUM) >= FIRST_FPA_REGNUM) && ((REGNUM) <= LAST_FPA_REGNUM))
d5b7b3ae 853
5a9335ef
NC
854#define FIRST_IWMMXT_GR_REGNUM 43
855#define LAST_IWMMXT_GR_REGNUM 46
856#define FIRST_IWMMXT_REGNUM 47
857#define LAST_IWMMXT_REGNUM 62
858#define IS_IWMMXT_REGNUM(REGNUM) \
859 (((REGNUM) >= FIRST_IWMMXT_REGNUM) && ((REGNUM) <= LAST_IWMMXT_REGNUM))
860#define IS_IWMMXT_GR_REGNUM(REGNUM) \
861 (((REGNUM) >= FIRST_IWMMXT_GR_REGNUM) && ((REGNUM) <= LAST_IWMMXT_GR_REGNUM))
862
35d965d5 863/* Base register for access to local variables of the function. */
ff9940b0
RE
864#define FRAME_POINTER_REGNUM 25
865
d5b7b3ae
RE
866/* Base register for access to arguments of the function. */
867#define ARG_POINTER_REGNUM 26
62b10bbc 868
9b6b54e2
NC
869#define FIRST_CIRRUS_FP_REGNUM 27
870#define LAST_CIRRUS_FP_REGNUM 42
871#define IS_CIRRUS_REGNUM(REGNUM) \
872 (((REGNUM) >= FIRST_CIRRUS_FP_REGNUM) && ((REGNUM) <= LAST_CIRRUS_FP_REGNUM))
873
9b66ebb1 874#define FIRST_VFP_REGNUM 63
f1adb0a9
JB
875#define D7_VFP_REGNUM 78 /* Registers 77 and 78 == VFP reg D7. */
876#define LAST_VFP_REGNUM \
302c3d8e 877 (TARGET_VFPD32 ? LAST_HI_VFP_REGNUM : LAST_LO_VFP_REGNUM)
f1adb0a9 878
9b66ebb1
PB
879#define IS_VFP_REGNUM(REGNUM) \
880 (((REGNUM) >= FIRST_VFP_REGNUM) && ((REGNUM) <= LAST_VFP_REGNUM))
881
f1adb0a9
JB
882/* VFP registers are split into two types: those defined by VFP versions < 3
883 have D registers overlaid on consecutive pairs of S registers. VFP version 3
884 defines 16 new D registers (d16-d31) which, for simplicity and correctness
885 in various parts of the backend, we implement as "fake" single-precision
886 registers (which would be S32-S63, but cannot be used in that way). The
887 following macros define these ranges of registers. */
888#define LAST_LO_VFP_REGNUM 94
889#define FIRST_HI_VFP_REGNUM 95
890#define LAST_HI_VFP_REGNUM 126
891
892#define VFP_REGNO_OK_FOR_SINGLE(REGNUM) \
893 ((REGNUM) <= LAST_LO_VFP_REGNUM)
894
895/* DFmode values are only valid in even register pairs. */
896#define VFP_REGNO_OK_FOR_DOUBLE(REGNUM) \
897 ((((REGNUM) - FIRST_VFP_REGNUM) & 1) == 0)
898
88f77cba
JB
899/* Neon Quad values must start at a multiple of four registers. */
900#define NEON_REGNO_OK_FOR_QUAD(REGNUM) \
901 ((((REGNUM) - FIRST_VFP_REGNUM) & 3) == 0)
902
903/* Neon structures of vectors must be in even register pairs and there
904 must be enough registers available. Because of various patterns
905 requiring quad registers, we require them to start at a multiple of
906 four. */
907#define NEON_REGNO_OK_FOR_NREGS(REGNUM, N) \
908 ((((REGNUM) - FIRST_VFP_REGNUM) & 3) == 0 \
909 && (LAST_VFP_REGNUM - (REGNUM) >= 2 * (N) - 1))
910
6f8c9bd1
NC
911/* The number of hard registers is 16 ARM + 8 FPA + 1 CC + 1 SFP + 1 AFP. */
912/* + 16 Cirrus registers take us up to 43. */
5a9335ef 913/* Intel Wireless MMX Technology registers add 16 + 4 more. */
f1adb0a9
JB
914/* VFP (VFP3) adds 32 (64) + 1 more. */
915#define FIRST_PSEUDO_REGISTER 128
62b10bbc 916
2fa330b2
PB
917#define DBX_REGISTER_NUMBER(REGNO) arm_dbx_register_number (REGNO)
918
35d965d5
RS
919/* Value should be nonzero if functions must have frame pointers.
920 Zero means the frame pointer need not be set up (and parms may be accessed
f676971a 921 via the stack pointer) in functions that seem suitable.
ff9940b0
RE
922 If we have to have a frame pointer we might as well make use of it.
923 APCS says that the frame pointer does not need to be pushed in leaf
2a5307b1 924 functions, or simple tail call functions. */
a15900b5
DJ
925
926#ifndef SUBTARGET_FRAME_POINTER_REQUIRED
927#define SUBTARGET_FRAME_POINTER_REQUIRED 0
928#endif
929
d5b7b3ae
RE
930/* Return number of consecutive hard regs needed starting at reg REGNO
931 to hold something of mode MODE.
932 This is ordinarily the length in words of a value of mode MODE
933 but can be less for certain modes in special long registers.
35d965d5 934
3b684012 935 On the ARM regs are UNITS_PER_WORD bits wide; FPA regs can hold any FP
d5b7b3ae
RE
936 mode. */
937#define HARD_REGNO_NREGS(REGNO, MODE) \
5b3e6663 938 ((TARGET_32BIT \
9b66ebb1 939 && REGNO >= FIRST_FPA_REGNUM \
d5b7b3ae
RE
940 && REGNO != FRAME_POINTER_REGNUM \
941 && REGNO != ARG_POINTER_REGNUM) \
9b66ebb1 942 && !IS_VFP_REGNUM (REGNO) \
e9d7b180 943 ? 1 : ARM_NUM_REGS (MODE))
35d965d5 944
4b02997f 945/* Return true if REGNO is suitable for holding a quantity of type MODE. */
d5b7b3ae 946#define HARD_REGNO_MODE_OK(REGNO, MODE) \
4b02997f 947 arm_hard_regno_mode_ok ((REGNO), (MODE))
35d965d5 948
d5b7b3ae
RE
949/* Value is 1 if it is a good idea to tie two pseudo registers
950 when one has mode MODE1 and one has mode MODE2.
951 If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
952 for any hard reg, then this must be 0 for correct output. */
953#define MODES_TIEABLE_P(MODE1, MODE2) \
954 (GET_MODE_CLASS (MODE1) == GET_MODE_CLASS (MODE2))
ff9940b0 955
5a9335ef 956#define VALID_IWMMXT_REG_MODE(MODE) \
f676971a 957 (arm_vector_mode_supported_p (MODE) || (MODE) == DImode)
5a9335ef 958
88f77cba
JB
959/* Modes valid for Neon D registers. */
960#define VALID_NEON_DREG_MODE(MODE) \
961 ((MODE) == V2SImode || (MODE) == V4HImode || (MODE) == V8QImode \
962 || (MODE) == V2SFmode || (MODE) == DImode)
963
964/* Modes valid for Neon Q registers. */
965#define VALID_NEON_QREG_MODE(MODE) \
966 ((MODE) == V4SImode || (MODE) == V8HImode || (MODE) == V16QImode \
967 || (MODE) == V4SFmode || (MODE) == V2DImode)
968
969/* Structure modes valid for Neon registers. */
970#define VALID_NEON_STRUCT_MODE(MODE) \
971 ((MODE) == TImode || (MODE) == EImode || (MODE) == OImode \
972 || (MODE) == CImode || (MODE) == XImode)
973
37119410
BS
974/* The register numbers in sequence, for passing to arm_gen_load_multiple. */
975extern int arm_regs_in_sequence[];
976
35d965d5 977/* The order in which register should be allocated. It is good to use ip
ff9940b0
RE
978 since no saving is required (though calls clobber it) and it never contains
979 function parameters. It is quite good to use lr since other calls may
f676971a 980 clobber it anyway. Allocate r0 through r3 in reverse order since r3 is
ff9940b0 981 least likely to contain a function parameter; in addition results are
f1adb0a9
JB
982 returned in r0.
983 For VFP/VFPv3, allocate D16-D31 first, then caller-saved registers (D0-D7),
984 then D8-D15. The reason for doing this is to attempt to reduce register
985 pressure when both single- and double-precision registers are used in a
986 function. */
987
988#define REG_ALLOC_ORDER \
989{ \
990 3, 2, 1, 0, 12, 14, 4, 5, \
991 6, 7, 8, 10, 9, 11, 13, 15, \
992 16, 17, 18, 19, 20, 21, 22, 23, \
993 27, 28, 29, 30, 31, 32, 33, 34, \
994 35, 36, 37, 38, 39, 40, 41, 42, \
995 43, 44, 45, 46, 47, 48, 49, 50, \
996 51, 52, 53, 54, 55, 56, 57, 58, \
997 59, 60, 61, 62, \
998 24, 25, 26, \
999 95, 96, 97, 98, 99, 100, 101, 102, \
1000 103, 104, 105, 106, 107, 108, 109, 110, \
1001 111, 112, 113, 114, 115, 116, 117, 118, \
1002 119, 120, 121, 122, 123, 124, 125, 126, \
1003 78, 77, 76, 75, 74, 73, 72, 71, \
1004 70, 69, 68, 67, 66, 65, 64, 63, \
1005 79, 80, 81, 82, 83, 84, 85, 86, \
1006 87, 88, 89, 90, 91, 92, 93, 94, \
1007 127 \
35d965d5 1008}
9338ffe6 1009
795dc4fc 1010/* Use different register alloc ordering for Thumb. */
5a733826
BS
1011#define ADJUST_REG_ALLOC_ORDER arm_order_regs_for_local_alloc ()
1012
1013/* Tell IRA to use the order we define rather than messing it up with its
1014 own cost calculations. */
1015#define HONOR_REG_ALLOC_ORDER
795dc4fc 1016
9338ffe6
PB
1017/* Interrupt functions can only use registers that have already been
1018 saved by the prologue, even if they would normally be
1019 call-clobbered. */
1020#define HARD_REGNO_RENAME_OK(SRC, DST) \
1021 (! IS_INTERRUPT (cfun->machine->func_type) || \
6fb5fa3c 1022 df_regs_ever_live_p (DST))
35d965d5
RS
1023\f
1024/* Register and constant classes. */
1025
3b684012 1026/* Register classes: used to be simple, just all ARM regs or all FPA regs
d6a7951f 1027 Now that the Thumb is involved it has become more complicated. */
35d965d5
RS
1028enum reg_class
1029{
1030 NO_REGS,
3b684012 1031 FPA_REGS,
9b6b54e2 1032 CIRRUS_REGS,
f1adb0a9
JB
1033 VFP_D0_D7_REGS,
1034 VFP_LO_REGS,
1035 VFP_HI_REGS,
9b66ebb1 1036 VFP_REGS,
5a9335ef
NC
1037 IWMMXT_GR_REGS,
1038 IWMMXT_REGS,
d5b7b3ae
RE
1039 LO_REGS,
1040 STACK_REG,
1041 BASE_REGS,
1042 HI_REGS,
1043 CC_REG,
9b66ebb1 1044 VFPCC_REG,
35d965d5 1045 GENERAL_REGS,
f5c630c3 1046 CORE_REGS,
35d965d5
RS
1047 ALL_REGS,
1048 LIM_REG_CLASSES
1049};
1050
1051#define N_REG_CLASSES (int) LIM_REG_CLASSES
1052
d6b4baa4 1053/* Give names of register classes as strings for dump file. */
35d965d5
RS
1054#define REG_CLASS_NAMES \
1055{ \
1056 "NO_REGS", \
3b684012 1057 "FPA_REGS", \
9b6b54e2 1058 "CIRRUS_REGS", \
f1adb0a9
JB
1059 "VFP_D0_D7_REGS", \
1060 "VFP_LO_REGS", \
1061 "VFP_HI_REGS", \
9b66ebb1 1062 "VFP_REGS", \
5a9335ef
NC
1063 "IWMMXT_GR_REGS", \
1064 "IWMMXT_REGS", \
d5b7b3ae
RE
1065 "LO_REGS", \
1066 "STACK_REG", \
1067 "BASE_REGS", \
1068 "HI_REGS", \
1069 "CC_REG", \
5384443a 1070 "VFPCC_REG", \
35d965d5 1071 "GENERAL_REGS", \
f5c630c3 1072 "CORE_REGS", \
35d965d5
RS
1073 "ALL_REGS", \
1074}
1075
1076/* Define which registers fit in which classes.
1077 This is an initializer for a vector of HARD_REG_SET
1078 of length N_REG_CLASSES. */
f1adb0a9
JB
1079#define REG_CLASS_CONTENTS \
1080{ \
1081 { 0x00000000, 0x00000000, 0x00000000, 0x00000000 }, /* NO_REGS */ \
1082 { 0x00FF0000, 0x00000000, 0x00000000, 0x00000000 }, /* FPA_REGS */ \
1083 { 0xF8000000, 0x000007FF, 0x00000000, 0x00000000 }, /* CIRRUS_REGS */ \
1084 { 0x00000000, 0x80000000, 0x00007FFF, 0x00000000 }, /* VFP_D0_D7_REGS */ \
1085 { 0x00000000, 0x80000000, 0x7FFFFFFF, 0x00000000 }, /* VFP_LO_REGS */ \
1086 { 0x00000000, 0x00000000, 0x80000000, 0x7FFFFFFF }, /* VFP_HI_REGS */ \
1087 { 0x00000000, 0x80000000, 0xFFFFFFFF, 0x7FFFFFFF }, /* VFP_REGS */ \
1088 { 0x00000000, 0x00007800, 0x00000000, 0x00000000 }, /* IWMMXT_GR_REGS */ \
1089 { 0x00000000, 0x7FFF8000, 0x00000000, 0x00000000 }, /* IWMMXT_REGS */ \
1090 { 0x000000FF, 0x00000000, 0x00000000, 0x00000000 }, /* LO_REGS */ \
1091 { 0x00002000, 0x00000000, 0x00000000, 0x00000000 }, /* STACK_REG */ \
1092 { 0x000020FF, 0x00000000, 0x00000000, 0x00000000 }, /* BASE_REGS */ \
f5c630c3 1093 { 0x0000DF00, 0x00000000, 0x00000000, 0x00000000 }, /* HI_REGS */ \
f1adb0a9
JB
1094 { 0x01000000, 0x00000000, 0x00000000, 0x00000000 }, /* CC_REG */ \
1095 { 0x00000000, 0x00000000, 0x00000000, 0x80000000 }, /* VFPCC_REG */ \
565d018d
JB
1096 { 0x0000DFFF, 0x00000000, 0x00000000, 0x00000000 }, /* GENERAL_REGS */ \
1097 { 0x0000FFFF, 0x00000000, 0x00000000, 0x00000000 }, /* CORE_REGS */ \
f1adb0a9 1098 { 0xFAFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0x7FFFFFFF } /* ALL_REGS */ \
35d965d5 1099}
4b02997f 1100
f1adb0a9
JB
1101/* Any of the VFP register classes. */
1102#define IS_VFP_CLASS(X) \
1103 ((X) == VFP_D0_D7_REGS || (X) == VFP_LO_REGS \
1104 || (X) == VFP_HI_REGS || (X) == VFP_REGS)
1105
35d965d5
RS
1106/* The same information, inverted:
1107 Return the class number of the smallest class containing
1108 reg number REGNO. This could be a conditional expression
1109 or could index an array. */
d5b7b3ae 1110#define REGNO_REG_CLASS(REGNO) arm_regno_class (REGNO)
35d965d5 1111
9b66ebb1 1112/* FPA registers can't do subreg as all values are reformatted to internal
75f6ec9a
RS
1113 precision. In VFPv1, VFP registers could only be accessed in the mode
1114 they were set, so subregs would be invalid there too. However, we don't
1115 support VFPv1 at the moment, and the restriction was lifted in VFPv2. */
1116#define CANNOT_CHANGE_MODE_CLASS(FROM, TO, CLASS) \
1117 (GET_MODE_SIZE (FROM) != GET_MODE_SIZE (TO) \
1118 ? reg_classes_intersect_p (FPA_REGS, (CLASS)) \
9b66ebb1 1119 : 0)
75d2580c 1120
35d965d5 1121/* The class value for index registers, and the one for base regs. */
5b3e6663 1122#define INDEX_REG_CLASS (TARGET_THUMB1 ? LO_REGS : GENERAL_REGS)
f5c630c3 1123#define BASE_REG_CLASS (TARGET_THUMB1 ? LO_REGS : CORE_REGS)
d5b7b3ae 1124
b93a0fe6 1125/* For the Thumb the high registers cannot be used as base registers
6bc82793 1126 when addressing quantities in QI or HI mode; if we don't know the
888d2cd6 1127 mode, then we must be conservative. */
3dcc68a4 1128#define MODE_BASE_REG_CLASS(MODE) \
9adc580c 1129 (TARGET_ARM || (TARGET_THUMB2 && !optimize_size) ? CORE_REGS : \
888d2cd6
DJ
1130 (((MODE) == SImode) ? BASE_REGS : LO_REGS))
1131
1132/* For Thumb we can not support SP+reg addressing, so we return LO_REGS
1133 instead of BASE_REGS. */
1134#define MODE_BASE_REG_REG_CLASS(MODE) BASE_REG_CLASS
3dcc68a4 1135
42db504c 1136/* When this hook returns true for MODE, the compiler allows
d5b7b3ae
RE
1137 registers explicitly used in the rtl to be used as spill registers
1138 but prevents the compiler from extending the lifetime of these
d6b4baa4 1139 registers. */
42db504c
SB
1140#define TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P \
1141 arm_small_register_classes_for_mode_p
35d965d5 1142
35d965d5
RS
1143/* Given an rtx X being reloaded into a reg required to be
1144 in class CLASS, return the class of reg to actually use.
5b3e6663
PB
1145 In general this is just CLASS, but for the Thumb core registers and
1146 immediate constants we prefer a LO_REGS class or a subset. */
1147#define PREFERRED_RELOAD_CLASS(X, CLASS) \
12d210d9 1148 (TARGET_32BIT ? (CLASS) : \
5b3e6663 1149 ((CLASS) == GENERAL_REGS || (CLASS) == HI_REGS \
f5c630c3
PB
1150 || (CLASS) == NO_REGS || (CLASS) == STACK_REG \
1151 ? LO_REGS : (CLASS)))
d5b7b3ae
RE
1152
1153/* Must leave BASE_REGS reloads alone */
1154#define THUMB_SECONDARY_INPUT_RELOAD_CLASS(CLASS, MODE, X) \
1155 ((CLASS) != LO_REGS && (CLASS) != BASE_REGS \
1156 ? ((true_regnum (X) == -1 ? LO_REGS \
1157 : (true_regnum (X) + HARD_REGNO_NREGS (0, MODE) > 8) ? LO_REGS \
1158 : NO_REGS)) \
1159 : NO_REGS)
1160
1161#define THUMB_SECONDARY_OUTPUT_RELOAD_CLASS(CLASS, MODE, X) \
97358092 1162 ((CLASS) != LO_REGS && (CLASS) != BASE_REGS \
d5b7b3ae
RE
1163 ? ((true_regnum (X) == -1 ? LO_REGS \
1164 : (true_regnum (X) + HARD_REGNO_NREGS (0, MODE) > 8) ? LO_REGS \
1165 : NO_REGS)) \
1166 : NO_REGS)
35d965d5 1167
ff9940b0
RE
1168/* Return the register class of a scratch register needed to copy IN into
1169 or out of a register in CLASS in MODE. If it can be done directly,
1170 NO_REGS is returned. */
d5b7b3ae 1171#define SECONDARY_OUTPUT_RELOAD_CLASS(CLASS, MODE, X) \
fe2d934b 1172 /* Restrict which direct reloads are allowed for VFP/iWMMXt regs. */ \
9b66ebb1 1173 ((TARGET_VFP && TARGET_HARD_FLOAT \
f1adb0a9 1174 && IS_VFP_CLASS (CLASS)) \
fe2d934b
PB
1175 ? coproc_secondary_reload_class (MODE, X, FALSE) \
1176 : (TARGET_IWMMXT && (CLASS) == IWMMXT_REGS) \
1177 ? coproc_secondary_reload_class (MODE, X, TRUE) \
5b3e6663 1178 : TARGET_32BIT \
9b66ebb1 1179 ? (((MODE) == HImode && ! arm_arch4 && true_regnum (X) == -1) \
d5b7b3ae
RE
1180 ? GENERAL_REGS : NO_REGS) \
1181 : THUMB_SECONDARY_OUTPUT_RELOAD_CLASS (CLASS, MODE, X))
f676971a 1182
d6b4baa4 1183/* If we need to load shorts byte-at-a-time, then we need a scratch. */
d5b7b3ae 1184#define SECONDARY_INPUT_RELOAD_CLASS(CLASS, MODE, X) \
fe2d934b 1185 /* Restrict which direct reloads are allowed for VFP/iWMMXt regs. */ \
9b66ebb1 1186 ((TARGET_VFP && TARGET_HARD_FLOAT \
f1adb0a9 1187 && IS_VFP_CLASS (CLASS)) \
fe2d934b
PB
1188 ? coproc_secondary_reload_class (MODE, X, FALSE) : \
1189 (TARGET_IWMMXT && (CLASS) == IWMMXT_REGS) ? \
1190 coproc_secondary_reload_class (MODE, X, TRUE) : \
9b6b54e2 1191 /* Cannot load constants into Cirrus registers. */ \
9b66ebb1 1192 (TARGET_MAVERICK && TARGET_HARD_FLOAT \
9b6b54e2
NC
1193 && (CLASS) == CIRRUS_REGS \
1194 && (CONSTANT_P (X) || GET_CODE (X) == SYMBOL_REF)) \
1195 ? GENERAL_REGS : \
5b3e6663 1196 (TARGET_32BIT ? \
5a9335ef
NC
1197 (((CLASS) == IWMMXT_REGS || (CLASS) == IWMMXT_GR_REGS) \
1198 && CONSTANT_P (X)) \
1199 ? GENERAL_REGS : \
61f0ccff 1200 (((MODE) == HImode && ! arm_arch4 \
d5b7b3ae
RE
1201 && (GET_CODE (X) == MEM \
1202 || ((GET_CODE (X) == REG || GET_CODE (X) == SUBREG) \
1203 && true_regnum (X) == -1))) \
1204 ? GENERAL_REGS : NO_REGS) \
9b6b54e2 1205 : THUMB_SECONDARY_INPUT_RELOAD_CLASS (CLASS, MODE, X)))
2ce9c1b9 1206
6f734908
RE
1207/* Try a machine-dependent way of reloading an illegitimate address
1208 operand. If we find one, push the reload and jump to WIN. This
1209 macro is used in only one place: `find_reloads_address' in reload.c.
1210
1211 For the ARM, we wish to handle large displacements off a base
1212 register by splitting the addend across a MOV and the mem insn.
d5b7b3ae
RE
1213 This can cut the number of reloads needed. */
1214#define ARM_LEGITIMIZE_RELOAD_ADDRESS(X, MODE, OPNUM, TYPE, IND, WIN) \
1215 do \
1216 { \
0cd98787
JZ
1217 if (arm_legitimize_reload_address (&X, MODE, OPNUM, TYPE, IND)) \
1218 goto WIN; \
d5b7b3ae 1219 } \
62b10bbc 1220 while (0)
6f734908 1221
27847754 1222/* XXX If an HImode FP+large_offset address is converted to an HImode
d5b7b3ae
RE
1223 SP+large_offset address, then reload won't know how to fix it. It sees
1224 only that SP isn't valid for HImode, and so reloads the SP into an index
1225 register, but the resulting address is still invalid because the offset
1226 is too big. We fix it here instead by reloading the entire address. */
1227/* We could probably achieve better results by defining PROMOTE_MODE to help
1228 cope with the variances between the Thumb's signed and unsigned byte and
1229 halfword load instructions. */
5b3e6663 1230/* ??? This should be safe for thumb2, but we may be able to do better. */
a132dad6
RE
1231#define THUMB_LEGITIMIZE_RELOAD_ADDRESS(X, MODE, OPNUM, TYPE, IND_L, WIN) \
1232do { \
1233 rtx new_x = thumb_legitimize_reload_address (&X, MODE, OPNUM, TYPE, IND_L); \
1234 if (new_x) \
1235 { \
1236 X = new_x; \
1237 goto WIN; \
1238 } \
1239} while (0)
d5b7b3ae
RE
1240
1241#define LEGITIMIZE_RELOAD_ADDRESS(X, MODE, OPNUM, TYPE, IND_LEVELS, WIN) \
1242 if (TARGET_ARM) \
1243 ARM_LEGITIMIZE_RELOAD_ADDRESS (X, MODE, OPNUM, TYPE, IND_LEVELS, WIN); \
1244 else \
1245 THUMB_LEGITIMIZE_RELOAD_ADDRESS (X, MODE, OPNUM, TYPE, IND_LEVELS, WIN)
f676971a 1246
35d965d5
RS
1247/* Return the maximum number of consecutive registers
1248 needed to represent mode MODE in a register of class CLASS.
3b684012 1249 ARM regs are UNITS_PER_WORD bits while FPA regs can hold any FP mode */
35d965d5 1250#define CLASS_MAX_NREGS(CLASS, MODE) \
3b684012 1251 (((CLASS) == FPA_REGS || (CLASS) == CIRRUS_REGS) ? 1 : ARM_NUM_REGS (MODE))
9b6b54e2
NC
1252
1253/* If defined, gives a class of registers that cannot be used as the
1254 operand of a SUBREG that changes the mode of the object illegally. */
35d965d5 1255
356ecb15
DJ
1256/* Moves between FPA_REGS and GENERAL_REGS are two memory insns.
1257 Moves between VFP_REGS and GENERAL_REGS are a single insn, but
1258 it is typically more expensive than a single memory access. We set
1259 the cost to less than two memory accesses so that floating
1260 point to integer conversion does not go through memory. */
cf011243 1261#define REGISTER_MOVE_COST(MODE, FROM, TO) \
5b3e6663 1262 (TARGET_32BIT ? \
3b684012
RE
1263 ((FROM) == FPA_REGS && (TO) != FPA_REGS ? 20 : \
1264 (FROM) != FPA_REGS && (TO) == FPA_REGS ? 20 : \
356ecb15
DJ
1265 IS_VFP_CLASS (FROM) && !IS_VFP_CLASS (TO) ? 15 : \
1266 !IS_VFP_CLASS (FROM) && IS_VFP_CLASS (TO) ? 15 : \
5a9335ef
NC
1267 (FROM) == IWMMXT_REGS && (TO) != IWMMXT_REGS ? 4 : \
1268 (FROM) != IWMMXT_REGS && (TO) == IWMMXT_REGS ? 4 : \
1269 (FROM) == IWMMXT_GR_REGS || (TO) == IWMMXT_GR_REGS ? 20 : \
9b6b54e2
NC
1270 (FROM) == CIRRUS_REGS && (TO) != CIRRUS_REGS ? 20 : \
1271 (FROM) != CIRRUS_REGS && (TO) == CIRRUS_REGS ? 20 : \
1272 2) \
d5b7b3ae
RE
1273 : \
1274 ((FROM) == HI_REGS || (TO) == HI_REGS) ? 4 : 2)
35d965d5
RS
1275\f
1276/* Stack layout; function entry, exit and calling. */
1277
1278/* Define this if pushing a word on the stack
1279 makes the stack pointer a smaller address. */
1280#define STACK_GROWS_DOWNWARD 1
1281
a4d05547 1282/* Define this to nonzero if the nominal address of the stack frame
35d965d5
RS
1283 is at the high-address end of the local variables;
1284 that is, each additional local variable allocated
1285 goes at a more negative offset in the frame. */
1286#define FRAME_GROWS_DOWNWARD 1
1287
a2503645
RS
1288/* The amount of scratch space needed by _interwork_{r7,r11}_call_via_rN().
1289 When present, it is one word in size, and sits at the top of the frame,
1290 between the soft frame pointer and either r7 or r11.
1291
1292 We only need _interwork_rM_call_via_rN() for -mcaller-super-interworking,
1293 and only then if some outgoing arguments are passed on the stack. It would
1294 be tempting to also check whether the stack arguments are passed by indirect
1295 calls, but there seems to be no reason in principle why a post-reload pass
1296 couldn't convert a direct call into an indirect one. */
1297#define CALLER_INTERWORKING_SLOT_SIZE \
1298 (TARGET_CALLER_INTERWORKING \
38173d38 1299 && crtl->outgoing_args_size != 0 \
a2503645
RS
1300 ? UNITS_PER_WORD : 0)
1301
35d965d5
RS
1302/* Offset within stack frame to start allocating local variables at.
1303 If FRAME_GROWS_DOWNWARD, this is the offset to the END of the
1304 first local allocated. Otherwise, it is the offset to the BEGINNING
1305 of the first local allocated. */
1306#define STARTING_FRAME_OFFSET 0
1307
1308/* If we generate an insn to push BYTES bytes,
1309 this says how many the stack pointer really advances by. */
d5b7b3ae 1310/* The push insns do not do this rounding implicitly.
d6b4baa4 1311 So don't define this. */
0c2ca901 1312/* #define PUSH_ROUNDING(NPUSHED) ROUND_UP_WORD (NPUSHED) */
18543a22
ILT
1313
1314/* Define this if the maximum size of all the outgoing args is to be
1315 accumulated and pushed during the prologue. The amount can be
38173d38 1316 found in the variable crtl->outgoing_args_size. */
6cfc7210 1317#define ACCUMULATE_OUTGOING_ARGS 1
35d965d5
RS
1318
1319/* Offset of first parameter from the argument pointer register value. */
d5b7b3ae 1320#define FIRST_PARM_OFFSET(FNDECL) (TARGET_ARM ? 4 : 0)
35d965d5 1321
35d965d5
RS
1322/* Define how to find the value returned by a library function
1323 assuming the value has mode MODE. */
390b17c2
RE
1324#define LIBCALL_VALUE(MODE) \
1325 (TARGET_AAPCS_BASED ? aapcs_libcall_value (MODE) \
1326 : (TARGET_32BIT && TARGET_HARD_FLOAT_ABI && TARGET_FPA \
1327 && GET_MODE_CLASS (MODE) == MODE_FLOAT) \
9b66ebb1 1328 ? gen_rtx_REG (MODE, FIRST_FPA_REGNUM) \
5b3e6663 1329 : TARGET_32BIT && TARGET_HARD_FLOAT_ABI && TARGET_MAVERICK \
9b66ebb1 1330 && GET_MODE_CLASS (MODE) == MODE_FLOAT \
9b6b54e2 1331 ? gen_rtx_REG (MODE, FIRST_CIRRUS_FP_REGNUM) \
f676971a 1332 : TARGET_IWMMXT_ABI && arm_vector_mode_supported_p (MODE) \
5a9335ef 1333 ? gen_rtx_REG (MODE, FIRST_IWMMXT_REGNUM) \
d5b7b3ae 1334 : gen_rtx_REG (MODE, ARG_REGISTER (1)))
35d965d5 1335
390b17c2
RE
1336/* 1 if REGNO is a possible register number for a function value. */
1337#define FUNCTION_VALUE_REGNO_P(REGNO) \
1338 ((REGNO) == ARG_REGISTER (1) \
1339 || (TARGET_AAPCS_BASED && TARGET_32BIT \
1340 && TARGET_VFP && TARGET_HARD_FLOAT \
1341 && (REGNO) == FIRST_VFP_REGNUM) \
1342 || (TARGET_32BIT && ((REGNO) == FIRST_CIRRUS_FP_REGNUM) \
1343 && TARGET_HARD_FLOAT_ABI && TARGET_MAVERICK) \
1344 || ((REGNO) == FIRST_IWMMXT_REGNUM && TARGET_IWMMXT_ABI) \
1345 || (TARGET_32BIT && ((REGNO) == FIRST_FPA_REGNUM) \
72cdc543 1346 && TARGET_HARD_FLOAT_ABI && TARGET_FPA))
35d965d5 1347
9f7bf991
RE
1348/* Amount of memory needed for an untyped call to save all possible return
1349 registers. */
1350#define APPLY_RESULT_SIZE arm_apply_result_size()
1351
11c1a207
RE
1352/* Define DEFAULT_PCC_STRUCT_RETURN to 1 if all structure and union return
1353 values must be in memory. On the ARM, they need only do so if larger
d6b4baa4 1354 than a word, or if they contain elements offset from zero in the struct. */
11c1a207
RE
1355#define DEFAULT_PCC_STRUCT_RETURN 0
1356
6d3d9133 1357/* These bits describe the different types of function supported
112cdef5 1358 by the ARM backend. They are exclusive. i.e. a function cannot be both a
6d3d9133
NC
1359 normal function and an interworked function, for example. Knowing the
1360 type of a function is important for determining its prologue and
1361 epilogue sequences.
1362 Note value 7 is currently unassigned. Also note that the interrupt
1363 function types all have bit 2 set, so that they can be tested for easily.
1364 Note that 0 is deliberately chosen for ARM_FT_UNKNOWN so that when the
4912a07c 1365 machine_function structure is initialized (to zero) func_type will
6d3d9133
NC
1366 default to unknown. This will force the first use of arm_current_func_type
1367 to call arm_compute_func_type. */
1368#define ARM_FT_UNKNOWN 0 /* Type has not yet been determined. */
1369#define ARM_FT_NORMAL 1 /* Your normal, straightforward function. */
1370#define ARM_FT_INTERWORKED 2 /* A function that supports interworking. */
6d3d9133
NC
1371#define ARM_FT_ISR 4 /* An interrupt service routine. */
1372#define ARM_FT_FIQ 5 /* A fast interrupt service routine. */
1373#define ARM_FT_EXCEPTION 6 /* An ARM exception handler (subcase of ISR). */
1374
1375#define ARM_FT_TYPE_MASK ((1 << 3) - 1)
1376
1377/* In addition functions can have several type modifiers,
1378 outlined by these bit masks: */
1379#define ARM_FT_INTERRUPT (1 << 2) /* Note overlap with FT_ISR and above. */
1380#define ARM_FT_NAKED (1 << 3) /* No prologue or epilogue. */
1381#define ARM_FT_VOLATILE (1 << 4) /* Does not return. */
d6b4baa4 1382#define ARM_FT_NESTED (1 << 5) /* Embedded inside another func. */
5b3e6663 1383#define ARM_FT_STACKALIGN (1 << 6) /* Called with misaligned stack. */
6d3d9133
NC
1384
1385/* Some macros to test these flags. */
1386#define ARM_FUNC_TYPE(t) (t & ARM_FT_TYPE_MASK)
1387#define IS_INTERRUPT(t) (t & ARM_FT_INTERRUPT)
1388#define IS_VOLATILE(t) (t & ARM_FT_VOLATILE)
1389#define IS_NAKED(t) (t & ARM_FT_NAKED)
1390#define IS_NESTED(t) (t & ARM_FT_NESTED)
5b3e6663 1391#define IS_STACKALIGN(t) (t & ARM_FT_STACKALIGN)
6d3d9133 1392
5848830f
PB
1393
1394/* Structure used to hold the function stack frame layout. Offsets are
1395 relative to the stack pointer on function entry. Positive offsets are
1396 in the direction of stack growth.
1397 Only soft_frame is used in thumb mode. */
1398
d1b38208 1399typedef struct GTY(()) arm_stack_offsets
5848830f
PB
1400{
1401 int saved_args; /* ARG_POINTER_REGNUM. */
1402 int frame; /* ARM_HARD_FRAME_POINTER_REGNUM. */
1403 int saved_regs;
1404 int soft_frame; /* FRAME_POINTER_REGNUM. */
2591db65 1405 int locals_base; /* THUMB_HARD_FRAME_POINTER_REGNUM. */
5848830f 1406 int outgoing_args; /* STACK_POINTER_REGNUM. */
954954d1 1407 unsigned int saved_regs_mask;
5848830f
PB
1408}
1409arm_stack_offsets;
1410
906668bb 1411#ifndef GENERATOR_FILE
6d3d9133
NC
1412/* A C structure for machine-specific, per-function data.
1413 This is added to the cfun structure. */
d1b38208 1414typedef struct GTY(()) machine_function
d5b7b3ae 1415{
6bc82793 1416 /* Additional stack adjustment in __builtin_eh_throw. */
e2500fed 1417 rtx eh_epilogue_sp_ofs;
d5b7b3ae
RE
1418 /* Records if LR has to be saved for far jumps. */
1419 int far_jump_used;
1420 /* Records if ARG_POINTER was ever live. */
1421 int arg_pointer_live;
6f7ebcbb
NC
1422 /* Records if the save of LR has been eliminated. */
1423 int lr_save_eliminated;
0977774b 1424 /* The size of the stack frame. Only valid after reload. */
5848830f 1425 arm_stack_offsets stack_offsets;
6d3d9133
NC
1426 /* Records the type of the current function. */
1427 unsigned long func_type;
3cb66fd7
NC
1428 /* Record if the function has a variable argument list. */
1429 int uses_anonymous_args;
5a9335ef
NC
1430 /* Records if sibcalls are blocked because an argument
1431 register is needed to preserve stack alignment. */
1432 int sibcall_blocked;
020a4035
RE
1433 /* The PIC register for this function. This might be a pseudo. */
1434 rtx pic_reg;
b12a00f1 1435 /* Labels for per-function Thumb call-via stubs. One per potential calling
57ecec57
PB
1436 register. We can never call via LR or PC. We can call via SP if a
1437 trampoline happens to be on the top of the stack. */
1438 rtx call_via[14];
934c2060
RR
1439 /* Set to 1 when a return insn is output, this means that the epilogue
1440 is not needed. */
1441 int return_used_this_function;
906668bb
BS
1442 /* When outputting Thumb-1 code, record the last insn that provides
1443 information about condition codes, and the comparison operands. */
1444 rtx thumb1_cc_insn;
1445 rtx thumb1_cc_op0;
1446 rtx thumb1_cc_op1;
1447 /* Also record the CC mode that is supported. */
1448 enum machine_mode thumb1_cc_mode;
6d3d9133
NC
1449}
1450machine_function;
906668bb 1451#endif
d5b7b3ae 1452
b12a00f1 1453/* As in the machine_function, a global set of call-via labels, for code
d6b5193b 1454 that is in text_section. */
57ecec57 1455extern GTY(()) rtx thumb_call_via_label[14];
b12a00f1 1456
390b17c2
RE
1457/* The number of potential ways of assigning to a co-processor. */
1458#define ARM_NUM_COPROC_SLOTS 1
1459
1460/* Enumeration of procedure calling standard variants. We don't really
1461 support all of these yet. */
1462enum arm_pcs
1463{
1464 ARM_PCS_AAPCS, /* Base standard AAPCS. */
1465 ARM_PCS_AAPCS_VFP, /* Use VFP registers for floating point values. */
1466 ARM_PCS_AAPCS_IWMMXT, /* Use iWMMXT registers for vectors. */
1467 /* This must be the last AAPCS variant. */
1468 ARM_PCS_AAPCS_LOCAL, /* Private call within this compilation unit. */
1469 ARM_PCS_ATPCS, /* ATPCS. */
1470 ARM_PCS_APCS, /* APCS (legacy Linux etc). */
1471 ARM_PCS_UNKNOWN
1472};
1473
12ffc7d5
CLT
1474/* Default procedure calling standard of current compilation unit. */
1475extern enum arm_pcs arm_pcs_default;
1476
82e9d970 1477/* A C type for declaring a variable that is used as the first argument of
390b17c2 1478 `FUNCTION_ARG' and other related values. */
82e9d970
PB
1479typedef struct
1480{
d5b7b3ae 1481 /* This is the number of registers of arguments scanned so far. */
82e9d970 1482 int nregs;
5a9335ef
NC
1483 /* This is the number of iWMMXt register arguments scanned so far. */
1484 int iwmmxt_nregs;
1485 int named_count;
1486 int nargs;
390b17c2
RE
1487 /* Which procedure call variant to use for this call. */
1488 enum arm_pcs pcs_variant;
1489
1490 /* AAPCS related state tracking. */
1491 int aapcs_arg_processed; /* No need to lay out this argument again. */
1492 int aapcs_cprc_slot; /* Index of co-processor rules to handle
1493 this argument, or -1 if using core
1494 registers. */
1495 int aapcs_ncrn;
1496 int aapcs_next_ncrn;
1497 rtx aapcs_reg; /* Register assigned to this argument. */
1498 int aapcs_partial; /* How many bytes are passed in regs (if
1499 split between core regs and stack.
1500 Zero otherwise. */
1501 int aapcs_cprc_failed[ARM_NUM_COPROC_SLOTS];
1502 int can_split; /* Argument can be split between core regs
1503 and the stack. */
1504 /* Private data for tracking VFP register allocation */
1505 unsigned aapcs_vfp_regs_free;
1506 unsigned aapcs_vfp_reg_alloc;
1507 int aapcs_vfp_rcount;
46107b99 1508 MACHMODE aapcs_vfp_rmode;
d5b7b3ae 1509} CUMULATIVE_ARGS;
82e9d970 1510
866af8a9
JB
1511#define FUNCTION_ARG_PADDING(MODE, TYPE) \
1512 (arm_pad_arg_upward (MODE, TYPE) ? upward : downward)
1513
1514#define BLOCK_REG_PADDING(MODE, TYPE, FIRST) \
1515 (arm_pad_reg_upward (MODE, TYPE, FIRST) ? upward : downward)
1516
1517/* For AAPCS, padding should never be below the argument. For other ABIs,
1518 * mimic the default. */
1519#define PAD_VARARGS_DOWN \
1520 ((TARGET_AAPCS_BASED) ? 0 : BYTES_BIG_ENDIAN)
1521
35d965d5
RS
1522/* Initialize a variable CUM of type CUMULATIVE_ARGS
1523 for a call to a function whose data type is FNTYPE.
1524 For a library call, FNTYPE is 0.
1525 On the ARM, the offset starts at 0. */
0f6937fe 1526#define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, FNDECL, N_NAMED_ARGS) \
563a317a 1527 arm_init_cumulative_args (&(CUM), (FNTYPE), (LIBNAME), (FNDECL))
35d965d5 1528
35d965d5
RS
1529/* 1 if N is a possible register number for function argument passing.
1530 On the ARM, r0-r3 are used to pass args. */
390b17c2
RE
1531#define FUNCTION_ARG_REGNO_P(REGNO) \
1532 (IN_RANGE ((REGNO), 0, 3) \
1533 || (TARGET_AAPCS_BASED && TARGET_VFP && TARGET_HARD_FLOAT \
1534 && IN_RANGE ((REGNO), FIRST_VFP_REGNUM, FIRST_VFP_REGNUM + 15)) \
1535 || (TARGET_IWMMXT_ABI \
5848830f 1536 && IN_RANGE ((REGNO), FIRST_IWMMXT_REGNUM, FIRST_IWMMXT_REGNUM + 9)))
35d965d5 1537
f99fce0c 1538\f
afef3d7a 1539/* If your target environment doesn't prefix user functions with an
96a3900d 1540 underscore, you may wish to re-define this to prevent any conflicts. */
afef3d7a
NC
1541#ifndef ARM_MCOUNT_NAME
1542#define ARM_MCOUNT_NAME "*mcount"
1543#endif
1544
1545/* Call the function profiler with a given profile label. The Acorn
1546 compiler puts this BEFORE the prolog but gcc puts it afterwards.
1547 On the ARM the full profile code will look like:
1548 .data
1549 LP1
1550 .word 0
1551 .text
1552 mov ip, lr
1553 bl mcount
1554 .word LP1
1555
1556 profile_function() in final.c outputs the .data section, FUNCTION_PROFILER
1557 will output the .text section.
1558
1559 The ``mov ip,lr'' seems like a good idea to stick with cc convention.
59be6073
AN
1560 ``prof'' doesn't seem to mind about this!
1561
1562 Note - this version of the code is designed to work in both ARM and
1563 Thumb modes. */
be393ecf 1564#ifndef ARM_FUNCTION_PROFILER
d5b7b3ae 1565#define ARM_FUNCTION_PROFILER(STREAM, LABELNO) \
6cfc7210
NC
1566{ \
1567 char temp[20]; \
1568 rtx sym; \
1569 \
dd18ae56 1570 asm_fprintf (STREAM, "\tmov\t%r, %r\n\tbl\t", \
d5b7b3ae 1571 IP_REGNUM, LR_REGNUM); \
6cfc7210
NC
1572 assemble_name (STREAM, ARM_MCOUNT_NAME); \
1573 fputc ('\n', STREAM); \
1574 ASM_GENERATE_INTERNAL_LABEL (temp, "LP", LABELNO); \
f1c25d3b 1575 sym = gen_rtx_SYMBOL_REF (Pmode, temp); \
301d03af 1576 assemble_aligned_integer (UNITS_PER_WORD, sym); \
35d965d5 1577}
be393ecf 1578#endif
35d965d5 1579
59be6073 1580#ifdef THUMB_FUNCTION_PROFILER
d5b7b3ae
RE
1581#define FUNCTION_PROFILER(STREAM, LABELNO) \
1582 if (TARGET_ARM) \
1583 ARM_FUNCTION_PROFILER (STREAM, LABELNO) \
1584 else \
1585 THUMB_FUNCTION_PROFILER (STREAM, LABELNO)
59be6073
AN
1586#else
1587#define FUNCTION_PROFILER(STREAM, LABELNO) \
1588 ARM_FUNCTION_PROFILER (STREAM, LABELNO)
1589#endif
d5b7b3ae 1590
35d965d5
RS
1591/* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
1592 the stack pointer does not matter. The value is tested only in
1593 functions that have frame pointers.
1594 No definition is equivalent to always zero.
1595
1596 On the ARM, the function epilogue recovers the stack pointer from the
1597 frame. */
1598#define EXIT_IGNORE_STACK 1
1599
6fb5fa3c 1600#define EPILOGUE_USES(REGNO) ((REGNO) == LR_REGNUM)
c7861455 1601
35d965d5
RS
1602/* Determine if the epilogue should be output as RTL.
1603 You should override this if you define FUNCTION_EXTRA_EPILOGUE. */
d5b7b3ae 1604#define USE_RETURN_INSN(ISCOND) \
7c19c715 1605 (TARGET_32BIT ? use_return_insn (ISCOND, NULL) : 0)
ff9940b0
RE
1606
1607/* Definitions for register eliminations.
1608
1609 This is an array of structures. Each structure initializes one pair
1610 of eliminable registers. The "from" register number is given first,
1611 followed by "to". Eliminations of the same "from" register are listed
1612 in order of preference.
1613
1614 We have two registers that can be eliminated on the ARM. First, the
1615 arg pointer register can often be eliminated in favor of the stack
1616 pointer register. Secondly, the pseudo frame pointer register can always
1617 be eliminated; it is replaced with either the stack or the real frame
d5b7b3ae 1618 pointer. Note we have to use {ARM|THUMB}_HARD_FRAME_POINTER_REGNUM
d6a7951f 1619 because the definition of HARD_FRAME_POINTER_REGNUM is not a constant. */
ff9940b0 1620
d5b7b3ae
RE
1621#define ELIMINABLE_REGS \
1622{{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM },\
1623 { ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM },\
1624 { ARG_POINTER_REGNUM, ARM_HARD_FRAME_POINTER_REGNUM },\
1625 { ARG_POINTER_REGNUM, THUMB_HARD_FRAME_POINTER_REGNUM },\
1626 { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM },\
1627 { FRAME_POINTER_REGNUM, ARM_HARD_FRAME_POINTER_REGNUM },\
1628 { FRAME_POINTER_REGNUM, THUMB_HARD_FRAME_POINTER_REGNUM }}
ff9940b0 1629
d5b7b3ae
RE
1630/* Define the offset between two registers, one to be eliminated, and the
1631 other its replacement, at the start of a routine. */
d5b7b3ae
RE
1632#define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
1633 if (TARGET_ARM) \
5848830f 1634 (OFFSET) = arm_compute_initial_elimination_offset (FROM, TO); \
d5b7b3ae 1635 else \
5848830f
PB
1636 (OFFSET) = thumb_compute_initial_elimination_offset (FROM, TO)
1637
d5b7b3ae
RE
1638/* Special case handling of the location of arguments passed on the stack. */
1639#define DEBUGGER_ARG_OFFSET(value, addr) value ? value : arm_debugger_arg_offset (value, addr)
f676971a 1640
d5b7b3ae
RE
1641/* Initialize data used by insn expanders. This is called from insn_emit,
1642 once for every function before code is generated. */
1643#define INIT_EXPANDERS arm_init_expanders ()
1644
35d965d5 1645/* Length in units of the trampoline for entering a nested function. */
5b3e6663 1646#define TRAMPOLINE_SIZE (TARGET_32BIT ? 16 : 20)
35d965d5 1647
006946e4
JM
1648/* Alignment required for a trampoline in bits. */
1649#define TRAMPOLINE_ALIGNMENT 32
35d965d5
RS
1650\f
1651/* Addressing modes, and classification of registers for them. */
3cd45774 1652#define HAVE_POST_INCREMENT 1
5b3e6663
PB
1653#define HAVE_PRE_INCREMENT TARGET_32BIT
1654#define HAVE_POST_DECREMENT TARGET_32BIT
1655#define HAVE_PRE_DECREMENT TARGET_32BIT
1656#define HAVE_PRE_MODIFY_DISP TARGET_32BIT
1657#define HAVE_POST_MODIFY_DISP TARGET_32BIT
1658#define HAVE_PRE_MODIFY_REG TARGET_32BIT
1659#define HAVE_POST_MODIFY_REG TARGET_32BIT
35d965d5
RS
1660
1661/* Macros to check register numbers against specific register classes. */
1662
1663/* These assume that REGNO is a hard or pseudo reg number.
1664 They give nonzero only if REGNO is a hard reg of the suitable class
1665 or a pseudo reg currently allocated to a suitable hard reg.
1666 Since they use reg_renumber, they are safe only once reg_renumber
d6b4baa4 1667 has been allocated, which happens in local-alloc.c. */
d5b7b3ae
RE
1668#define TEST_REGNO(R, TEST, VALUE) \
1669 ((R TEST VALUE) || ((unsigned) reg_renumber[R] TEST VALUE))
1670
5b3e6663 1671/* Don't allow the pc to be used. */
f1008e52
RE
1672#define ARM_REGNO_OK_FOR_BASE_P(REGNO) \
1673 (TEST_REGNO (REGNO, <, PC_REGNUM) \
1674 || TEST_REGNO (REGNO, ==, FRAME_POINTER_REGNUM) \
1675 || TEST_REGNO (REGNO, ==, ARG_POINTER_REGNUM))
1676
5b3e6663 1677#define THUMB1_REGNO_MODE_OK_FOR_BASE_P(REGNO, MODE) \
f1008e52
RE
1678 (TEST_REGNO (REGNO, <=, LAST_LO_REGNUM) \
1679 || (GET_MODE_SIZE (MODE) >= 4 \
1680 && TEST_REGNO (REGNO, ==, STACK_POINTER_REGNUM)))
1681
1682#define REGNO_MODE_OK_FOR_BASE_P(REGNO, MODE) \
5b3e6663
PB
1683 (TARGET_THUMB1 \
1684 ? THUMB1_REGNO_MODE_OK_FOR_BASE_P (REGNO, MODE) \
f1008e52
RE
1685 : ARM_REGNO_OK_FOR_BASE_P (REGNO))
1686
888d2cd6
DJ
1687/* Nonzero if X can be the base register in a reg+reg addressing mode.
1688 For Thumb, we can not use SP + reg, so reject SP. */
1689#define REGNO_MODE_OK_FOR_REG_BASE_P(X, MODE) \
f5c630c3 1690 REGNO_MODE_OK_FOR_BASE_P (X, QImode)
888d2cd6 1691
f1008e52
RE
1692/* For ARM code, we don't care about the mode, but for Thumb, the index
1693 must be suitable for use in a QImode load. */
d5b7b3ae 1694#define REGNO_OK_FOR_INDEX_P(REGNO) \
f5c630c3
PB
1695 (REGNO_MODE_OK_FOR_BASE_P (REGNO, QImode) \
1696 && !TEST_REGNO (REGNO, ==, STACK_POINTER_REGNUM))
35d965d5
RS
1697
1698/* Maximum number of registers that can appear in a valid memory address.
d6b4baa4 1699 Shifts in addresses can't be by a register. */
ff9940b0 1700#define MAX_REGS_PER_ADDRESS 2
35d965d5
RS
1701
1702/* Recognize any constant value that is a valid address. */
1703/* XXX We can address any constant, eventually... */
5b3e6663 1704/* ??? Should the TARGET_ARM here also apply to thumb2? */
008cf58a
RE
1705#define CONSTANT_ADDRESS_P(X) \
1706 (GET_CODE (X) == SYMBOL_REF \
1707 && (CONSTANT_POOL_ADDRESS_P (X) \
d5b7b3ae 1708 || (TARGET_ARM && optimize > 0 && SYMBOL_REF_FLAG (X))))
35d965d5 1709
8426b956
RS
1710/* True if SYMBOL + OFFSET constants must refer to something within
1711 SYMBOL's section. */
1712#define ARM_OFFSETS_MUST_BE_WITHIN_SECTIONS_P 0
1713
571191af
PB
1714/* Nonzero if all target requires all absolute relocations be R_ARM_ABS32. */
1715#ifndef TARGET_DEFAULT_WORD_RELOCATIONS
1716#define TARGET_DEFAULT_WORD_RELOCATIONS 0
1717#endif
1718
c27ba912
DM
1719#ifndef SUBTARGET_NAME_ENCODING_LENGTHS
1720#define SUBTARGET_NAME_ENCODING_LENGTHS
1721#endif
1722
6bc82793 1723/* This is a C fragment for the inside of a switch statement.
c27ba912
DM
1724 Each case label should return the number of characters to
1725 be stripped from the start of a function's name, if that
1726 name starts with the indicated character. */
1727#define ARM_NAME_ENCODING_LENGTHS \
00fdafef 1728 case '*': return 1; \
f676971a 1729 SUBTARGET_NAME_ENCODING_LENGTHS
c27ba912 1730
c27ba912
DM
1731/* This is how to output a reference to a user-level label named NAME.
1732 `assemble_name' uses this. */
e5951263 1733#undef ASM_OUTPUT_LABELREF
c27ba912 1734#define ASM_OUTPUT_LABELREF(FILE, NAME) \
e1944073 1735 arm_asm_output_labelref (FILE, NAME)
c27ba912 1736
7a085dce 1737/* Output IT instructions for conditionally executed Thumb-2 instructions. */
5b3e6663
PB
1738#define ASM_OUTPUT_OPCODE(STREAM, PTR) \
1739 if (TARGET_THUMB2) \
1740 thumb2_asm_output_opcode (STREAM);
1741
7abc66b1
JB
1742/* The EABI specifies that constructors should go in .init_array.
1743 Other targets use .ctors for compatibility. */
88c6057f 1744#ifndef ARM_EABI_CTORS_SECTION_OP
7abc66b1
JB
1745#define ARM_EABI_CTORS_SECTION_OP \
1746 "\t.section\t.init_array,\"aw\",%init_array"
88c6057f
MM
1747#endif
1748#ifndef ARM_EABI_DTORS_SECTION_OP
7abc66b1
JB
1749#define ARM_EABI_DTORS_SECTION_OP \
1750 "\t.section\t.fini_array,\"aw\",%fini_array"
88c6057f 1751#endif
7abc66b1
JB
1752#define ARM_CTORS_SECTION_OP \
1753 "\t.section\t.ctors,\"aw\",%progbits"
1754#define ARM_DTORS_SECTION_OP \
1755 "\t.section\t.dtors,\"aw\",%progbits"
1756
1757/* Define CTORS_SECTION_ASM_OP. */
1758#undef CTORS_SECTION_ASM_OP
1759#undef DTORS_SECTION_ASM_OP
1760#ifndef IN_LIBGCC2
1761# define CTORS_SECTION_ASM_OP \
1762 (TARGET_AAPCS_BASED ? ARM_EABI_CTORS_SECTION_OP : ARM_CTORS_SECTION_OP)
1763# define DTORS_SECTION_ASM_OP \
1764 (TARGET_AAPCS_BASED ? ARM_EABI_DTORS_SECTION_OP : ARM_DTORS_SECTION_OP)
1765#else /* !defined (IN_LIBGCC2) */
1766/* In libgcc, CTORS_SECTION_ASM_OP must be a compile-time constant,
1767 so we cannot use the definition above. */
1768# ifdef __ARM_EABI__
1769/* The .ctors section is not part of the EABI, so we do not define
1770 CTORS_SECTION_ASM_OP when in libgcc; that prevents crtstuff
1771 from trying to use it. We do define it when doing normal
1772 compilation, as .init_array can be used instead of .ctors. */
1773/* There is no need to emit begin or end markers when using
1774 init_array; the dynamic linker will compute the size of the
1775 array itself based on special symbols created by the static
1776 linker. However, we do need to arrange to set up
1777 exception-handling here. */
1778# define CTOR_LIST_BEGIN asm (ARM_EABI_CTORS_SECTION_OP)
1779# define CTOR_LIST_END /* empty */
1780# define DTOR_LIST_BEGIN asm (ARM_EABI_DTORS_SECTION_OP)
1781# define DTOR_LIST_END /* empty */
1782# else /* !defined (__ARM_EABI__) */
1783# define CTORS_SECTION_ASM_OP ARM_CTORS_SECTION_OP
1784# define DTORS_SECTION_ASM_OP ARM_DTORS_SECTION_OP
1785# endif /* !defined (__ARM_EABI__) */
1786#endif /* !defined (IN_LIBCC2) */
1787
1e731102
MM
1788/* True if the operating system can merge entities with vague linkage
1789 (e.g., symbols in COMDAT group) during dynamic linking. */
1790#ifndef TARGET_ARM_DYNAMIC_VAGUE_LINKAGE_P
1791#define TARGET_ARM_DYNAMIC_VAGUE_LINKAGE_P true
1792#endif
1793
617a1b71
PB
1794#define ARM_OUTPUT_FN_UNWIND(F, PROLOGUE) arm_output_fn_unwind (F, PROLOGUE)
1795
35d965d5
RS
1796/* The macros REG_OK_FOR..._P assume that the arg is a REG rtx
1797 and check its validity for a certain class.
1798 We have two alternate definitions for each of them.
1799 The usual definition accepts all pseudo regs; the other rejects
1800 them unless they have been allocated suitable hard regs.
5b3e6663 1801 The symbol REG_OK_STRICT causes the latter definition to be used.
7a085dce 1802 Thumb-2 has the same restrictions as arm. */
35d965d5 1803#ifndef REG_OK_STRICT
ff9940b0 1804
f1008e52
RE
1805#define ARM_REG_OK_FOR_BASE_P(X) \
1806 (REGNO (X) <= LAST_ARM_REGNUM \
1807 || REGNO (X) >= FIRST_PSEUDO_REGISTER \
1808 || REGNO (X) == FRAME_POINTER_REGNUM \
1809 || REGNO (X) == ARG_POINTER_REGNUM)
ff9940b0 1810
f5c630c3
PB
1811#define ARM_REG_OK_FOR_INDEX_P(X) \
1812 ((REGNO (X) <= LAST_ARM_REGNUM \
1813 && REGNO (X) != STACK_POINTER_REGNUM) \
1814 || REGNO (X) >= FIRST_PSEUDO_REGISTER \
1815 || REGNO (X) == FRAME_POINTER_REGNUM \
1816 || REGNO (X) == ARG_POINTER_REGNUM)
1817
5b3e6663 1818#define THUMB1_REG_MODE_OK_FOR_BASE_P(X, MODE) \
f1008e52
RE
1819 (REGNO (X) <= LAST_LO_REGNUM \
1820 || REGNO (X) >= FIRST_PSEUDO_REGISTER \
1821 || (GET_MODE_SIZE (MODE) >= 4 \
1822 && (REGNO (X) == STACK_POINTER_REGNUM \
1823 || (X) == hard_frame_pointer_rtx \
1824 || (X) == arg_pointer_rtx)))
ff9940b0 1825
76a318e9
RE
1826#define REG_STRICT_P 0
1827
d5b7b3ae 1828#else /* REG_OK_STRICT */
ff9940b0 1829
f1008e52
RE
1830#define ARM_REG_OK_FOR_BASE_P(X) \
1831 ARM_REGNO_OK_FOR_BASE_P (REGNO (X))
ff9940b0 1832
f5c630c3
PB
1833#define ARM_REG_OK_FOR_INDEX_P(X) \
1834 ARM_REGNO_OK_FOR_INDEX_P (REGNO (X))
1835
5b3e6663
PB
1836#define THUMB1_REG_MODE_OK_FOR_BASE_P(X, MODE) \
1837 THUMB1_REGNO_MODE_OK_FOR_BASE_P (REGNO (X), MODE)
ff9940b0 1838
76a318e9
RE
1839#define REG_STRICT_P 1
1840
d5b7b3ae 1841#endif /* REG_OK_STRICT */
f1008e52
RE
1842
1843/* Now define some helpers in terms of the above. */
1844
1845#define REG_MODE_OK_FOR_BASE_P(X, MODE) \
5b3e6663
PB
1846 (TARGET_THUMB1 \
1847 ? THUMB1_REG_MODE_OK_FOR_BASE_P (X, MODE) \
f1008e52
RE
1848 : ARM_REG_OK_FOR_BASE_P (X))
1849
5b3e6663 1850/* For 16-bit Thumb, a valid index register is anything that can be used in
f1008e52 1851 a byte load instruction. */
5b3e6663
PB
1852#define THUMB1_REG_OK_FOR_INDEX_P(X) \
1853 THUMB1_REG_MODE_OK_FOR_BASE_P (X, QImode)
f1008e52
RE
1854
1855/* Nonzero if X is a hard reg that can be used as an index
1856 or if it is a pseudo reg. On the Thumb, the stack pointer
1857 is not suitable. */
1858#define REG_OK_FOR_INDEX_P(X) \
5b3e6663
PB
1859 (TARGET_THUMB1 \
1860 ? THUMB1_REG_OK_FOR_INDEX_P (X) \
f1008e52
RE
1861 : ARM_REG_OK_FOR_INDEX_P (X))
1862
888d2cd6
DJ
1863/* Nonzero if X can be the base register in a reg+reg addressing mode.
1864 For Thumb, we can not use SP + reg, so reject SP. */
1865#define REG_MODE_OK_FOR_REG_BASE_P(X, MODE) \
1866 REG_OK_FOR_INDEX_P (X)
35d965d5 1867\f
f1008e52
RE
1868#define ARM_BASE_REGISTER_RTX_P(X) \
1869 (GET_CODE (X) == REG && ARM_REG_OK_FOR_BASE_P (X))
35d965d5 1870
f1008e52
RE
1871#define ARM_INDEX_REGISTER_RTX_P(X) \
1872 (GET_CODE (X) == REG && ARM_REG_OK_FOR_INDEX_P (X))
35d965d5 1873\f
35d965d5
RS
1874/* Specify the machine mode that this machine uses
1875 for the index in the tablejump instruction. */
d5b7b3ae 1876#define CASE_VECTOR_MODE Pmode
35d965d5 1877
907dd0c7 1878#define CASE_VECTOR_PC_RELATIVE (TARGET_THUMB2 \
83c3a2d8 1879 || (TARGET_THUMB1 \
907dd0c7
RE
1880 && (optimize_size || flag_pic)))
1881
1882#define CASE_VECTOR_SHORTEN_MODE(min, max, body) \
83c3a2d8 1883 (TARGET_THUMB1 \
907dd0c7
RE
1884 ? (min >= 0 && max < 512 \
1885 ? (ADDR_DIFF_VEC_FLAGS (body).offset_unsigned = 1, QImode) \
1886 : min >= -256 && max < 256 \
1887 ? (ADDR_DIFF_VEC_FLAGS (body).offset_unsigned = 0, QImode) \
1888 : min >= 0 && max < 8192 \
1889 ? (ADDR_DIFF_VEC_FLAGS (body).offset_unsigned = 1, HImode) \
1890 : min >= -4096 && max < 4096 \
1891 ? (ADDR_DIFF_VEC_FLAGS (body).offset_unsigned = 0, HImode) \
1892 : SImode) \
1893 : ((min < 0 || max >= 0x2000 || !TARGET_THUMB2) ? SImode \
1894 : (max >= 0x200) ? HImode \
1895 : QImode))
5b3e6663 1896
ff9940b0
RE
1897/* signed 'char' is most compatible, but RISC OS wants it unsigned.
1898 unsigned is probably best, but may break some code. */
1899#ifndef DEFAULT_SIGNED_CHAR
3967692c 1900#define DEFAULT_SIGNED_CHAR 0
35d965d5
RS
1901#endif
1902
35d965d5 1903/* Max number of bytes we can move from memory to memory
d17ce9af
TG
1904 in one reasonably fast instruction. */
1905#define MOVE_MAX 4
35d965d5 1906
d19fb8e3 1907#undef MOVE_RATIO
e04ad03d 1908#define MOVE_RATIO(speed) (arm_tune_xscale ? 4 : 2)
d19fb8e3 1909
ff9940b0
RE
1910/* Define if operations between registers always perform the operation
1911 on the full register even if a narrower mode is specified. */
1912#define WORD_REGISTER_OPERATIONS
1913
1914/* Define if loading in MODE, an integral mode narrower than BITS_PER_WORD
1915 will either zero-extend or sign-extend. The value of this macro should
1916 be the code that says which one of the two operations is implicitly
f822d252 1917 done, UNKNOWN if none. */
9c872872 1918#define LOAD_EXTEND_OP(MODE) \
d5b7b3ae
RE
1919 (TARGET_THUMB ? ZERO_EXTEND : \
1920 ((arm_arch4 || (MODE) == QImode) ? ZERO_EXTEND \
f822d252 1921 : ((BYTES_BIG_ENDIAN && (MODE) == HImode) ? SIGN_EXTEND : UNKNOWN)))
ff9940b0 1922
35d965d5
RS
1923/* Nonzero if access to memory by bytes is slow and undesirable. */
1924#define SLOW_BYTE_ACCESS 0
1925
d5b7b3ae 1926#define SLOW_UNALIGNED_ACCESS(MODE, ALIGN) 1
f676971a 1927
35d965d5
RS
1928/* Immediate shift counts are truncated by the output routines (or was it
1929 the assembler?). Shift counts in a register are truncated by ARM. Note
1930 that the native compiler puts too large (> 32) immediate shift counts
1931 into a register and shifts by the register, letting the ARM decide what
1932 to do instead of doing that itself. */
ff9940b0
RE
1933/* This is all wrong. Defining SHIFT_COUNT_TRUNCATED tells combine that
1934 code like (X << (Y % 32)) for register X, Y is equivalent to (X << Y).
1935 On the arm, Y in a register is used modulo 256 for the shift. Only for
d6b4baa4 1936 rotates is modulo 32 used. */
ff9940b0 1937/* #define SHIFT_COUNT_TRUNCATED 1 */
35d965d5 1938
35d965d5 1939/* All integers have the same format so truncation is easy. */
d5b7b3ae 1940#define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1
35d965d5
RS
1941
1942/* Calling from registers is a massive pain. */
1943#define NO_FUNCTION_CSE 1
1944
35d965d5
RS
1945/* The machine modes of pointers and functions */
1946#define Pmode SImode
1947#define FUNCTION_MODE Pmode
1948
d5b7b3ae
RE
1949#define ARM_FRAME_RTX(X) \
1950 ( (X) == frame_pointer_rtx || (X) == stack_pointer_rtx \
3967692c
RE
1951 || (X) == arg_pointer_rtx)
1952
ff9940b0 1953/* Moves to and from memory are quite expensive */
d5b7b3ae 1954#define MEMORY_MOVE_COST(M, CLASS, IN) \
5b3e6663 1955 (TARGET_32BIT ? 10 : \
d5b7b3ae
RE
1956 ((GET_MODE_SIZE (M) < 4 ? 8 : 2 * GET_MODE_SIZE (M)) \
1957 * (CLASS == LO_REGS ? 1 : 2)))
f676971a 1958
ff9940b0
RE
1959/* Try to generate sequences that don't involve branches, we can then use
1960 conditional instructions */
3a4fd356 1961#define BRANCH_COST(speed_p, predictable_p) \
153668ec
JB
1962 (current_tune->branch_cost (speed_p, predictable_p))
1963
7a801826
RE
1964\f
1965/* Position Independent Code. */
1966/* We decide which register to use based on the compilation options and
1967 the assembler in use; this is more general than the APCS restriction of
1968 using sb (r9) all the time. */
020a4035 1969extern unsigned arm_pic_register;
7a801826
RE
1970
1971/* The register number of the register used to address a table of static
1972 data addresses in memory. */
1973#define PIC_OFFSET_TABLE_REGNUM arm_pic_register
1974
f5a1b0d2 1975/* We can't directly access anything that contains a symbol,
d3585b76
DJ
1976 nor can we indirect via the constant pool. One exception is
1977 UNSPEC_TLS, which is always PIC. */
82e9d970 1978#define LEGITIMATE_PIC_OPERAND_P(X) \
1575c31e
JD
1979 (!(symbol_mentioned_p (X) \
1980 || label_mentioned_p (X) \
1981 || (GET_CODE (X) == SYMBOL_REF \
1982 && CONSTANT_POOL_ADDRESS_P (X) \
1983 && (symbol_mentioned_p (get_pool_constant (X)) \
d3585b76
DJ
1984 || label_mentioned_p (get_pool_constant (X))))) \
1985 || tls_mentioned_p (X))
1575c31e 1986
13bd191d
PB
1987/* We need to know when we are making a constant pool; this determines
1988 whether data needs to be in the GOT or can be referenced via a GOT
1989 offset. */
1990extern int making_const_table;
82e9d970 1991\f
c27ba912 1992/* Handle pragmas for compatibility with Intel's compilers. */
b76c3c4b 1993/* Also abuse this to register additional C specific EABI attributes. */
c58b209a
NB
1994#define REGISTER_TARGET_PRAGMAS() do { \
1995 c_register_pragma (0, "long_calls", arm_pr_long_calls); \
1996 c_register_pragma (0, "no_long_calls", arm_pr_no_long_calls); \
1997 c_register_pragma (0, "long_calls_off", arm_pr_long_calls_off); \
b76c3c4b 1998 arm_lang_object_attributes_init(); \
8b97c5f8
ZW
1999} while (0)
2000
d6b4baa4 2001/* Condition code information. */
ff9940b0 2002/* Given a comparison code (EQ, NE, etc.) and the first operand of a COMPARE,
a5381466 2003 return the mode to be used for the comparison. */
d5b7b3ae
RE
2004
2005#define SELECT_CC_MODE(OP, X, Y) arm_select_cc_mode (OP, X, Y)
ff9940b0 2006
880873be
RE
2007#define REVERSIBLE_CC_MODE(MODE) 1
2008
2009#define REVERSE_CONDITION(CODE,MODE) \
2010 (((MODE) == CCFPmode || (MODE) == CCFPEmode) \
2011 ? reverse_condition_maybe_unordered (code) \
2012 : reverse_condition (code))
008cf58a 2013
62b10bbc 2014#define CANONICALIZE_COMPARISON(CODE, OP0, OP1) \
73160ba9 2015 (CODE) = arm_canonicalize_comparison (CODE, &(OP0), &(OP1))
62dd06ea 2016
7dba8395
RH
2017/* The arm5 clz instruction returns 32. */
2018#define CLZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) ((VALUE) = 32, 1)
ca96ed43 2019#define CTZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) ((VALUE) = 32, 1)
35d965d5 2020\f
906668bb
BS
2021#define CC_STATUS_INIT \
2022 do { cfun->machine->thumb1_cc_insn = NULL_RTX; } while (0)
2023
d5b7b3ae 2024#undef ASM_APP_OFF
5b3e6663
PB
2025#define ASM_APP_OFF (TARGET_THUMB1 ? "\t.code\t16\n" : \
2026 TARGET_THUMB2 ? "\t.thumb\n" : "")
35d965d5 2027
2ee67fbb
JB
2028/* Output a push or a pop instruction (only used when profiling).
2029 We can't push STATIC_CHAIN_REGNUM (r12) directly with Thumb-1. We know
2030 that ASM_OUTPUT_REG_PUSH will be matched with ASM_OUTPUT_REG_POP, and
2031 that r7 isn't used by the function profiler, so we can use it as a
2032 scratch reg. WARNING: This isn't safe in the general case! It may be
2033 sensitive to future changes in final.c:profile_function. */
d5b7b3ae 2034#define ASM_OUTPUT_REG_PUSH(STREAM, REGNO) \
8a81cc45
RE
2035 do \
2036 { \
2037 if (TARGET_ARM) \
2038 asm_fprintf (STREAM,"\tstmfd\t%r!,{%r}\n", \
2039 STACK_POINTER_REGNUM, REGNO); \
2ee67fbb
JB
2040 else if (TARGET_THUMB1 \
2041 && (REGNO) == STATIC_CHAIN_REGNUM) \
2042 { \
2043 asm_fprintf (STREAM, "\tpush\t{r7}\n"); \
2044 asm_fprintf (STREAM, "\tmov\tr7, %r\n", REGNO);\
2045 asm_fprintf (STREAM, "\tpush\t{r7}\n"); \
2046 } \
8a81cc45
RE
2047 else \
2048 asm_fprintf (STREAM, "\tpush {%r}\n", REGNO); \
2049 } while (0)
d5b7b3ae
RE
2050
2051
2ee67fbb 2052/* See comment for ASM_OUTPUT_REG_PUSH concerning Thumb-1 issue. */
d5b7b3ae 2053#define ASM_OUTPUT_REG_POP(STREAM, REGNO) \
8a81cc45
RE
2054 do \
2055 { \
2056 if (TARGET_ARM) \
2057 asm_fprintf (STREAM, "\tldmfd\t%r!,{%r}\n", \
2058 STACK_POINTER_REGNUM, REGNO); \
2ee67fbb
JB
2059 else if (TARGET_THUMB1 \
2060 && (REGNO) == STATIC_CHAIN_REGNUM) \
2061 { \
2062 asm_fprintf (STREAM, "\tpop\t{r7}\n"); \
2063 asm_fprintf (STREAM, "\tmov\t%r, r7\n", REGNO);\
2064 asm_fprintf (STREAM, "\tpop\t{r7}\n"); \
2065 } \
8a81cc45
RE
2066 else \
2067 asm_fprintf (STREAM, "\tpop {%r}\n", REGNO); \
2068 } while (0)
d5b7b3ae 2069
5b3e6663
PB
2070/* Jump table alignment is explicit in ASM_OUTPUT_CASE_LABEL. */
2071#define ADDR_VEC_ALIGN(JUMPTABLE) 0
2072
d5b7b3ae
RE
2073/* This is how to output a label which precedes a jumptable. Since
2074 Thumb instructions are 2 bytes, we may need explicit alignment here. */
be393ecf 2075#undef ASM_OUTPUT_CASE_LABEL
5b3e6663
PB
2076#define ASM_OUTPUT_CASE_LABEL(FILE, PREFIX, NUM, JUMPTABLE) \
2077 do \
2078 { \
2079 if (TARGET_THUMB && GET_MODE (PATTERN (JUMPTABLE)) == SImode) \
2080 ASM_OUTPUT_ALIGN (FILE, 2); \
2081 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM); \
2082 } \
2083 while (0)
2084
2085/* Make sure subsequent insns are aligned after a TBB. */
2086#define ASM_OUTPUT_CASE_END(FILE, NUM, JUMPTABLE) \
2087 do \
2088 { \
2089 if (GET_MODE (PATTERN (JUMPTABLE)) == QImode) \
2090 ASM_OUTPUT_ALIGN (FILE, 1); \
2091 } \
d5b7b3ae 2092 while (0)
35d965d5 2093
6cfc7210
NC
2094#define ARM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) \
2095 do \
2096 { \
d5b7b3ae
RE
2097 if (TARGET_THUMB) \
2098 { \
5b3e6663 2099 if (is_called_in_ARM_mode (DECL) \
bf98ec6c 2100 || (TARGET_THUMB1 && !TARGET_THUMB1_ONLY \
3c072c6b 2101 && cfun->is_thunk)) \
d5b7b3ae 2102 fprintf (STREAM, "\t.code 32\n") ; \
5b3e6663
PB
2103 else if (TARGET_THUMB1) \
2104 fprintf (STREAM, "\t.code\t16\n\t.thumb_func\n") ; \
d5b7b3ae 2105 else \
5b3e6663 2106 fprintf (STREAM, "\t.thumb\n\t.thumb_func\n") ; \
d5b7b3ae 2107 } \
6cfc7210 2108 if (TARGET_POKE_FUNCTION_NAME) \
586de218 2109 arm_poke_function_name (STREAM, (const char *) NAME); \
6cfc7210
NC
2110 } \
2111 while (0)
35d965d5 2112
d5b7b3ae
RE
2113/* For aliases of functions we use .thumb_set instead. */
2114#define ASM_OUTPUT_DEF_FROM_DECLS(FILE, DECL1, DECL2) \
2115 do \
2116 { \
91ea4f8d
KG
2117 const char *const LABEL1 = XSTR (XEXP (DECL_RTL (decl), 0), 0); \
2118 const char *const LABEL2 = IDENTIFIER_POINTER (DECL2); \
d5b7b3ae
RE
2119 \
2120 if (TARGET_THUMB && TREE_CODE (DECL1) == FUNCTION_DECL) \
2121 { \
2122 fprintf (FILE, "\t.thumb_set "); \
2123 assemble_name (FILE, LABEL1); \
2124 fprintf (FILE, ","); \
2125 assemble_name (FILE, LABEL2); \
2126 fprintf (FILE, "\n"); \
2127 } \
2128 else \
2129 ASM_OUTPUT_DEF (FILE, LABEL1, LABEL2); \
2130 } \
2131 while (0)
2132
fdc2d3b0
NC
2133#ifdef HAVE_GAS_MAX_SKIP_P2ALIGN
2134/* To support -falign-* switches we need to use .p2align so
2135 that alignment directives in code sections will be padded
2136 with no-op instructions, rather than zeroes. */
5a9335ef 2137#define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE, LOG, MAX_SKIP) \
fdc2d3b0
NC
2138 if ((LOG) != 0) \
2139 { \
2140 if ((MAX_SKIP) == 0) \
5a9335ef 2141 fprintf ((FILE), "\t.p2align %d\n", (int) (LOG)); \
fdc2d3b0
NC
2142 else \
2143 fprintf ((FILE), "\t.p2align %d,,%d\n", \
5a9335ef 2144 (int) (LOG), (int) (MAX_SKIP)); \
fdc2d3b0
NC
2145 }
2146#endif
35d965d5 2147\f
5b3e6663
PB
2148/* Add two bytes to the length of conditionally executed Thumb-2
2149 instructions for the IT instruction. */
2150#define ADJUST_INSN_LENGTH(insn, length) \
2151 if (TARGET_THUMB2 && GET_CODE (PATTERN (insn)) == COND_EXEC) \
2152 length += 2;
2153
35d965d5 2154/* Only perform branch elimination (by making instructions conditional) if
5b3e6663
PB
2155 we're optimizing. For Thumb-2 check if any IT instructions need
2156 outputting. */
d5b7b3ae
RE
2157#define FINAL_PRESCAN_INSN(INSN, OPVEC, NOPERANDS) \
2158 if (TARGET_ARM && optimize) \
2159 arm_final_prescan_insn (INSN); \
5b3e6663
PB
2160 else if (TARGET_THUMB2) \
2161 thumb2_final_prescan_insn (INSN); \
2162 else if (TARGET_THUMB1) \
2163 thumb1_final_prescan_insn (INSN)
35d965d5 2164
7b8b8ade
NC
2165#define ARM_SIGN_EXTEND(x) ((HOST_WIDE_INT) \
2166 (HOST_BITS_PER_WIDE_INT <= 32 ? (unsigned HOST_WIDE_INT) (x) \
30cf4896
KG
2167 : ((((unsigned HOST_WIDE_INT)(x)) & (unsigned HOST_WIDE_INT) 0xffffffff) |\
2168 ((((unsigned HOST_WIDE_INT)(x)) & (unsigned HOST_WIDE_INT) 0x80000000) \
2169 ? ((~ (unsigned HOST_WIDE_INT) 0) \
2170 & ~ (unsigned HOST_WIDE_INT) 0xffffffff) \
7bc7696c 2171 : 0))))
35d965d5 2172
6a5d7526
MS
2173/* A C expression whose value is RTL representing the value of the return
2174 address for the frame COUNT steps up from the current frame. */
2175
d5b7b3ae
RE
2176#define RETURN_ADDR_RTX(COUNT, FRAME) \
2177 arm_return_addr (COUNT, FRAME)
2178
f676971a 2179/* Mask of the bits in the PC that contain the real return address
d5b7b3ae
RE
2180 when running in 26-bit mode. */
2181#define RETURN_ADDR_MASK26 (0x03fffffc)
6a5d7526 2182
2c849145
JM
2183/* Pick up the return address upon entry to a procedure. Used for
2184 dwarf2 unwind information. This also enables the table driven
2185 mechanism. */
2c849145
JM
2186#define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (Pmode, LR_REGNUM)
2187#define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (LR_REGNUM)
2188
39950dff
MS
2189/* Used to mask out junk bits from the return address, such as
2190 processor state, interrupt status, condition codes and the like. */
2191#define MASK_RETURN_ADDR \
2192 /* If we are generating code for an ARM2/ARM3 machine or for an ARM6 \
2193 in 26 bit mode, the condition codes must be masked out of the \
2194 return address. This does not apply to ARM6 and later processors \
2195 when running in 32 bit mode. */ \
61f0ccff
RE
2196 ((arm_arch4 || TARGET_THUMB) \
2197 ? (gen_int_mode ((unsigned long)0xffffffff, Pmode)) \
fcd53748 2198 : arm_gen_return_addr_mask ())
d5b7b3ae
RE
2199
2200\f
978e411f
CD
2201/* Do not emit .note.GNU-stack by default. */
2202#ifndef NEED_INDICATE_EXEC_STACK
2203#define NEED_INDICATE_EXEC_STACK 0
2204#endif
2205
93b338c3
BS
2206/* The maximum number of parallel loads or stores we support in an ldm/stm
2207 instruction. */
2208#define MAX_LDM_STM_OPS 4
2209
88657302 2210#endif /* ! GCC_ARM_H */