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