b5e26fd0a8d884d85152344779c0136f554c32f7
[external/binutils.git] / gas / doc / c-ppc.texi
1 @c Copyright 2001, 2002, 2003, 2005, 2006
2 @c Free Software Foundation, Inc.
3 @c This is part of the GAS manual.
4 @c For copying conditions, see the file as.texinfo.
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
14
15 @cindex PowerPC support
16 @menu
17 * PowerPC-Opts::                Options
18 * PowerPC-Pseudo::              PowerPC Assembler Directives
19 @end menu
20
21 @node PowerPC-Opts
22 @section Options
23
24 @cindex options for PowerPC
25 @cindex PowerPC options
26 @cindex architectures, PowerPC
27 @cindex PowerPC architectures
28 The PowerPC chip family includes several successive levels, using the same
29 core instruction set, but including a few additional instructions at
30 each level.  There are exceptions to this however.  For details on what
31 instructions each variant supports, please see the chip's architecture
32 reference manual.
33
34 The following table lists all available PowerPC options.
35
36 @table @code
37 @item -mpwrx | -mpwr2
38 Generate code for POWER/2 (RIOS2).
39
40 @item -mpwr
41 Generate code for POWER (RIOS1)
42
43 @item -m601
44 Generate code for PowerPC 601.
45
46 @item -mppc, -mppc32, -m603, -m604
47 Generate code for PowerPC 603/604.
48
49 @item -m403, -m405
50 Generate code for PowerPC 403/405.
51
52 @item -m440
53 Generate code for PowerPC 440.  BookE and some 405 instructions.
54
55 @item -m7400, -m7410, -m7450, -m7455
56 Generate code for PowerPC 7400/7410/7450/7455.
57
58 @item -mppc64, -m620
59 Generate code for PowerPC 620/625/630.
60
61 @item -mppc64bridge
62 Generate code for PowerPC 64, including bridge insns.
63
64 @item -mbooke64
65 Generate code for 64-bit BookE.
66
67 @item -mbooke, mbooke32
68 Generate code for 32-bit BookE.
69
70 @item -me300
71 Generate code for PowerPC e300 family.
72
73 @item -maltivec
74 Generate code for processors with AltiVec instructions.
75
76 @item -mpower4
77 Generate code for Power4 architecture.
78
79 @item -mpower5
80 Generate code for Power5 architecture.
81
82 @item -mpower6
83 Generate code for Power6 architecture.
84
85 @item -mcom
86 Generate code Power/PowerPC common instructions.
87
88 @item -many
89 Generate code for any architecture (PWR/PWRX/PPC).
90
91 @item -mregnames
92 Allow symbolic names for registers.
93
94 @item -mno-regnames
95 Do not allow symbolic names for registers.
96
97 @item -mrelocatable
98 Support for GCC's -mrelocatable option.
99
100 @item -mrelocatable-lib
101 Support for GCC's -mrelocatable-lib option.
102
103 @item -memb
104 Set PPC_EMB bit in ELF flags.
105
106 @item -mlittle, -mlittle-endian
107 Generate code for a little endian machine.
108
109 @item -mbig, -mbig-endian
110 Generate code for a big endian machine.
111
112 @item -msolaris
113 Generate code for Solaris.
114
115 @item -mno-solaris
116 Do not generate code for Solaris.
117 @end table
118
119
120 @node PowerPC-Pseudo
121 @section PowerPC Assembler Directives
122
123 @cindex directives for PowerPC
124 @cindex PowerPC directives
125 A number of assembler directives are available for PowerPC.  The
126 following table is far from complete.
127
128 @table @code
129 @item .machine "string"
130 This directive allows you to change the machine for which code is
131 generated.  @code{"string"} may be any of the -m cpu selection options
132 (without the -m) enclosed in double quotes, @code{"push"}, or
133 @code{"pop"}.  @code{.machine "push"} saves the currently selected
134 cpu, which may be restored with @code{.machine "pop"}.
135 @end table