[AArch64][gas] Add -mcpu support for Arm Ares
[deliverable/binutils-gdb.git] / gas / doc / c-aarch64.texi
CommitLineData
82704155 1@c Copyright (C) 2009-2019 Free Software Foundation, Inc.
a06ea964
NC
2@c Contributed by ARM Ltd.
3@c This is part of the GAS manual.
4@c For copying conditions, see the file as.texinfo.
5@c man end
6
7@ifset GENERIC
8@page
9@node AArch64-Dependent
10@chapter AArch64 Dependent Features
11@end ifset
12
13@ifclear GENERIC
14@node Machine Dependencies
15@chapter AArch64 Dependent Features
16@end ifclear
17
18@cindex AArch64 support
a06ea964
NC
19@menu
20* AArch64 Options:: Options
df359aa7 21* AArch64 Extensions:: Extensions
a06ea964
NC
22* AArch64 Syntax:: Syntax
23* AArch64 Floating Point:: Floating Point
24* AArch64 Directives:: AArch64 Machine Directives
25* AArch64 Opcodes:: Opcodes
26* AArch64 Mapping Symbols:: Mapping Symbols
27@end menu
28
29@node AArch64 Options
30@section Options
31@cindex AArch64 options (none)
32@cindex options for AArch64 (none)
33
34@c man begin OPTIONS
35@table @gcctabopt
36
a05a5b64 37@cindex @option{-EB} command-line option, AArch64
a06ea964
NC
38@item -EB
39This option specifies that the output generated by the assembler should
40be marked as being encoded for a big-endian processor.
41
a05a5b64 42@cindex @option{-EL} command-line option, AArch64
a06ea964
NC
43@item -EL
44This option specifies that the output generated by the assembler should
45be marked as being encoded for a little-endian processor.
46
a05a5b64 47@cindex @option{-mabi=} command-line option, AArch64
69091a2c
YZ
48@item -mabi=@var{abi}
49Specify which ABI the source code uses. The recognized arguments
50are: @code{ilp32} and @code{lp64}, which decides the generated object
51file in ELF32 and ELF64 format respectively. The default is @code{lp64}.
52
a05a5b64 53@cindex @option{-mcpu=} command-line option, AArch64
df359aa7
RE
54@item -mcpu=@var{processor}[+@var{extension}@dots{}]
55This option specifies the target processor. The assembler will issue an error
56message if an attempt is made to assemble an instruction which will not execute
57on the target processor. The following processor names are recognized:
9c352f1c 58@code{cortex-a35},
df359aa7 59@code{cortex-a53},
1e292627 60@code{cortex-a55},
df359aa7 61@code{cortex-a57},
2abdd192 62@code{cortex-a72},
1aa70332 63@code{cortex-a73},
1e292627 64@code{cortex-a75},
c2a0f929 65@code{cortex-a76},
c8fcc360 66@code{ares},
2412d878 67@code{exynos-m1},
2fe9c2a0 68@code{falkor},
6b21c2bf 69@code{qdf24xx},
7605d944 70@code{saphira},
55fbd992 71@code{thunderx},
0a8be2fe 72@code{vulcan},
0a9ce86d 73@code{xgene1}
df359aa7 74and
0a9ce86d 75@code{xgene2}.
df359aa7
RE
76The special name @code{all} may be used to allow the assembler to accept
77instructions valid for any supported processor, including all optional
78extensions.
79
80In addition to the basic instruction set, the assembler can be told to
81accept, or restrict, various extension mnemonics that extend the
82processor. @xref{AArch64 Extensions}.
83
84If some implementations of a particular processor can have an
85extension, then then those extensions are automatically enabled.
86Consequently, you will not normally have to specify any additional
87extensions.
88
a05a5b64 89@cindex @option{-march=} command-line option, AArch64
df359aa7
RE
90@item -march=@var{architecture}[+@var{extension}@dots{}]
91This option specifies the target architecture. The assembler will
92issue an error message if an attempt is made to assemble an
93instruction which will not execute on the target architecture. The
acb787b0 94following architecture names are recognized: @code{armv8-a},
70d56181
SD
95@code{armv8.1-a}, @code{armv8.2-a}, @code{armv8.3-a}, @code{armv8.4-a}
96and @code{armv8.5-a}.
df359aa7
RE
97
98If both @option{-mcpu} and @option{-march} are specified, the
99assembler will use the setting for @option{-mcpu}. If neither are
100specified, the assembler will default to @option{-mcpu=all}.
101
102The architecture option can be extended with the same instruction set
103extension options as the @option{-mcpu} option. Unlike
104@option{-mcpu}, extensions are not always enabled by default,
105@xref{AArch64 Extensions}.
106
a05a5b64 107@cindex @code{-mverbose-error} command-line option, AArch64
a52e6fd3
YZ
108@item -mverbose-error
109This option enables verbose error messages for AArch64 gas. This option
110is enabled by default.
111
a05a5b64 112@cindex @code{-mno-verbose-error} command-line option, AArch64
a52e6fd3
YZ
113@item -mno-verbose-error
114This option disables verbose error messages in AArch64 gas.
115
a06ea964
NC
116@end table
117@c man end
118
df359aa7
RE
119@node AArch64 Extensions
120@section Architecture Extensions
121
122The table below lists the permitted architecture extensions that are
123supported by the assembler and the conditions under which they are
124automatically enabled.
125
126Multiple extensions may be specified, separated by a @code{+}.
127Extension mnemonics may also be removed from those the assembler
128accepts. This is done by prepending @code{no} to the option that adds
129the extension. Extensions that are removed must be listed after all
130extensions that have been added.
131
132Enabling an extension that requires other extensions will
133automatically cause those extensions to be enabled. Similarly,
134disabling an extension that is required by other extensions will
135automatically cause those extensions to be disabled.
136
137@multitable @columnfractions .12 .17 .17 .54
138@headitem Extension @tab Minimum Architecture @tab Enabled by default
139 @tab Description
f482d304
RS
140@item @code{compnum} @tab ARMv8.2-A @tab ARMv8.3-A or later
141 @tab Enable the complex number SIMD extensions. This implies
142 @code{fp16} and @code{simd}.
af117b3c 143@item @code{crc} @tab ARMv8-A @tab ARMv8.1-A or later
df359aa7
RE
144 @tab Enable CRC instructions.
145@item @code{crypto} @tab ARMv8-A @tab No
68ffd936
TC
146 @tab Enable cryptographic extensions. This implies @code{fp}, @code{simd}, @code{aes} and @code{sha2}.
147@item @code{aes} @tab ARMv8-A @tab No
148 @tab Enable the AES cryptographic extensions. This implies @code{fp} and @code{simd}.
149@item @code{sha2} @tab ARMv8-A @tab No
150 @tab Enable the SHA2 cryptographic extensions. This implies @code{fp} and @code{simd}.
151@item @code{sha3} @tab ARMv8.2-A @tab No
152 @tab Enable the ARMv8.2-A SHA2 and SHA3 cryptographic extensions. This implies @code{fp}, @code{simd} and @code{sha2}.
153@item @code{sm4} @tab ARMv8.2-A @tab No
154 @tab Enable the ARMv8.2-A SM3 and SM4 cryptographic extensions. This implies @code{fp} and @code{simd}.
df359aa7
RE
155@item @code{fp} @tab ARMv8-A @tab ARMv8-A or later
156 @tab Enable floating-point extensions.
87018195
MW
157@item @code{fp16} @tab ARMv8.2-A @tab ARMv8.2-A or later
158 @tab Enable ARMv8.2 16-bit floating-point support. This implies
159 @code{fp}.
b607cde1
JG
160@item @code{lor} @tab ARMv8-A @tab ARMv8.1-A or later
161 @tab Enable Limited Ordering Regions extensions.
162@item @code{lse} @tab ARMv8-A @tab ARMv8.1-A or later
163 @tab Enable Large System extensions.
164@item @code{pan} @tab ARMv8-A @tab ARMv8.1-A or later
165 @tab Enable Privileged Access Never support.
73af8ed6
MW
166@item @code{profile} @tab ARMv8.2-A @tab No
167 @tab Enable statistical profiling extensions.
50cc854c
MW
168@item @code{ras} @tab ARMv8-A @tab ARMv8.2-A or later
169 @tab Enable the Reliability, Availability and Serviceability
170 extension.
01cca2f9
SN
171@item @code{rcpc} @tab ARMv8.2-A @tab ARMv8.3-A or later
172 @tab Enable the weak release consistency extension.
b607cde1
JG
173@item @code{rdma} @tab ARMv8-A @tab ARMv8.1-A or later
174 @tab Enable ARMv8.1 Advanced SIMD extensions. This implies @code{simd}.
175@item @code{simd} @tab ARMv8-A @tab ARMv8-A or later
176 @tab Enable Advanced SIMD extensions. This implies @code{fp}.
582e12bf
RS
177@item @code{sve} @tab ARMv8.2-A @tab No
178 @tab Enable the Scalable Vector Extensions. This implies @code{fp16},
179 @code{simd} and @code{compnum}.
68ffd936 180@item @code{dotprod} @tab ARMv8.2-A @tab ARMv8.4-A or later
65a55fbb 181 @tab Enable the Dot Product extension. This implies @code{simd}.
d0f7791c
TC
182@item @code{fp16fml} @tab ARMv8.2-A @tab ARMv8.4-A or later
183 @tab Enable ARMv8.2 16-bit floating-point multiplication variant support.
184 This implies @code{fp16}.
68dfbb92
SD
185@item @code{sb} @tab ARMv8-A @tab ARMv8.5-A or later
186 @tab Enable the speculation barrier instruction sb.
2ac435d4
SD
187@item @code{predres} @tab ARMv8-A @tab ARMv8.5-A or later
188 @tab Enable the Execution and Data and Prediction instructions.
af4bcb4c
SD
189@item @code{rng} @tab ARMv8.5-A @tab No
190 @tab Enable ARMv8.5-A random number instructions.
104fefee
SD
191@item @code{ssbs} @tab ARMv8-A @tab ARMv8.5-A or later
192 @tab Enable Speculative Store Bypassing Safe state read and write.
73b605ec
SD
193@item @code{memtag} @tab ARMv8.5-A @tab No
194 @tab Enable ARMv8.5-A Memory Tagging Extensions.
df359aa7
RE
195@end multitable
196
a06ea964
NC
197@node AArch64 Syntax
198@section Syntax
199@menu
200* AArch64-Chars:: Special Characters
201* AArch64-Regs:: Register Names
202* AArch64-Relocations:: Relocations
203@end menu
204
205@node AArch64-Chars
206@subsection Special Characters
207
208@cindex line comment character, AArch64
209@cindex AArch64 line comment character
210The presence of a @samp{//} on a line indicates the start of a comment
211that extends to the end of the current line. If a @samp{#} appears as
212the first character of a line, the whole line is treated as a comment.
213
214@cindex line separator, AArch64
215@cindex statement separator, AArch64
216@cindex AArch64 line separator
217The @samp{;} character can be used instead of a newline to separate
218statements.
219
220@cindex immediate character, AArch64
221@cindex AArch64 immediate character
222The @samp{#} can be optionally used to indicate immediate operands.
223
224@node AArch64-Regs
225@subsection Register Names
226
227@cindex AArch64 register names
228@cindex register names, AArch64
229Please refer to the section @samp{4.4 Register Names} of
230@samp{ARMv8 Instruction Set Overview}, which is available at
231@uref{http://infocenter.arm.com}.
232
233@node AArch64-Relocations
234@subsection Relocations
235
236@cindex relocations, AArch64
237@cindex AArch64 relocations
238@cindex MOVN, MOVZ and MOVK group relocations, AArch64
239Relocations for @samp{MOVZ} and @samp{MOVK} instructions can be generated
240by prefixing the label with @samp{#:abs_g2:} etc.
241For example to load the 48-bit absolute address of @var{foo} into x0:
242
243@smallexample
244 movz x0, #:abs_g2:foo // bits 32-47, overflow check
245 movk x0, #:abs_g1_nc:foo // bits 16-31, no overflow check
246 movk x0, #:abs_g0_nc:foo // bits 0-15, no overflow check
247@end smallexample
248
249@cindex ADRP, ADD, LDR/STR group relocations, AArch64
250Relocations for @samp{ADRP}, and @samp{ADD}, @samp{LDR} or @samp{STR}
251instructions can be generated by prefixing the label with
34fd659b 252@samp{:pg_hi21:} and @samp{#:lo12:} respectively.
a06ea964 253
34bca508 254For example to use 33-bit (+/-4GB) pc-relative addressing to
a06ea964
NC
255load the address of @var{foo} into x0:
256
257@smallexample
34fd659b 258 adrp x0, :pg_hi21:foo
a06ea964
NC
259 add x0, x0, #:lo12:foo
260@end smallexample
261
262Or to load the value of @var{foo} into x0:
263
264@smallexample
34fd659b 265 adrp x0, :pg_hi21:foo
a06ea964
NC
266 ldr x0, [x0, #:lo12:foo]
267@end smallexample
268
34fd659b 269Note that @samp{:pg_hi21:} is optional.
a06ea964
NC
270
271@smallexample
272 adrp x0, foo
273@end smallexample
274
275is equivalent to
276
277@smallexample
34fd659b 278 adrp x0, :pg_hi21:foo
a06ea964
NC
279@end smallexample
280
281@node AArch64 Floating Point
282@section Floating Point
283
284@cindex floating point, AArch64 (@sc{ieee})
285@cindex AArch64 floating point (@sc{ieee})
286The AArch64 architecture uses @sc{ieee} floating-point numbers.
287
288@node AArch64 Directives
289@section AArch64 Machine Directives
290
291@cindex machine directives, AArch64
292@cindex AArch64 machine directives
293@table @code
294
295@c AAAAAAAAAAAAAAAAAAAAAAAAA
8e02d7f5
JW
296
297@cindex @code{.arch} directive, AArch64
298@item .arch @var{name}
299Select the target architecture. Valid values for @var{name} are the same as
a05a5b64 300for the @option{-march} command-line option.
8e02d7f5
JW
301
302Specifying @code{.arch} clears any previously selected architecture
303extensions.
304
305@cindex @code{.arch_extension} directive, AArch64
306@item .arch_extension @var{name}
307Add or remove an architecture extension to the target architecture. Valid
308values for @var{name} are the same as those accepted as architectural
a05a5b64 309extensions by the @option{-mcpu} command-line option.
8e02d7f5
JW
310
311@code{.arch_extension} may be used multiple times to add or remove extensions
312incrementally to the architecture being compiled for.
313
a06ea964
NC
314@c BBBBBBBBBBBBBBBBBBBBBBBBBB
315
316@cindex @code{.bss} directive, AArch64
317@item .bss
318This directive switches to the @code{.bss} section.
319
320@c CCCCCCCCCCCCCCCCCCCCCCCCCC
30fab421
NC
321
322@cindex @code{.cpu} directive, AArch64
323@item .cpu @var{name}
324Set the target processor. Valid values for @var{name} are the same as
a05a5b64 325those accepted by the @option{-mcpu=} command-line option.
30fab421 326
a06ea964 327@c DDDDDDDDDDDDDDDDDDDDDDDDDD
30fab421
NC
328
329@cindex @code{.dword} directive, AArch64
330@item .dword @var{expressions}
331The @code{.dword} directive produces 64 bit values.
332
a06ea964 333@c EEEEEEEEEEEEEEEEEEEEEEEEEE
30fab421
NC
334
335@cindex @code{.even} directive, AArch64
336@item .even
337The @code{.even} directive aligns the output on the next even byte
338boundary.
339
a06ea964
NC
340@c FFFFFFFFFFFFFFFFFFFFFFFFFF
341@c GGGGGGGGGGGGGGGGGGGGGGGGGG
342@c HHHHHHHHHHHHHHHHHHHHHHHHHH
343@c IIIIIIIIIIIIIIIIIIIIIIIIII
30fab421
NC
344
345@cindex @code{.inst} directive, AArch64
346@item .inst @var{expressions}
347Inserts the expressions into the output as if they were instructions,
348rather than data.
349
a06ea964
NC
350@c JJJJJJJJJJJJJJJJJJJJJJJJJJ
351@c KKKKKKKKKKKKKKKKKKKKKKKKKK
352@c LLLLLLLLLLLLLLLLLLLLLLLLLL
353
354@cindex @code{.ltorg} directive, AArch64
355@item .ltorg
356This directive causes the current contents of the literal pool to be
357dumped into the current section (which is assumed to be the .text
358section) at the current location (aligned to a word boundary).
df359aa7 359GAS maintains a separate literal pool for each section and each
a06ea964
NC
360sub-section. The @code{.ltorg} directive will only affect the literal
361pool of the current section and sub-section. At the end of assembly
362all remaining, un-empty literal pools will automatically be dumped.
363
df359aa7 364Note - older versions of GAS would dump the current literal
a06ea964
NC
365pool any time a section change occurred. This is no longer done, since
366it prevents accurate control of the placement of literal pools.
367
368@c MMMMMMMMMMMMMMMMMMMMMMMMMM
369
370@c NNNNNNNNNNNNNNNNNNNNNNNNNN
371@c OOOOOOOOOOOOOOOOOOOOOOOOOO
372
373@c PPPPPPPPPPPPPPPPPPPPPPPPPP
374
375@cindex @code{.pool} directive, AArch64
376@item .pool
377This is a synonym for .ltorg.
378
379@c QQQQQQQQQQQQQQQQQQQQQQQQQQ
380@c RRRRRRRRRRRRRRRRRRRRRRRRRR
381
382@cindex @code{.req} directive, AArch64
383@item @var{name} .req @var{register name}
384This creates an alias for @var{register name} called @var{name}. For
385example:
386
387@smallexample
388 foo .req w0
389@end smallexample
390
8975f864
RR
391ip0, ip1, lr and fp are automatically defined to
392alias to X16, X17, X30 and X29 respectively.
393
a06ea964
NC
394@c SSSSSSSSSSSSSSSSSSSSSSSSSS
395
396@c TTTTTTTTTTTTTTTTTTTTTTTTTT
397
30fab421
NC
398@cindex @code{.tlsdescadd} directive, AArch64
399@item @code{.tlsdescadd}
400Emits a TLSDESC_ADD reloc on the next instruction.
401
402@cindex @code{.tlsdesccall} directive, AArch64
403@item @code{.tlsdesccall}
404Emits a TLSDESC_CALL reloc on the next instruction.
405
406@cindex @code{.tlsdescldr} directive, AArch64
407@item @code{.tlsdescldr}
408Emits a TLSDESC_LDR reloc on the next instruction.
409
a06ea964
NC
410@c UUUUUUUUUUUUUUUUUUUUUUUUUU
411
412@cindex @code{.unreq} directive, AArch64
413@item .unreq @var{alias-name}
414This undefines a register alias which was previously defined using the
415@code{req} directive. For example:
416
417@smallexample
418 foo .req w0
419 .unreq foo
420@end smallexample
421
422An error occurs if the name is undefined. Note - this pseudo op can
423be used to delete builtin in register name aliases (eg 'w0'). This
424should only be done if it is really necessary.
425
426@c VVVVVVVVVVVVVVVVVVVVVVVVVV
427
428@c WWWWWWWWWWWWWWWWWWWWWWWWWW
429@c XXXXXXXXXXXXXXXXXXXXXXXXXX
a06ea964 430
edc66de9 431@cindex @code{.xword} directive, AArch64
30fab421
NC
432@item .xword @var{expressions}
433The @code{.xword} directive produces 64 bit values. This is the same
434as the @code{.dword} directive.
435
436@c YYYYYYYYYYYYYYYYYYYYYYYYYY
437@c ZZZZZZZZZZZZZZZZZZZZZZZZZZ
edc66de9 438
3a67e1a6
ST
439@cindex @code{.cfi_b_key_frame} directive, AArch64
440@item @code{.cfi_b_key_frame}
441The @code{.cfi_b_key_frame} directive inserts a 'B' character into the CIE
442corresponding to the current frame's FDE, meaning that its return address has
443been signed with the B-key. If two frames are signed with differing keys then
444they will not share the same CIE. This information is intended to be used by
445the stack unwinder in order to properly authenticate return addresses.
446
a06ea964
NC
447@end table
448
449@node AArch64 Opcodes
450@section Opcodes
451
452@cindex AArch64 opcodes
453@cindex opcodes for AArch64
df359aa7 454GAS implements all the standard AArch64 opcodes. It also
a06ea964 455implements several pseudo opcodes, including several synthetic load
34bca508 456instructions.
a06ea964
NC
457
458@table @code
459
460@cindex @code{LDR reg,=<expr>} pseudo op, AArch64
461@item LDR =
462@smallexample
463 ldr <register> , =<expression>
464@end smallexample
465
466The constant expression will be placed into the nearest literal pool (if it not
467already there) and a PC-relative LDR instruction will be generated.
468
469@end table
470
471For more information on the AArch64 instruction set and assembly language
472notation, see @samp{ARMv8 Instruction Set Overview} available at
473@uref{http://infocenter.arm.com}.
474
475
476@node AArch64 Mapping Symbols
477@section Mapping Symbols
478
479The AArch64 ELF specification requires that special symbols be inserted
480into object files to mark certain features:
481
482@table @code
483
484@cindex @code{$x}
485@item $x
486At the start of a region of code containing AArch64 instructions.
487
488@cindex @code{$d}
489@item $d
490At the start of a region of data.
491
492@end table
This page took 0.434004 seconds and 4 git commands to generate.