]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/aarch64/aarch64.h
Merge dmd upstream 237ca3fbe
[thirdparty/gcc.git] / gcc / config / aarch64 / aarch64.h
CommitLineData
43e9d192 1/* Machine description for AArch64 architecture.
85ec4feb 2 Copyright (C) 2009-2018 Free Software Foundation, Inc.
43e9d192
IB
3 Contributed by ARM Ltd.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 GCC is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
20
21
22#ifndef GCC_AARCH64_H
23#define GCC_AARCH64_H
24
25/* Target CPU builtins. */
e4ea20c8
KT
26#define TARGET_CPU_CPP_BUILTINS() \
27 aarch64_cpu_cpp_builtins (pfile)
43e9d192 28
b4c522fa
IB
29/* Target CPU versions for D. */
30#define TARGET_D_CPU_VERSIONS aarch64_d_target_versions
31
43e9d192
IB
32\f
33
e4ea20c8
KT
34#define REGISTER_TARGET_PRAGMAS() aarch64_register_pragmas ()
35
43e9d192
IB
36/* Target machine storage layout. */
37
38#define PROMOTE_MODE(MODE, UNSIGNEDP, TYPE) \
39 if (GET_MODE_CLASS (MODE) == MODE_INT \
40 && GET_MODE_SIZE (MODE) < 4) \
41 { \
42 if (MODE == QImode || MODE == HImode) \
43 { \
44 MODE = SImode; \
45 } \
46 }
47
48/* Bits are always numbered from the LSBit. */
49#define BITS_BIG_ENDIAN 0
50
51/* Big/little-endian flavour. */
52#define BYTES_BIG_ENDIAN (TARGET_BIG_END != 0)
53#define WORDS_BIG_ENDIAN (BYTES_BIG_ENDIAN)
54
55/* AdvSIMD is supported in the default configuration, unless disabled by
683e3333
KT
56 -mgeneral-regs-only or by the +nosimd extension. */
57#define TARGET_SIMD (!TARGET_GENERAL_REGS_ONLY && AARCH64_ISA_SIMD)
58#define TARGET_FLOAT (!TARGET_GENERAL_REGS_ONLY && AARCH64_ISA_FP)
43e9d192
IB
59
60#define UNITS_PER_WORD 8
61
62#define UNITS_PER_VREG 16
63
64#define PARM_BOUNDARY 64
65
66#define STACK_BOUNDARY 128
67
68#define FUNCTION_BOUNDARY 32
69
70#define EMPTY_FIELD_BOUNDARY 32
71
72#define BIGGEST_ALIGNMENT 128
73
74#define SHORT_TYPE_SIZE 16
75
76#define INT_TYPE_SIZE 32
77
17a819cb
YZ
78#define LONG_TYPE_SIZE (TARGET_ILP32 ? 32 : 64)
79
80#define POINTER_SIZE (TARGET_ILP32 ? 32 : 64)
43e9d192
IB
81
82#define LONG_LONG_TYPE_SIZE 64
83
84#define FLOAT_TYPE_SIZE 32
85
86#define DOUBLE_TYPE_SIZE 64
87
88#define LONG_DOUBLE_TYPE_SIZE 128
89
cd1bef27
JL
90/* This value is the amount of bytes a caller is allowed to drop the stack
91 before probing has to be done for stack clash protection. */
92#define STACK_CLASH_CALLER_GUARD 1024
93
8c6e3b23
TC
94/* This value represents the minimum amount of bytes we expect the function's
95 outgoing arguments to be when stack-clash is enabled. */
96#define STACK_CLASH_MIN_BYTES_OUTGOING_ARGS 8
97
cd1bef27
JL
98/* This value controls how many pages we manually unroll the loop for when
99 generating stack clash probes. */
100#define STACK_CLASH_MAX_UNROLL_PAGES 4
101
43e9d192
IB
102/* The architecture reserves all bits of the address for hardware use,
103 so the vbit must go into the delta field of pointers to member
104 functions. This is the same config as that in the AArch32
105 port. */
106#define TARGET_PTRMEMFUNC_VBIT_LOCATION ptrmemfunc_vbit_in_delta
107
98503487
RR
108/* Align definitions of arrays, unions and structures so that
109 initializations and copies can be made more efficient. This is not
110 ABI-changing, so it only affects places where we can see the
111 definition. Increasing the alignment tends to introduce padding,
112 so don't do this when optimizing for size/conserving stack space. */
113#define AARCH64_EXPAND_ALIGNMENT(COND, EXP, ALIGN) \
114 (((COND) && ((ALIGN) < BITS_PER_WORD) \
115 && (TREE_CODE (EXP) == ARRAY_TYPE \
116 || TREE_CODE (EXP) == UNION_TYPE \
117 || TREE_CODE (EXP) == RECORD_TYPE)) ? BITS_PER_WORD : (ALIGN))
118
119/* Align global data. */
120#define DATA_ALIGNMENT(EXP, ALIGN) \
121 AARCH64_EXPAND_ALIGNMENT (!optimize_size, EXP, ALIGN)
122
123/* Similarly, make sure that objects on the stack are sensibly aligned. */
124#define LOCAL_ALIGNMENT(EXP, ALIGN) \
125 AARCH64_EXPAND_ALIGNMENT (!flag_conserve_stack, EXP, ALIGN)
43e9d192
IB
126
127#define STRUCTURE_SIZE_BOUNDARY 8
128
e10dbae3
WD
129/* Heap alignment (same as BIGGEST_ALIGNMENT and STACK_BOUNDARY). */
130#define MALLOC_ABI_ALIGNMENT 128
131
43e9d192
IB
132/* Defined by the ABI */
133#define WCHAR_TYPE "unsigned int"
134#define WCHAR_TYPE_SIZE 32
135
136/* Using long long breaks -ansi and -std=c90, so these will need to be
137 made conditional for an LLP64 ABI. */
138
139#define SIZE_TYPE "long unsigned int"
140
141#define PTRDIFF_TYPE "long int"
142
143#define PCC_BITFIELD_TYPE_MATTERS 1
144
0c6caaf8
RL
145/* Major revision number of the ARM Architecture implemented by the target. */
146extern unsigned aarch64_architecture_version;
43e9d192
IB
147
148/* Instruction tuning/selection flags. */
149
150/* Bit values used to identify processor capabilities. */
151#define AARCH64_FL_SIMD (1 << 0) /* Has SIMD instructions. */
152#define AARCH64_FL_FP (1 << 1) /* Has FP. */
153#define AARCH64_FL_CRYPTO (1 << 2) /* Has crypto. */
95f99170 154#define AARCH64_FL_CRC (1 << 3) /* Has CRC. */
74bb9de4 155/* ARMv8.1-A architecture extensions. */
dfba575f 156#define AARCH64_FL_LSE (1 << 4) /* Has Large System Extensions. */
1ddc47c0
TC
157#define AARCH64_FL_RDMA (1 << 5) /* Has Round Double Multiply Add. */
158#define AARCH64_FL_V8_1 (1 << 6) /* Has ARMv8.1-A extensions. */
c61465bd 159/* ARMv8.2-A architecture extensions. */
1ddc47c0 160#define AARCH64_FL_V8_2 (1 << 8) /* Has ARMv8.2-A features. */
c61465bd 161#define AARCH64_FL_F16 (1 << 9) /* Has ARMv8.2-A FP16 extensions. */
43cacb12 162#define AARCH64_FL_SVE (1 << 10) /* Has Scalable Vector Extensions. */
d766c52b 163/* ARMv8.3-A architecture extensions. */
43cacb12
RS
164#define AARCH64_FL_V8_3 (1 << 11) /* Has ARMv8.3-A features. */
165#define AARCH64_FL_RCPC (1 << 12) /* Has support for RCpc model. */
166#define AARCH64_FL_DOTPROD (1 << 13) /* Has ARMv8.2-A Dot Product ins. */
27086ea3 167/* New flags to split crypto into aes and sha2. */
43cacb12
RS
168#define AARCH64_FL_AES (1 << 14) /* Has Crypto AES. */
169#define AARCH64_FL_SHA2 (1 << 15) /* Has Crypto SHA2. */
27086ea3 170/* ARMv8.4-A architecture extensions. */
43cacb12
RS
171#define AARCH64_FL_V8_4 (1 << 16) /* Has ARMv8.4-A features. */
172#define AARCH64_FL_SM4 (1 << 17) /* Has ARMv8.4-A SM3 and SM4. */
173#define AARCH64_FL_SHA3 (1 << 18) /* Has ARMv8.4-a SHA3 and SHA512. */
174#define AARCH64_FL_F16FML (1 << 19) /* Has ARMv8.4-a FP16 extensions. */
3c5af608 175#define AARCH64_FL_RCPC8_4 (1 << 20) /* Has ARMv8.4-a RCPC extensions. */
43e9d192 176
5170e47e 177/* Statistical Profiling extensions. */
3c5af608 178#define AARCH64_FL_PROFILE (1 << 21)
5170e47e 179
43e9d192
IB
180/* Has FP and SIMD. */
181#define AARCH64_FL_FPSIMD (AARCH64_FL_FP | AARCH64_FL_SIMD)
182
183/* Has FP without SIMD. */
184#define AARCH64_FL_FPQ16 (AARCH64_FL_FP & ~AARCH64_FL_SIMD)
185
186/* Architecture flags that effect instruction selection. */
187#define AARCH64_FL_FOR_ARCH8 (AARCH64_FL_FPSIMD)
ff09c88d 188#define AARCH64_FL_FOR_ARCH8_1 \
43f84f6c
JW
189 (AARCH64_FL_FOR_ARCH8 | AARCH64_FL_LSE | AARCH64_FL_CRC \
190 | AARCH64_FL_RDMA | AARCH64_FL_V8_1)
c61465bd
MW
191#define AARCH64_FL_FOR_ARCH8_2 \
192 (AARCH64_FL_FOR_ARCH8_1 | AARCH64_FL_V8_2)
d766c52b
JW
193#define AARCH64_FL_FOR_ARCH8_3 \
194 (AARCH64_FL_FOR_ARCH8_2 | AARCH64_FL_V8_3)
27086ea3 195#define AARCH64_FL_FOR_ARCH8_4 \
ec538483 196 (AARCH64_FL_FOR_ARCH8_3 | AARCH64_FL_V8_4 | AARCH64_FL_F16FML \
3c5af608 197 | AARCH64_FL_DOTPROD | AARCH64_FL_RCPC8_4)
43e9d192
IB
198
199/* Macros to test ISA flags. */
361fb3ee 200
5922847b 201#define AARCH64_ISA_CRC (aarch64_isa_flags & AARCH64_FL_CRC)
43e9d192
IB
202#define AARCH64_ISA_CRYPTO (aarch64_isa_flags & AARCH64_FL_CRYPTO)
203#define AARCH64_ISA_FP (aarch64_isa_flags & AARCH64_FL_FP)
204#define AARCH64_ISA_SIMD (aarch64_isa_flags & AARCH64_FL_SIMD)
045c2d32 205#define AARCH64_ISA_LSE (aarch64_isa_flags & AARCH64_FL_LSE)
43f84f6c 206#define AARCH64_ISA_RDMA (aarch64_isa_flags & AARCH64_FL_RDMA)
c61465bd
MW
207#define AARCH64_ISA_V8_2 (aarch64_isa_flags & AARCH64_FL_V8_2)
208#define AARCH64_ISA_F16 (aarch64_isa_flags & AARCH64_FL_F16)
43cacb12 209#define AARCH64_ISA_SVE (aarch64_isa_flags & AARCH64_FL_SVE)
d766c52b 210#define AARCH64_ISA_V8_3 (aarch64_isa_flags & AARCH64_FL_V8_3)
1ddc47c0 211#define AARCH64_ISA_DOTPROD (aarch64_isa_flags & AARCH64_FL_DOTPROD)
27086ea3
MC
212#define AARCH64_ISA_AES (aarch64_isa_flags & AARCH64_FL_AES)
213#define AARCH64_ISA_SHA2 (aarch64_isa_flags & AARCH64_FL_SHA2)
214#define AARCH64_ISA_V8_4 (aarch64_isa_flags & AARCH64_FL_V8_4)
215#define AARCH64_ISA_SM4 (aarch64_isa_flags & AARCH64_FL_SM4)
216#define AARCH64_ISA_SHA3 (aarch64_isa_flags & AARCH64_FL_SHA3)
217#define AARCH64_ISA_F16FML (aarch64_isa_flags & AARCH64_FL_F16FML)
3c5af608 218#define AARCH64_ISA_RCPC8_4 (aarch64_isa_flags & AARCH64_FL_RCPC8_4)
43e9d192 219
683e3333
KT
220/* Crypto is an optional extension to AdvSIMD. */
221#define TARGET_CRYPTO (TARGET_SIMD && AARCH64_ISA_CRYPTO)
43e9d192 222
27086ea3
MC
223/* SHA2 is an optional extension to AdvSIMD. */
224#define TARGET_SHA2 ((TARGET_SIMD && AARCH64_ISA_SHA2) || TARGET_CRYPTO)
225
226/* SHA3 is an optional extension to AdvSIMD. */
227#define TARGET_SHA3 (TARGET_SIMD && AARCH64_ISA_SHA3)
228
229/* AES is an optional extension to AdvSIMD. */
230#define TARGET_AES ((TARGET_SIMD && AARCH64_ISA_AES) || TARGET_CRYPTO)
231
232/* SM is an optional extension to AdvSIMD. */
233#define TARGET_SM4 (TARGET_SIMD && AARCH64_ISA_SM4)
234
235/* FP16FML is an optional extension to AdvSIMD. */
236#define TARGET_F16FML (TARGET_SIMD && AARCH64_ISA_F16FML && TARGET_FP_F16INST)
237
5d357f26
KT
238/* CRC instructions that can be enabled through +crc arch extension. */
239#define TARGET_CRC32 (AARCH64_ISA_CRC)
240
045c2d32
MW
241/* Atomic instructions that can be enabled through the +lse extension. */
242#define TARGET_LSE (AARCH64_ISA_LSE)
243
c61465bd
MW
244/* ARMv8.2-A FP16 support that can be enabled through the +fp16 extension. */
245#define TARGET_FP_F16INST (TARGET_FLOAT && AARCH64_ISA_F16)
246#define TARGET_SIMD_F16INST (TARGET_SIMD && AARCH64_ISA_F16)
247
1ddc47c0
TC
248/* Dot Product is an optional extension to AdvSIMD enabled through +dotprod. */
249#define TARGET_DOTPROD (TARGET_SIMD && AARCH64_ISA_DOTPROD)
250
43cacb12
RS
251/* SVE instructions, enabled through +sve. */
252#define TARGET_SVE (AARCH64_ISA_SVE)
253
d766c52b
JW
254/* ARMv8.3-A features. */
255#define TARGET_ARMV8_3 (AARCH64_ISA_V8_3)
256
b32c1043
KT
257/* Make sure this is always defined so we don't have to check for ifdefs
258 but rather use normal ifs. */
259#ifndef TARGET_FIX_ERR_A53_835769_DEFAULT
260#define TARGET_FIX_ERR_A53_835769_DEFAULT 0
261#else
262#undef TARGET_FIX_ERR_A53_835769_DEFAULT
263#define TARGET_FIX_ERR_A53_835769_DEFAULT 1
264#endif
265
266/* Apply the workaround for Cortex-A53 erratum 835769. */
267#define TARGET_FIX_ERR_A53_835769 \
268 ((aarch64_fix_a53_err835769 == 2) \
269 ? TARGET_FIX_ERR_A53_835769_DEFAULT : aarch64_fix_a53_err835769)
270
48bb1a55
CL
271/* Make sure this is always defined so we don't have to check for ifdefs
272 but rather use normal ifs. */
273#ifndef TARGET_FIX_ERR_A53_843419_DEFAULT
274#define TARGET_FIX_ERR_A53_843419_DEFAULT 0
275#else
276#undef TARGET_FIX_ERR_A53_843419_DEFAULT
277#define TARGET_FIX_ERR_A53_843419_DEFAULT 1
278#endif
279
280/* Apply the workaround for Cortex-A53 erratum 843419. */
281#define TARGET_FIX_ERR_A53_843419 \
282 ((aarch64_fix_a53_err843419 == 2) \
283 ? TARGET_FIX_ERR_A53_843419_DEFAULT : aarch64_fix_a53_err843419)
284
74bb9de4 285/* ARMv8.1-A Adv.SIMD support. */
a3735e01
MW
286#define TARGET_SIMD_RDMA (TARGET_SIMD && AARCH64_ISA_RDMA)
287
43e9d192
IB
288/* Standard register usage. */
289
290/* 31 64-bit general purpose registers R0-R30:
291 R30 LR (link register)
292 R29 FP (frame pointer)
293 R19-R28 Callee-saved registers
294 R18 The platform register; use as temporary register.
295 R17 IP1 The second intra-procedure-call temporary register
296 (can be used by call veneers and PLT code); otherwise use
297 as a temporary register
298 R16 IP0 The first intra-procedure-call temporary register (can
299 be used by call veneers and PLT code); otherwise use as a
300 temporary register
301 R9-R15 Temporary registers
302 R8 Structure value parameter / temporary register
303 R0-R7 Parameter/result registers
304
305 SP stack pointer, encoded as X/R31 where permitted.
306 ZR zero register, encoded as X/R31 elsewhere
307
308 32 x 128-bit floating-point/vector registers
309 V16-V31 Caller-saved (temporary) registers
310 V8-V15 Callee-saved registers
311 V0-V7 Parameter/result registers
312
313 The vector register V0 holds scalar B0, H0, S0 and D0 in its least
43cacb12
RS
314 significant bits. Unlike AArch32 S1 is not packed into D0, etc.
315
316 P0-P7 Predicate low registers: valid in all predicate contexts
317 P8-P15 Predicate high registers: used as scratch space
318
319 VG Pseudo "vector granules" register
320
321 VG is the number of 64-bit elements in an SVE vector. We define
322 it as a hard register so that we can easily map it to the DWARF VG
323 register. GCC internally uses the poly_int variable aarch64_sve_vg
324 instead. */
43e9d192 325
43e9d192
IB
326#define FIXED_REGISTERS \
327 { \
328 0, 0, 0, 0, 0, 0, 0, 0, /* R0 - R7 */ \
329 0, 0, 0, 0, 0, 0, 0, 0, /* R8 - R15 */ \
330 0, 0, 0, 0, 0, 0, 0, 0, /* R16 - R23 */ \
331 0, 0, 0, 0, 0, 1, 0, 1, /* R24 - R30, SP */ \
332 0, 0, 0, 0, 0, 0, 0, 0, /* V0 - V7 */ \
333 0, 0, 0, 0, 0, 0, 0, 0, /* V8 - V15 */ \
334 0, 0, 0, 0, 0, 0, 0, 0, /* V16 - V23 */ \
335 0, 0, 0, 0, 0, 0, 0, 0, /* V24 - V31 */ \
43cacb12
RS
336 1, 1, 1, 1, /* SFP, AP, CC, VG */ \
337 0, 0, 0, 0, 0, 0, 0, 0, /* P0 - P7 */ \
338 0, 0, 0, 0, 0, 0, 0, 0, /* P8 - P15 */ \
43e9d192
IB
339 }
340
643ef957
SP
341/* X30 is marked as caller-saved which is in line with regular function call
342 behavior since the call instructions clobber it; AARCH64_EXPAND_CALL does
343 that for regular function calls and avoids it for sibcalls. X30 is
344 considered live for sibcalls; EPILOGUE_USES helps achieve that by returning
345 true but not until function epilogues have been generated. This ensures
346 that X30 is available for use in leaf functions if needed. */
347
43e9d192
IB
348#define CALL_USED_REGISTERS \
349 { \
350 1, 1, 1, 1, 1, 1, 1, 1, /* R0 - R7 */ \
351 1, 1, 1, 1, 1, 1, 1, 1, /* R8 - R15 */ \
352 1, 1, 1, 0, 0, 0, 0, 0, /* R16 - R23 */ \
1c923b60 353 0, 0, 0, 0, 0, 1, 1, 1, /* R24 - R30, SP */ \
43e9d192
IB
354 1, 1, 1, 1, 1, 1, 1, 1, /* V0 - V7 */ \
355 0, 0, 0, 0, 0, 0, 0, 0, /* V8 - V15 */ \
356 1, 1, 1, 1, 1, 1, 1, 1, /* V16 - V23 */ \
357 1, 1, 1, 1, 1, 1, 1, 1, /* V24 - V31 */ \
43cacb12
RS
358 1, 1, 1, 1, /* SFP, AP, CC, VG */ \
359 1, 1, 1, 1, 1, 1, 1, 1, /* P0 - P7 */ \
360 1, 1, 1, 1, 1, 1, 1, 1, /* P8 - P15 */ \
43e9d192
IB
361 }
362
363#define REGISTER_NAMES \
364 { \
365 "x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7", \
366 "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", \
367 "x16", "x17", "x18", "x19", "x20", "x21", "x22", "x23", \
368 "x24", "x25", "x26", "x27", "x28", "x29", "x30", "sp", \
369 "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", \
370 "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", \
371 "v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23", \
372 "v24", "v25", "v26", "v27", "v28", "v29", "v30", "v31", \
43cacb12
RS
373 "sfp", "ap", "cc", "vg", \
374 "p0", "p1", "p2", "p3", "p4", "p5", "p6", "p7", \
375 "p8", "p9", "p10", "p11", "p12", "p13", "p14", "p15", \
43e9d192
IB
376 }
377
378/* Generate the register aliases for core register N */
379#define R_ALIASES(N) {"r" # N, R0_REGNUM + (N)}, \
380 {"w" # N, R0_REGNUM + (N)}
381
382#define V_ALIASES(N) {"q" # N, V0_REGNUM + (N)}, \
383 {"d" # N, V0_REGNUM + (N)}, \
384 {"s" # N, V0_REGNUM + (N)}, \
385 {"h" # N, V0_REGNUM + (N)}, \
43cacb12
RS
386 {"b" # N, V0_REGNUM + (N)}, \
387 {"z" # N, V0_REGNUM + (N)}
43e9d192
IB
388
389/* Provide aliases for all of the ISA defined register name forms.
390 These aliases are convenient for use in the clobber lists of inline
391 asm statements. */
392
393#define ADDITIONAL_REGISTER_NAMES \
394 { R_ALIASES(0), R_ALIASES(1), R_ALIASES(2), R_ALIASES(3), \
395 R_ALIASES(4), R_ALIASES(5), R_ALIASES(6), R_ALIASES(7), \
396 R_ALIASES(8), R_ALIASES(9), R_ALIASES(10), R_ALIASES(11), \
397 R_ALIASES(12), R_ALIASES(13), R_ALIASES(14), R_ALIASES(15), \
398 R_ALIASES(16), R_ALIASES(17), R_ALIASES(18), R_ALIASES(19), \
399 R_ALIASES(20), R_ALIASES(21), R_ALIASES(22), R_ALIASES(23), \
400 R_ALIASES(24), R_ALIASES(25), R_ALIASES(26), R_ALIASES(27), \
9259db42 401 R_ALIASES(28), R_ALIASES(29), R_ALIASES(30), {"wsp", R0_REGNUM + 31}, \
43e9d192
IB
402 V_ALIASES(0), V_ALIASES(1), V_ALIASES(2), V_ALIASES(3), \
403 V_ALIASES(4), V_ALIASES(5), V_ALIASES(6), V_ALIASES(7), \
404 V_ALIASES(8), V_ALIASES(9), V_ALIASES(10), V_ALIASES(11), \
405 V_ALIASES(12), V_ALIASES(13), V_ALIASES(14), V_ALIASES(15), \
406 V_ALIASES(16), V_ALIASES(17), V_ALIASES(18), V_ALIASES(19), \
407 V_ALIASES(20), V_ALIASES(21), V_ALIASES(22), V_ALIASES(23), \
408 V_ALIASES(24), V_ALIASES(25), V_ALIASES(26), V_ALIASES(27), \
409 V_ALIASES(28), V_ALIASES(29), V_ALIASES(30), V_ALIASES(31) \
410 }
411
643ef957
SP
412/* Say that the return address register is used by the epilogue, but only after
413 epilogue generation is complete. Note that in the case of sibcalls, the
414 values "used by the epilogue" are considered live at the start of the called
415 function. */
43e9d192
IB
416
417#define EPILOGUE_USES(REGNO) \
1c923b60 418 (epilogue_completed && (REGNO) == LR_REGNUM)
43e9d192
IB
419
420/* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
204d2c03
WD
421 the stack pointer does not matter. This is only true if the function
422 uses alloca. */
423#define EXIT_IGNORE_STACK (cfun->calls_alloca)
43e9d192
IB
424
425#define STATIC_CHAIN_REGNUM R18_REGNUM
426#define HARD_FRAME_POINTER_REGNUM R29_REGNUM
427#define FRAME_POINTER_REGNUM SFP_REGNUM
428#define STACK_POINTER_REGNUM SP_REGNUM
429#define ARG_POINTER_REGNUM AP_REGNUM
43cacb12 430#define FIRST_PSEUDO_REGISTER (P15_REGNUM + 1)
43e9d192
IB
431
432/* The number of (integer) argument register available. */
433#define NUM_ARG_REGS 8
434#define NUM_FP_ARG_REGS 8
435
436/* A Homogeneous Floating-Point or Short-Vector Aggregate may have at most
437 four members. */
438#define HA_MAX_NUM_FLDS 4
439
440/* External dwarf register number scheme. These number are used to
441 identify registers in dwarf debug information, the values are
442 defined by the AArch64 ABI. The numbering scheme is independent of
443 GCC's internal register numbering scheme. */
444
445#define AARCH64_DWARF_R0 0
446
447/* The number of R registers, note 31! not 32. */
448#define AARCH64_DWARF_NUMBER_R 31
449
450#define AARCH64_DWARF_SP 31
43cacb12
RS
451#define AARCH64_DWARF_VG 46
452#define AARCH64_DWARF_P0 48
43e9d192
IB
453#define AARCH64_DWARF_V0 64
454
455/* The number of V registers. */
456#define AARCH64_DWARF_NUMBER_V 32
457
458/* For signal frames we need to use an alternative return column. This
459 value must not correspond to a hard register and must be out of the
460 range of DWARF_FRAME_REGNUM(). */
461#define DWARF_ALT_FRAME_RETURN_COLUMN \
462 (AARCH64_DWARF_V0 + AARCH64_DWARF_NUMBER_V)
463
464/* We add 1 extra frame register for use as the
465 DWARF_ALT_FRAME_RETURN_COLUMN. */
466#define DWARF_FRAME_REGISTERS (DWARF_ALT_FRAME_RETURN_COLUMN + 1)
467
468
469#define DBX_REGISTER_NUMBER(REGNO) aarch64_dbx_register_number (REGNO)
470/* Provide a definition of DWARF_FRAME_REGNUM here so that fallback unwinders
471 can use DWARF_ALT_FRAME_RETURN_COLUMN defined below. This is just the same
472 as the default definition in dwarf2out.c. */
473#undef DWARF_FRAME_REGNUM
474#define DWARF_FRAME_REGNUM(REGNO) DBX_REGISTER_NUMBER (REGNO)
475
476#define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (LR_REGNUM)
477
43e9d192
IB
478#define DWARF2_UNWIND_INFO 1
479
480/* Use R0 through R3 to pass exception handling information. */
481#define EH_RETURN_DATA_REGNO(N) \
482 ((N) < 4 ? ((unsigned int) R0_REGNUM + (N)) : INVALID_REGNUM)
483
484/* Select a format to encode pointers in exception handling data. */
485#define ASM_PREFERRED_EH_DATA_FORMAT(CODE, GLOBAL) \
486 aarch64_asm_preferred_eh_data_format ((CODE), (GLOBAL))
487
361fb3ee
KT
488/* Output the assembly strings we want to add to a function definition. */
489#define ASM_DECLARE_FUNCTION_NAME(STR, NAME, DECL) \
490 aarch64_declare_function_name (STR, NAME, DECL)
491
8144a493
WD
492/* For EH returns X4 contains the stack adjustment. */
493#define EH_RETURN_STACKADJ_RTX gen_rtx_REG (Pmode, R4_REGNUM)
494#define EH_RETURN_HANDLER_RTX aarch64_eh_return_handler_rtx ()
43e9d192
IB
495
496/* Don't use __builtin_setjmp until we've defined it. */
497#undef DONT_USE_BUILTIN_SETJMP
498#define DONT_USE_BUILTIN_SETJMP 1
499
0795f659
VL
500#undef TARGET_COMPUTE_FRAME_LAYOUT
501#define TARGET_COMPUTE_FRAME_LAYOUT aarch64_layout_frame
502
43e9d192
IB
503/* Register in which the structure value is to be returned. */
504#define AARCH64_STRUCT_VALUE_REGNUM R8_REGNUM
505
506/* Non-zero if REGNO is part of the Core register set.
507
508 The rather unusual way of expressing this check is to avoid
509 warnings when building the compiler when R0_REGNUM is 0 and REGNO
510 is unsigned. */
511#define GP_REGNUM_P(REGNO) \
512 (((unsigned) (REGNO - R0_REGNUM)) <= (R30_REGNUM - R0_REGNUM))
513
514#define FP_REGNUM_P(REGNO) \
515 (((unsigned) (REGNO - V0_REGNUM)) <= (V31_REGNUM - V0_REGNUM))
516
517#define FP_LO_REGNUM_P(REGNO) \
518 (((unsigned) (REGNO - V0_REGNUM)) <= (V15_REGNUM - V0_REGNUM))
519
43cacb12
RS
520#define PR_REGNUM_P(REGNO)\
521 (((unsigned) (REGNO - P0_REGNUM)) <= (P15_REGNUM - P0_REGNUM))
522
523#define PR_LO_REGNUM_P(REGNO)\
524 (((unsigned) (REGNO - P0_REGNUM)) <= (P7_REGNUM - P0_REGNUM))
525
43e9d192
IB
526\f
527/* Register and constant classes. */
528
529enum reg_class
530{
531 NO_REGS,
d677263e 532 TAILCALL_ADDR_REGS,
43e9d192
IB
533 GENERAL_REGS,
534 STACK_REG,
535 POINTER_REGS,
536 FP_LO_REGS,
537 FP_REGS,
f25a140b 538 POINTER_AND_FP_REGS,
43cacb12
RS
539 PR_LO_REGS,
540 PR_HI_REGS,
541 PR_REGS,
43e9d192
IB
542 ALL_REGS,
543 LIM_REG_CLASSES /* Last */
544};
545
546#define N_REG_CLASSES ((int) LIM_REG_CLASSES)
547
548#define REG_CLASS_NAMES \
549{ \
550 "NO_REGS", \
d677263e 551 "TAILCALL_ADDR_REGS", \
43e9d192
IB
552 "GENERAL_REGS", \
553 "STACK_REG", \
554 "POINTER_REGS", \
555 "FP_LO_REGS", \
556 "FP_REGS", \
f25a140b 557 "POINTER_AND_FP_REGS", \
43cacb12
RS
558 "PR_LO_REGS", \
559 "PR_HI_REGS", \
560 "PR_REGS", \
43e9d192
IB
561 "ALL_REGS" \
562}
563
564#define REG_CLASS_CONTENTS \
565{ \
566 { 0x00000000, 0x00000000, 0x00000000 }, /* NO_REGS */ \
d677263e 567 { 0x0004ffff, 0x00000000, 0x00000000 }, /* TAILCALL_ADDR_REGS */\
43e9d192
IB
568 { 0x7fffffff, 0x00000000, 0x00000003 }, /* GENERAL_REGS */ \
569 { 0x80000000, 0x00000000, 0x00000000 }, /* STACK_REG */ \
570 { 0xffffffff, 0x00000000, 0x00000003 }, /* POINTER_REGS */ \
571 { 0x00000000, 0x0000ffff, 0x00000000 }, /* FP_LO_REGS */ \
572 { 0x00000000, 0xffffffff, 0x00000000 }, /* FP_REGS */ \
f25a140b 573 { 0xffffffff, 0xffffffff, 0x00000003 }, /* POINTER_AND_FP_REGS */\
43cacb12
RS
574 { 0x00000000, 0x00000000, 0x00000ff0 }, /* PR_LO_REGS */ \
575 { 0x00000000, 0x00000000, 0x000ff000 }, /* PR_HI_REGS */ \
576 { 0x00000000, 0x00000000, 0x000ffff0 }, /* PR_REGS */ \
577 { 0xffffffff, 0xffffffff, 0x000fffff } /* ALL_REGS */ \
43e9d192
IB
578}
579
580#define REGNO_REG_CLASS(REGNO) aarch64_regno_regclass (REGNO)
581
a4a182c6 582#define INDEX_REG_CLASS GENERAL_REGS
43e9d192
IB
583#define BASE_REG_CLASS POINTER_REGS
584
6991c977 585/* Register pairs used to eliminate unneeded registers that point into
43e9d192
IB
586 the stack frame. */
587#define ELIMINABLE_REGS \
588{ \
589 { ARG_POINTER_REGNUM, STACK_POINTER_REGNUM }, \
590 { ARG_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM }, \
591 { FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM }, \
592 { FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM }, \
593}
594
595#define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
596 (OFFSET) = aarch64_initial_elimination_offset (FROM, TO)
597
598/* CPU/ARCH option handling. */
599#include "config/aarch64/aarch64-opts.h"
600
601enum target_cpus
602{
e8fcc9fa 603#define AARCH64_CORE(NAME, INTERNAL_IDENT, SCHED, ARCH, FLAGS, COSTS, IMP, PART, VARIANT) \
192ed1dd 604 TARGET_CPU_##INTERNAL_IDENT,
43e9d192 605#include "aarch64-cores.def"
43e9d192
IB
606 TARGET_CPU_generic
607};
608
a3cd0246 609/* If there is no CPU defined at configure, use generic as default. */
43e9d192
IB
610#ifndef TARGET_CPU_DEFAULT
611#define TARGET_CPU_DEFAULT \
a3cd0246 612 (TARGET_CPU_generic | (AARCH64_CPU_DEFAULT_FLAGS << 6))
43e9d192
IB
613#endif
614
75cf1494
KT
615/* If inserting NOP before a mult-accumulate insn remember to adjust the
616 length so that conditional branching code is updated appropriately. */
617#define ADJUST_INSN_LENGTH(insn, length) \
8baff86e
KT
618 do \
619 { \
620 if (aarch64_madd_needs_nop (insn)) \
621 length += 4; \
622 } while (0)
75cf1494
KT
623
624#define FINAL_PRESCAN_INSN(INSN, OPVEC, NOPERANDS) \
625 aarch64_final_prescan_insn (INSN); \
626
43e9d192
IB
627/* The processor for which instructions should be scheduled. */
628extern enum aarch64_processor aarch64_tune;
629
630/* RTL generation support. */
631#define INIT_EXPANDERS aarch64_init_expanders ()
632\f
633
634/* Stack layout; function entry, exit and calling. */
635#define STACK_GROWS_DOWNWARD 1
636
6991c977 637#define FRAME_GROWS_DOWNWARD 1
43e9d192 638
43e9d192
IB
639#define ACCUMULATE_OUTGOING_ARGS 1
640
641#define FIRST_PARM_OFFSET(FNDECL) 0
642
643/* Fix for VFP */
644#define LIBCALL_VALUE(MODE) \
645 gen_rtx_REG (MODE, FLOAT_MODE_P (MODE) ? V0_REGNUM : R0_REGNUM)
646
647#define DEFAULT_PCC_STRUCT_RETURN 0
648
6a70badb 649#ifdef HAVE_POLY_INT_H
43e9d192
IB
650struct GTY (()) aarch64_frame
651{
652 HOST_WIDE_INT reg_offset[FIRST_PSEUDO_REGISTER];
8799637a
MS
653
654 /* The number of extra stack bytes taken up by register varargs.
655 This area is allocated by the callee at the very top of the
656 frame. This value is rounded up to a multiple of
657 STACK_BOUNDARY. */
658 HOST_WIDE_INT saved_varargs_size;
659
71bfb77a
WD
660 /* The size of the saved callee-save int/FP registers. */
661
43e9d192 662 HOST_WIDE_INT saved_regs_size;
71bfb77a
WD
663
664 /* Offset from the base of the frame (incomming SP) to the
665 top of the locals area. This value is always a multiple of
666 STACK_BOUNDARY. */
6a70badb 667 poly_int64 locals_offset;
43e9d192 668
1c960e02
MS
669 /* Offset from the base of the frame (incomming SP) to the
670 hard_frame_pointer. This value is always a multiple of
671 STACK_BOUNDARY. */
6a70badb 672 poly_int64 hard_fp_offset;
1c960e02
MS
673
674 /* The size of the frame. This value is the offset from base of the
6a70badb
RS
675 frame (incomming SP) to the stack_pointer. This value is always
676 a multiple of STACK_BOUNDARY. */
677 poly_int64 frame_size;
71bfb77a
WD
678
679 /* The size of the initial stack adjustment before saving callee-saves. */
6a70badb 680 poly_int64 initial_adjust;
71bfb77a
WD
681
682 /* The writeback value when pushing callee-save registers.
683 It is zero when no push is used. */
684 HOST_WIDE_INT callee_adjust;
685
686 /* The offset from SP to the callee-save registers after initial_adjust.
687 It may be non-zero if no push is used (ie. callee_adjust == 0). */
6a70badb 688 poly_int64 callee_offset;
71bfb77a
WD
689
690 /* The size of the stack adjustment after saving callee-saves. */
6a70badb 691 poly_int64 final_adjust;
1c960e02 692
204d2c03
WD
693 /* Store FP,LR and setup a frame pointer. */
694 bool emit_frame_chain;
695
363ffa50
JW
696 unsigned wb_candidate1;
697 unsigned wb_candidate2;
698
43e9d192
IB
699 bool laid_out;
700};
701
702typedef struct GTY (()) machine_function
703{
704 struct aarch64_frame frame;
827ab47a
KT
705 /* One entry for each hard register. */
706 bool reg_is_wrapped_separately[LAST_SAVED_REGNUM];
43e9d192
IB
707} machine_function;
708#endif
709
17a819cb
YZ
710/* Which ABI to use. */
711enum aarch64_abi_type
712{
713 AARCH64_ABI_LP64 = 0,
714 AARCH64_ABI_ILP32 = 1
715};
716
717#ifndef AARCH64_ABI_DEFAULT
718#define AARCH64_ABI_DEFAULT AARCH64_ABI_LP64
719#endif
720
721#define TARGET_ILP32 (aarch64_abi & AARCH64_ABI_ILP32)
43e9d192 722
43e9d192
IB
723enum arm_pcs
724{
725 ARM_PCS_AAPCS64, /* Base standard AAPCS for 64 bit. */
726 ARM_PCS_UNKNOWN
727};
728
729
43e9d192 730
43e9d192 731
ef4bddc2 732/* We can't use machine_mode inside a generator file because it
43e9d192
IB
733 hasn't been created yet; we shouldn't be using any code that
734 needs the real definition though, so this ought to be safe. */
735#ifdef GENERATOR_FILE
736#define MACHMODE int
737#else
738#include "insn-modes.h"
febd3244 739#define MACHMODE machine_mode
43e9d192
IB
740#endif
741
febd3244 742#ifndef USED_FOR_TARGET
43e9d192
IB
743/* AAPCS related state tracking. */
744typedef struct
745{
746 enum arm_pcs pcs_variant;
747 int aapcs_arg_processed; /* No need to lay out this argument again. */
748 int aapcs_ncrn; /* Next Core register number. */
749 int aapcs_nextncrn; /* Next next core register number. */
750 int aapcs_nvrn; /* Next Vector register number. */
751 int aapcs_nextnvrn; /* Next Next Vector register number. */
752 rtx aapcs_reg; /* Register assigned to this argument. This
753 is NULL_RTX if this parameter goes on
754 the stack. */
755 MACHMODE aapcs_vfp_rmode;
756 int aapcs_stack_words; /* If the argument is passed on the stack, this
757 is the number of words needed, after rounding
758 up. Only meaningful when
759 aapcs_reg == NULL_RTX. */
760 int aapcs_stack_size; /* The total size (in words, per 8 byte) of the
761 stack arg area so far. */
762} CUMULATIVE_ARGS;
febd3244 763#endif
43e9d192 764
43e9d192 765#define BLOCK_REG_PADDING(MODE, TYPE, FIRST) \
76b0cbf8 766 (aarch64_pad_reg_upward (MODE, TYPE, FIRST) ? PAD_UPWARD : PAD_DOWNWARD)
43e9d192
IB
767
768#define PAD_VARARGS_DOWN 0
769
770#define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, FNDECL, N_NAMED_ARGS) \
771 aarch64_init_cumulative_args (&(CUM), FNTYPE, LIBNAME, FNDECL, N_NAMED_ARGS)
772
773#define FUNCTION_ARG_REGNO_P(REGNO) \
774 aarch64_function_arg_regno_p(REGNO)
775\f
776
777/* ISA Features. */
778
779/* Addressing modes, etc. */
780#define HAVE_POST_INCREMENT 1
781#define HAVE_PRE_INCREMENT 1
782#define HAVE_POST_DECREMENT 1
783#define HAVE_PRE_DECREMENT 1
784#define HAVE_POST_MODIFY_DISP 1
785#define HAVE_PRE_MODIFY_DISP 1
786
787#define MAX_REGS_PER_ADDRESS 2
788
789#define CONSTANT_ADDRESS_P(X) aarch64_constant_address_p(X)
790
43e9d192
IB
791#define REGNO_OK_FOR_BASE_P(REGNO) \
792 aarch64_regno_ok_for_base_p (REGNO, true)
793
794#define REGNO_OK_FOR_INDEX_P(REGNO) \
795 aarch64_regno_ok_for_index_p (REGNO, true)
796
797#define LEGITIMATE_PIC_OPERAND_P(X) \
798 aarch64_legitimate_pic_operand_p (X)
799
800#define CASE_VECTOR_MODE Pmode
801
802#define DEFAULT_SIGNED_CHAR 0
803
804/* An integer expression for the size in bits of the largest integer machine
805 mode that should actually be used. We allow pairs of registers. */
806#define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (TImode)
807
808/* Maximum bytes moved by a single instruction (load/store pair). */
809#define MOVE_MAX (UNITS_PER_WORD * 2)
810
811/* The base cost overhead of a memcpy call, for MOVE_RATIO and friends. */
812#define AARCH64_CALL_RATIO 8
813
e2c75eea
JG
814/* MOVE_RATIO dictates when we will use the move_by_pieces infrastructure.
815 move_by_pieces will continually copy the largest safe chunks. So a
816 7-byte copy is a 4-byte + 2-byte + byte copy. This proves inefficient
817 for both size and speed of copy, so we will instead use the "movmem"
818 standard name to implement the copy. This logic does not apply when
819 targeting -mstrict-align, so keep a sensible default in that case. */
43e9d192 820#define MOVE_RATIO(speed) \
e2c75eea 821 (!STRICT_ALIGNMENT ? 2 : (((speed) ? 15 : AARCH64_CALL_RATIO) / 2))
43e9d192
IB
822
823/* For CLEAR_RATIO, when optimizing for size, give a better estimate
824 of the length of a memset call, but use the default otherwise. */
825#define CLEAR_RATIO(speed) \
826 ((speed) ? 15 : AARCH64_CALL_RATIO)
827
828/* SET_RATIO is similar to CLEAR_RATIO, but for a non-zero constant, so when
829 optimizing for size adjust the ratio to account for the overhead of loading
830 the constant. */
831#define SET_RATIO(speed) \
832 ((speed) ? 15 : AARCH64_CALL_RATIO - 2)
833
43e9d192
IB
834/* Disable auto-increment in move_by_pieces et al. Use of auto-increment is
835 rarely a good idea in straight-line code since it adds an extra address
836 dependency between each instruction. Better to use incrementing offsets. */
837#define USE_LOAD_POST_INCREMENT(MODE) 0
838#define USE_LOAD_POST_DECREMENT(MODE) 0
839#define USE_LOAD_PRE_INCREMENT(MODE) 0
840#define USE_LOAD_PRE_DECREMENT(MODE) 0
841#define USE_STORE_POST_INCREMENT(MODE) 0
842#define USE_STORE_POST_DECREMENT(MODE) 0
843#define USE_STORE_PRE_INCREMENT(MODE) 0
844#define USE_STORE_PRE_DECREMENT(MODE) 0
845
56c9ef5f
KT
846/* WORD_REGISTER_OPERATIONS does not hold for AArch64.
847 The assigned word_mode is DImode but operations narrower than SImode
848 behave as 32-bit operations if using the W-form of the registers rather
849 than as word_mode (64-bit) operations as WORD_REGISTER_OPERATIONS
850 expects. */
851#define WORD_REGISTER_OPERATIONS 0
43e9d192
IB
852
853/* Define if loading from memory in MODE, an integral mode narrower than
854 BITS_PER_WORD will either zero-extend or sign-extend. The value of this
855 macro should be the code that says which one of the two operations is
856 implicitly done, or UNKNOWN if none. */
857#define LOAD_EXTEND_OP(MODE) ZERO_EXTEND
858
859/* Define this macro to be non-zero if instructions will fail to work
860 if given data not on the nominal alignment. */
861#define STRICT_ALIGNMENT TARGET_STRICT_ALIGN
862
863/* Define this macro to be non-zero if accessing less than a word of
864 memory is no faster than accessing a word of memory, i.e., if such
865 accesses require more than one instruction or if there is no
866 difference in cost.
867 Although there's no difference in instruction count or cycles,
868 in AArch64 we don't want to expand to a sub-word to a 64-bit access
869 if we don't have to, for power-saving reasons. */
870#define SLOW_BYTE_ACCESS 0
871
43e9d192
IB
872#define NO_FUNCTION_CSE 1
873
17a819cb
YZ
874/* Specify the machine mode that the hardware addresses have.
875 After generation of rtl, the compiler makes no further distinction
876 between pointers and any other objects of this machine mode. */
43e9d192 877#define Pmode DImode
17a819cb
YZ
878
879/* A C expression whose value is zero if pointers that need to be extended
880 from being `POINTER_SIZE' bits wide to `Pmode' are sign-extended and
881 greater then zero if they are zero-extended and less then zero if the
882 ptr_extend instruction should be used. */
883#define POINTERS_EXTEND_UNSIGNED 1
884
885/* Mode of a function address in a call instruction (for indexing purposes). */
43e9d192
IB
886#define FUNCTION_MODE Pmode
887
888#define SELECT_CC_MODE(OP, X, Y) aarch64_select_cc_mode (OP, X, Y)
889
f8bf91ab
N
890#define REVERSIBLE_CC_MODE(MODE) 1
891
43e9d192
IB
892#define REVERSE_CONDITION(CODE, MODE) \
893 (((MODE) == CCFPmode || (MODE) == CCFPEmode) \
894 ? reverse_condition_maybe_unordered (CODE) \
895 : reverse_condition (CODE))
896
897#define CLZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) \
952e7819 898 ((VALUE) = GET_MODE_UNIT_BITSIZE (MODE), 2)
43e9d192 899#define CTZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) \
952e7819 900 ((VALUE) = GET_MODE_UNIT_BITSIZE (MODE), 2)
43e9d192
IB
901
902#define INCOMING_RETURN_ADDR_RTX gen_rtx_REG (Pmode, LR_REGNUM)
903
904#define RETURN_ADDR_RTX aarch64_return_addr
905
28514dda
YZ
906/* 3 insns + padding + 2 pointer-sized entries. */
907#define TRAMPOLINE_SIZE (TARGET_ILP32 ? 24 : 32)
43e9d192
IB
908
909/* Trampolines contain dwords, so must be dword aligned. */
910#define TRAMPOLINE_ALIGNMENT 64
911
912/* Put trampolines in the text section so that mapping symbols work
913 correctly. */
914#define TRAMPOLINE_SECTION text_section
43e9d192
IB
915
916/* To start with. */
b9066f5a
MW
917#define BRANCH_COST(SPEED_P, PREDICTABLE_P) \
918 (aarch64_branch_cost (SPEED_P, PREDICTABLE_P))
43e9d192
IB
919\f
920
921/* Assembly output. */
922
923/* For now we'll make all jump tables pc-relative. */
924#define CASE_VECTOR_PC_RELATIVE 1
925
926#define CASE_VECTOR_SHORTEN_MODE(min, max, body) \
927 ((min < -0x1fff0 || max > 0x1fff0) ? SImode \
928 : (min < -0x1f0 || max > 0x1f0) ? HImode \
929 : QImode)
930
931/* Jump table alignment is explicit in ASM_OUTPUT_CASE_LABEL. */
932#define ADDR_VEC_ALIGN(JUMPTABLE) 0
933
92d649c4
VK
934#define MCOUNT_NAME "_mcount"
935
936#define NO_PROFILE_COUNTERS 1
937
938/* Emit rtl for profiling. Output assembler code to FILE
939 to call "_mcount" for profiling a function entry. */
3294102b
MS
940#define PROFILE_HOOK(LABEL) \
941 { \
942 rtx fun, lr; \
943 lr = get_hard_reg_initial_val (Pmode, LR_REGNUM); \
944 fun = gen_rtx_SYMBOL_REF (Pmode, MCOUNT_NAME); \
db69559b 945 emit_library_call (fun, LCT_NORMAL, VOIDmode, lr, Pmode); \
3294102b 946 }
92d649c4
VK
947
948/* All the work done in PROFILE_HOOK, but still required. */
949#define FUNCTION_PROFILER(STREAM, LABELNO) do { } while (0)
43e9d192
IB
950
951/* For some reason, the Linux headers think they know how to define
952 these macros. They don't!!! */
953#undef ASM_APP_ON
954#undef ASM_APP_OFF
955#define ASM_APP_ON "\t" ASM_COMMENT_START " Start of user assembly\n"
956#define ASM_APP_OFF "\t" ASM_COMMENT_START " End of user assembly\n"
957
43e9d192
IB
958#define CONSTANT_POOL_BEFORE_FUNCTION 0
959
960/* This definition should be relocated to aarch64-elf-raw.h. This macro
961 should be undefined in aarch64-linux.h and a clear_cache pattern
962 implmented to emit either the call to __aarch64_sync_cache_range()
963 directly or preferably the appropriate sycall or cache clear
964 instructions inline. */
965#define CLEAR_INSN_CACHE(beg, end) \
966 extern void __aarch64_sync_cache_range (void *, void *); \
967 __aarch64_sync_cache_range (beg, end)
968
e6bd9fb9 969#define SHIFT_COUNT_TRUNCATED (!TARGET_SIMD)
43e9d192 970
73d9ac6a
IB
971/* Choose appropriate mode for caller saves, so we do the minimum
972 required size of load/store. */
973#define HARD_REGNO_CALLER_SAVE_MODE(REGNO, NREGS, MODE) \
974 aarch64_hard_regno_caller_save_mode ((REGNO), (NREGS), (MODE))
975
d78006d9
KT
976#undef SWITCHABLE_TARGET
977#define SWITCHABLE_TARGET 1
978
43e9d192
IB
979/* Check TLS Descriptors mechanism is selected. */
980#define TARGET_TLS_DESC (aarch64_tls_dialect == TLS_DESCRIPTORS)
981
982extern enum aarch64_code_model aarch64_cmodel;
983
984/* When using the tiny addressing model conditional and unconditional branches
985 can span the whole of the available address space (1MB). */
986#define HAS_LONG_COND_BRANCH \
987 (aarch64_cmodel == AARCH64_CMODEL_TINY \
988 || aarch64_cmodel == AARCH64_CMODEL_TINY_PIC)
989
990#define HAS_LONG_UNCOND_BRANCH \
991 (aarch64_cmodel == AARCH64_CMODEL_TINY \
992 || aarch64_cmodel == AARCH64_CMODEL_TINY_PIC)
993
2ca5b430
KT
994#define TARGET_SUPPORTS_WIDE_INT 1
995
635e66fe
AL
996/* Modes valid for AdvSIMD D registers, i.e. that fit in half a Q register. */
997#define AARCH64_VALID_SIMD_DREG_MODE(MODE) \
998 ((MODE) == V2SImode || (MODE) == V4HImode || (MODE) == V8QImode \
999 || (MODE) == V2SFmode || (MODE) == V4HFmode || (MODE) == DImode \
1000 || (MODE) == DFmode)
1001
43e9d192
IB
1002/* Modes valid for AdvSIMD Q registers. */
1003#define AARCH64_VALID_SIMD_QREG_MODE(MODE) \
1004 ((MODE) == V4SImode || (MODE) == V8HImode || (MODE) == V16QImode \
71a11456
AL
1005 || (MODE) == V4SFmode || (MODE) == V8HFmode || (MODE) == V2DImode \
1006 || (MODE) == V2DFmode)
43e9d192 1007
7ac29c0f
RS
1008#define ENDIAN_LANE_N(NUNITS, N) \
1009 (BYTES_BIG_ENDIAN ? NUNITS - 1 - N : N)
e58bf20a 1010
9815fafa
RE
1011/* Support for a configure-time default CPU, etc. We currently support
1012 --with-arch and --with-cpu. Both are ignored if either is specified
1013 explicitly on the command line at run time. */
1014#define OPTION_DEFAULT_SPECS \
1015 {"arch", "%{!march=*:%{!mcpu=*:-march=%(VALUE)}}" }, \
1016 {"cpu", "%{!march=*:%{!mcpu=*:-mcpu=%(VALUE)}}" },
1017
054b4005
JG
1018#define MCPU_TO_MARCH_SPEC \
1019 " %{mcpu=*:-march=%:rewrite_mcpu(%{mcpu=*:%*})}"
682287fb
JG
1020
1021extern const char *aarch64_rewrite_mcpu (int argc, const char **argv);
054b4005 1022#define MCPU_TO_MARCH_SPEC_FUNCTIONS \
682287fb
JG
1023 { "rewrite_mcpu", aarch64_rewrite_mcpu },
1024
7e1bcce3
KT
1025#if defined(__aarch64__)
1026extern const char *host_detect_local_cpu (int argc, const char **argv);
a08b5429 1027#define HAVE_LOCAL_CPU_DETECT
7e1bcce3
KT
1028# define EXTRA_SPEC_FUNCTIONS \
1029 { "local_cpu_detect", host_detect_local_cpu }, \
054b4005 1030 MCPU_TO_MARCH_SPEC_FUNCTIONS
7e1bcce3
KT
1031
1032# define MCPU_MTUNE_NATIVE_SPECS \
1033 " %{march=native:%<march=native %:local_cpu_detect(arch)}" \
1034 " %{mcpu=native:%<mcpu=native %:local_cpu_detect(cpu)}" \
1035 " %{mtune=native:%<mtune=native %:local_cpu_detect(tune)}"
1036#else
1037# define MCPU_MTUNE_NATIVE_SPECS ""
054b4005 1038# define EXTRA_SPEC_FUNCTIONS MCPU_TO_MARCH_SPEC_FUNCTIONS
7e1bcce3
KT
1039#endif
1040
682287fb 1041#define ASM_CPU_SPEC \
054b4005 1042 MCPU_TO_MARCH_SPEC
682287fb 1043
682287fb
JG
1044#define EXTRA_SPECS \
1045 { "asm_cpu_spec", ASM_CPU_SPEC }
1046
5fca7b66
RH
1047#define ASM_OUTPUT_POOL_EPILOGUE aarch64_asm_output_pool_epilogue
1048
1b62ed4f
JG
1049/* This type is the user-visible __fp16, and a pointer to that type. We
1050 need it in many places in the backend. Defined in aarch64-builtins.c. */
1051extern tree aarch64_fp16_type_node;
1052extern tree aarch64_fp16_ptr_type_node;
1053
817221cc
WD
1054/* The generic unwind code in libgcc does not initialize the frame pointer.
1055 So in order to unwind a function using a frame pointer, the very first
1056 function that is unwound must save the frame pointer. That way the frame
1057 pointer is restored and its value is now valid - otherwise _Unwind_GetGR
1058 crashes. Libgcc can now be safely built with -fomit-frame-pointer. */
1059#define LIBGCC2_UNWIND_ATTRIBUTE \
1060 __attribute__((optimize ("no-omit-frame-pointer")))
1061
43cacb12
RS
1062#ifndef USED_FOR_TARGET
1063extern poly_uint16 aarch64_sve_vg;
1064
1065/* The number of bits and bytes in an SVE vector. */
1066#define BITS_PER_SVE_VECTOR (poly_uint16 (aarch64_sve_vg * 64))
1067#define BYTES_PER_SVE_VECTOR (poly_uint16 (aarch64_sve_vg * 8))
1068
1069/* The number of bytes in an SVE predicate. */
1070#define BYTES_PER_SVE_PRED aarch64_sve_vg
1071
1072/* The SVE mode for a vector of bytes. */
1073#define SVE_BYTE_MODE VNx16QImode
1074
1075/* The maximum number of bytes in a fixed-size vector. This is 256 bytes
1076 (for -msve-vector-bits=2048) multiplied by the maximum number of
1077 vectors in a structure mode (4).
1078
1079 This limit must not be used for variable-size vectors, since
1080 VL-agnostic code must work with arbitary vector lengths. */
1081#define MAX_COMPILE_TIME_VEC_BYTES (256 * 4)
1082#endif
1083
1084#define REGMODE_NATURAL_SIZE(MODE) aarch64_regmode_natural_size (MODE)
1085
8c6e3b23
TC
1086/* Allocate a minimum of STACK_CLASH_MIN_BYTES_OUTGOING_ARGS bytes for the
1087 outgoing arguments if stack clash protection is enabled. This is essential
1088 as the extra arg space allows us to skip a check in alloca. */
1089#undef STACK_DYNAMIC_OFFSET
1090#define STACK_DYNAMIC_OFFSET(FUNDECL) \
1091 ((flag_stack_clash_protection \
1092 && cfun->calls_alloca \
1093 && known_lt (crtl->outgoing_args_size, \
1094 STACK_CLASH_MIN_BYTES_OUTGOING_ARGS)) \
1095 ? ROUND_UP (STACK_CLASH_MIN_BYTES_OUTGOING_ARGS, \
1096 STACK_BOUNDARY / BITS_PER_UNIT) \
1097 : (crtl->outgoing_args_size + STACK_POINTER_OFFSET))
1098
43e9d192 1099#endif /* GCC_AARCH64_H */