[PATCH 5/57][Arm][GAS] Add support for MVE instructions: vmull{b,t}
[binutils-gdb.git] / gas / doc / c-ppc.texi
blob0bab76ca24c9c3b41c6c993d5ec0088e6ab0dfca
1 @c Copyright (C) 2001-2019 Free Software Foundation, Inc.
2 @c This is part of the GAS manual.
3 @c For copying conditions, see the file as.texinfo.
4 @c man end
5 @ifset GENERIC
6 @page
7 @node PPC-Dependent
8 @chapter PowerPC Dependent Features
9 @end ifset
10 @ifclear GENERIC
11 @node Machine Dependencies
12 @chapter PowerPC Dependent Features
13 @end ifclear
15 @cindex PowerPC support
16 @menu
17 * PowerPC-Opts::                Options
18 * PowerPC-Pseudo::              PowerPC Assembler Directives
19 * PowerPC-Syntax::              PowerPC Syntax
20 @end menu
22 @node PowerPC-Opts
23 @section Options
25 @cindex options for PowerPC
26 @cindex PowerPC options
27 @cindex architectures, PowerPC
28 @cindex PowerPC architectures
29 The PowerPC chip family includes several successive levels, using the same
30 core instruction set, but including a few additional instructions at
31 each level.  There are exceptions to this however.  For details on what
32 instructions each variant supports, please see the chip's architecture
33 reference manual.
35 The following table lists all available PowerPC options.
37 @c man begin OPTIONS
38 @table @gcctabopt
39 @item -a32
40 Generate ELF32 or XCOFF32.
42 @item -a64
43 Generate ELF64 or XCOFF64.
45 @item -K PIC
46 Set EF_PPC_RELOCATABLE_LIB in ELF flags.
48 @item -mpwrx | -mpwr2
49 Generate code for POWER/2 (RIOS2).
51 @item -mpwr
52 Generate code for POWER (RIOS1)
54 @item -m601
55 Generate code for PowerPC 601.
57 @item -mppc, -mppc32, -m603, -m604
58 Generate code for PowerPC 603/604.
60 @item -m403, -m405
61 Generate code for PowerPC 403/405.
63 @item -m440
64 Generate code for PowerPC 440.  BookE and some 405 instructions.
66 @item -m464
67 Generate code for PowerPC 464.
69 @item -m476
70 Generate code for PowerPC 476.
72 @item -m7400, -m7410, -m7450, -m7455
73 Generate code for PowerPC 7400/7410/7450/7455.
75 @item -m750cl, -mgekko, -mbroadway
76 Generate code for PowerPC 750CL/Gekko/Broadway.
78 @item -m821, -m850, -m860
79 Generate code for PowerPC 821/850/860.
81 @item -mppc64, -m620
82 Generate code for PowerPC 620/625/630.
84 @item -me500, -me500x2
85 Generate code for Motorola e500 core complex.
87 @item -me500mc
88 Generate code for Freescale e500mc core complex.
90 @item -me500mc64
91 Generate code for Freescale e500mc64 core complex.
93 @item -me5500
94 Generate code for Freescale e5500 core complex.
96 @item -me6500
97 Generate code for Freescale e6500 core complex.
99 @item -mspe
100 Generate code for Motorola SPE instructions.
102 @item -mspe2
103 Generate code for Freescale SPE2 instructions.
105 @item -mtitan
106 Generate code for AppliedMicro Titan core complex.
108 @item -mppc64bridge
109 Generate code for PowerPC 64, including bridge insns.
111 @item -mbooke
112 Generate code for 32-bit BookE.
114 @item -ma2
115 Generate code for A2 architecture.
117 @item -me300
118 Generate code for PowerPC e300 family.
120 @item -maltivec
121 Generate code for processors with AltiVec instructions.
123 @item -mvle
124 Generate code for Freescale PowerPC VLE instructions.
126 @item -mvsx
127 Generate code for processors with Vector-Scalar (VSX) instructions.
129 @item -mhtm
130 Generate code for processors with Hardware Transactional Memory instructions.
132 @item -mpower4, -mpwr4
133 Generate code for Power4 architecture.
135 @item -mpower5, -mpwr5, -mpwr5x
136 Generate code for Power5 architecture.
138 @item -mpower6, -mpwr6
139 Generate code for Power6 architecture.
141 @item -mpower7, -mpwr7
142 Generate code for Power7 architecture.
144 @item -mpower8, -mpwr8
145 Generate code for Power8 architecture.
147 @item -mpower9, -mpwr9
148 Generate code for Power9 architecture.
150 @item -mcell
151 @item -mcell
152 Generate code for Cell Broadband Engine architecture.
154 @item -mcom
155 Generate code Power/PowerPC common instructions.
157 @item -many
158 Generate code for any architecture (PWR/PWRX/PPC).
160 @item -mregnames
161 Allow symbolic names for registers.
163 @item -mno-regnames
164 Do not allow symbolic names for registers.
166 @item -mrelocatable
167 Support for GCC's -mrelocatable option.
169 @item -mrelocatable-lib
170 Support for GCC's -mrelocatable-lib option.
172 @item -memb
173 Set PPC_EMB bit in ELF flags.
175 @item -mlittle, -mlittle-endian, -le
176 Generate code for a little endian machine.
178 @item -mbig, -mbig-endian, -be
179 Generate code for a big endian machine.
181 @item -msolaris
182 Generate code for Solaris.
184 @item -mno-solaris
185 Do not generate code for Solaris.
187 @item -nops=@var{count}
188 If an alignment directive inserts more than @var{count} nops, put a
189 branch at the beginning to skip execution of the nops.
190 @end table
191 @c man end
194 @node PowerPC-Pseudo
195 @section PowerPC Assembler Directives
197 @cindex directives for PowerPC
198 @cindex PowerPC directives
199 A number of assembler directives are available for PowerPC.  The
200 following table is far from complete.
202 @table @code
203 @item .machine "string"
204 This directive allows you to change the machine for which code is
205 generated.  @code{"string"} may be any of the -m cpu selection options
206 (without the -m) enclosed in double quotes, @code{"push"}, or
207 @code{"pop"}.  @code{.machine "push"} saves the currently selected
208 cpu, which may be restored with @code{.machine "pop"}.
209 @end table
211 @node PowerPC-Syntax
212 @section PowerPC Syntax
213 @menu
214 * PowerPC-Chars::                Special Characters
215 @end menu
217 @node PowerPC-Chars
218 @subsection Special Characters
220 @cindex line comment character, PowerPC
221 @cindex PowerPC line comment character
222 The presence of a @samp{#} on a line indicates the start of a comment
223 that extends to the end of the current line.
225 If a @samp{#} appears as the first character of a line then the whole
226 line is treated as a comment, but in this case the line could also be
227 a logical line number directive (@pxref{Comments}) or a preprocessor
228 control command (@pxref{Preprocessing}).
230 If the assembler has been configured for the ppc-*-solaris* target
231 then the @samp{!} character also acts as a line comment character.
232 This can be disabled via the @option{-mno-solaris} command-line
233 option.
235 @cindex line separator, PowerPC
236 @cindex statement separator, PowerPC
237 @cindex PowerPC line separator
238 The @samp{;} character can be used to separate statements on the same
239 line.