]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/doc/c-tilegx.texi
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gas / doc / c-tilegx.texi
CommitLineData
250d07de 1@c Copyright (C) 2011-2021 Free Software Foundation, Inc.
aa137e4d
NC
2@c This is part of the GAS manual.
3@c For copying conditions, see the file as.texinfo.
4@c man end
5
6@ifset GENERIC
7@page
8@node TILE-Gx-Dependent
9@chapter TILE-Gx Dependent Features
10@end ifset
11@ifclear GENERIC
12@node Machine Dependencies
13@chapter TILE-Gx Dependent Features
14@end ifclear
15
16@cindex TILE-Gx support
17@menu
18* TILE-Gx Options:: TILE-Gx Options
19* TILE-Gx Syntax:: TILE-Gx Syntax
20* TILE-Gx Directives:: TILE-Gx Directives
21@end menu
22
23@node TILE-Gx Options
24@section Options
25
26The following table lists all available TILE-Gx specific options:
27
28@c man begin OPTIONS
29@table @gcctabopt
30@cindex @samp{-m32} option, TILE-Gx
31@cindex @samp{-m64} option, TILE-Gx
32@item -m32 | -m64
33Select the word size, either 32 bits or 64 bits.
34
fb6cedde
WL
35@cindex @samp{-EB} option, TILE-Gx
36@cindex @samp{-EL} option, TILE-Gx
37@item -EB | -EL
38Select the endianness, either big-endian (-EB) or little-endian (-EL).
39
aa137e4d
NC
40@end table
41@c man end
42
43@node TILE-Gx Syntax
44@section Syntax
45@cindex TILE-Gx syntax
46@cindex syntax, TILE-Gx
47
48Block comments are delimited by @samp{/*} and @samp{*/}. End of line
49comments may be introduced by @samp{#}.
50
51Instructions consist of a leading opcode or macro name followed by
52whitespace and an optional comma-separated list of operands:
53
54@smallexample
55@var{opcode} [@var{operand}, @dots{}]
56@end smallexample
57
58Instructions must be separated by a newline or semicolon.
59
60There are two ways to write code: either write naked instructions,
61which the assembler is free to combine into VLIW bundles, or specify
62the VLIW bundles explicitly.
63
64Bundles are specified using curly braces:
65
66@smallexample
67@{ @var{add} r3,r4,r5 ; @var{add} r7,r8,r9 ; @var{lw} r10,r11 @}
68@end smallexample
69
70A bundle can span multiple lines. If you want to put multiple
71instructions on a line, whether in a bundle or not, you need to
72separate them with semicolons as in this example.
73
74A bundle may contain one or more instructions, up to the limit
75specified by the ISA (currently three). If fewer instructions are
76specified than the hardware supports in a bundle, the assembler
77inserts @code{fnop} instructions automatically.
78
79The assembler will prefer to preserve the ordering of instructions
80within the bundle, putting the first instruction in a lower-numbered
81pipeline than the next one, etc. This fact, combined with the
82optional use of explicit @code{fnop} or @code{nop} instructions,
83allows precise control over which pipeline executes each instruction.
84
85If the instructions cannot be bundled in the listed order, the
86assembler will automatically try to find a valid pipeline
87assignment. If there is no way to bundle the instructions together,
88the assembler reports an error.
89
90The assembler does not yet auto-bundle (automatically combine multiple
91instructions into one bundle), but it reserves the right to do so in
92the future. If you want to force an instruction to run by itself, put
93it in a bundle explicitly with curly braces and use @code{nop}
94instructions (not @code{fnop}) to fill the remaining pipeline slots in
95that bundle.
96
97@menu
98* TILE-Gx Opcodes:: Opcode Naming Conventions.
99* TILE-Gx Registers:: Register Naming.
100* TILE-Gx Modifiers:: Symbolic Operand Modifiers.
101@end menu
102
103@node TILE-Gx Opcodes
104@subsection Opcode Names
105@cindex TILE-Gx opcode names
106@cindex opcode names, TILE-Gx
107
108For a complete list of opcodes and descriptions of their semantics,
109see @cite{TILE-Gx Instruction Set Architecture}, available upon
110request at www.tilera.com.
111
112@node TILE-Gx Registers
113@subsection Register Names
114@cindex TILE-Gx register names
115@cindex register names, TILE-Gx
116
117General-purpose registers are represented by predefined symbols of the
118form @samp{r@var{N}}, where @var{N} represents a number between
119@code{0} and @code{63}. However, the following registers have
120canonical names that must be used instead:
121
122@table @code
123@item r54
124sp
125
126@item r55
127lr
128
129@item r56
130sn
131
132@item r57
133idn0
134
135@item r58
136idn1
137
138@item r59
139udn0
140
141@item r60
142udn1
143
144@item r61
145udn2
146
147@item r62
148udn3
149
150@item r63
151zero
152
153@end table
154
155The assembler will emit a warning if a numeric name is used instead of
156the non-numeric name. The @code{.no_require_canonical_reg_names}
157assembler pseudo-op turns off this
158warning. @code{.require_canonical_reg_names} turns it back on.
159
160@node TILE-Gx Modifiers
161@subsection Symbolic Operand Modifiers
162@cindex TILE-Gx modifiers
163@cindex symbol modifiers, TILE-Gx
164
165The assembler supports several modifiers when using symbol addresses
166in TILE-Gx instruction operands. The general syntax is the following:
167
168@smallexample
169modifier(symbol)
170@end smallexample
171
172The following modifiers are supported:
173
174@table @code
175
176@item hw0
177
178This modifier is used to load bits 0-15 of the symbol's address.
179
180@item hw1
181
182This modifier is used to load bits 16-31 of the symbol's address.
183
184@item hw2
185
186This modifier is used to load bits 32-47 of the symbol's address.
187
188@item hw3
189
190This modifier is used to load bits 48-63 of the symbol's address.
191
192@item hw0_last
193
194This modifier yields the same value as @code{hw0}, but it also checks
195that the value does not overflow.
196
197@item hw1_last
198
199This modifier yields the same value as @code{hw1}, but it also checks
200that the value does not overflow.
201
202@item hw2_last
203
204This modifier yields the same value as @code{hw2}, but it also checks
205that the value does not overflow.
206
207A 48-bit symbolic value is constructed by using the following idiom:
208
209@smallexample
210moveli r0, hw2_last(sym)
211shl16insli r0, r0, hw1(sym)
212shl16insli r0, r0, hw0(sym)
213@end smallexample
214
215@item hw0_got
216
217This modifier is used to load bits 0-15 of the symbol's offset in the
218GOT entry corresponding to the symbol.
219
aa137e4d
NC
220@item hw0_last_got
221
222This modifier yields the same value as @code{hw0_got}, but it also
223checks that the value does not overflow.
224
225@item hw1_last_got
226
6f7be959
WL
227This modifier is used to load bits 16-31 of the symbol's offset in the
228GOT entry corresponding to the symbol, and it also checks that the
229value does not overflow.
aa137e4d
NC
230
231@item plt
232
233This modifier is used for function symbols. It causes a
234@emph{procedure linkage table}, an array of code stubs, to be created
235at the time the shared object is created or linked against, together
236with a global offset table entry. The value is a pc-relative offset
237to the corresponding stub code in the procedure linkage table. This
238arrangement causes the run-time symbol resolver to be called to look
239up and set the value of the symbol the first time the function is
240called (at latest; depending environment variables). It is only safe
241to leave the symbol unresolved this way if all references are function
242calls.
243
e5b95258
WL
244@item hw0_plt
245
246This modifier is used to load bits 0-15 of the pc-relative address of
247a plt entry.
248
249@item hw1_plt
250
251This modifier is used to load bits 16-31 of the pc-relative address of
252a plt entry.
253
254@item hw1_last_plt
255
256This modifier yields the same value as @code{hw1_plt}, but it also
257checks that the value does not overflow.
258
259@item hw2_last_plt
260
261This modifier is used to load bits 32-47 of the pc-relative address of
262a plt entry, and it also checks that the value does not overflow.
263
aa137e4d
NC
264@item hw0_tls_gd
265
266This modifier is used to load bits 0-15 of the offset of the GOT entry
267of the symbol's TLS descriptor, to be used for general-dynamic TLS
268accesses.
269
aa137e4d
NC
270@item hw0_last_tls_gd
271
272This modifier yields the same value as @code{hw0_tls_gd}, but it also
273checks that the value does not overflow.
274
275@item hw1_last_tls_gd
276
6f7be959
WL
277This modifier is used to load bits 16-31 of the offset of the GOT
278entry of the symbol's TLS descriptor, to be used for general-dynamic
279TLS accesses. It also checks that the value does not overflow.
aa137e4d
NC
280
281@item hw0_tls_ie
282
283This modifier is used to load bits 0-15 of the offset of the GOT entry
284containing the offset of the symbol's address from the TCB, to be used
285for initial-exec TLS accesses.
286
6f7be959
WL
287@item hw0_last_tls_ie
288
289This modifier yields the same value as @code{hw0_tls_ie}, but it also
290checks that the value does not overflow.
291
292@item hw1_last_tls_ie
aa137e4d
NC
293
294This modifier is used to load bits 16-31 of the offset of the GOT
295entry containing the offset of the symbol's address from the TCB, to
6f7be959
WL
296be used for initial-exec TLS accesses. It also checks that the value
297does not overflow.
aa137e4d 298
6f7be959 299@item hw0_tls_le
aa137e4d 300
6f7be959
WL
301This modifier is used to load bits 0-15 of the offset of the symbol's
302address from the TCB, to be used for local-exec TLS accesses.
aa137e4d 303
6f7be959 304@item hw0_last_tls_le
aa137e4d 305
6f7be959
WL
306This modifier yields the same value as @code{hw0_tls_le}, but it also
307checks that the value does not overflow.
aa137e4d 308
6f7be959 309@item hw1_last_tls_le
aa137e4d 310
6f7be959
WL
311This modifier is used to load bits 16-31 of the offset of the symbol's
312address from the TCB, to be used for local-exec TLS accesses. It
313also checks that the value does not overflow.
aa137e4d 314
6f7be959 315@item tls_gd_call
aa137e4d 316
33eaf5de 317This modifier is used to tag an instruction as the ``call'' part of a
6f7be959 318calling sequence for a TLS GD reference of its operand.
aa137e4d 319
6f7be959 320@item tls_gd_add
aa137e4d 321
6f7be959
WL
322This modifier is used to tag an instruction as the ``add'' part of a
323calling sequence for a TLS GD reference of its operand.
324
325@item tls_ie_load
326
327This modifier is used to tag an instruction as the ``load'' part of a
328calling sequence for a TLS IE reference of its operand.
aa137e4d
NC
329
330@end table
331
332@node TILE-Gx Directives
333@section TILE-Gx Directives
334@cindex machine directives, TILE-Gx
335@cindex TILE-Gx machine directives
336
337@table @code
338
339@cindex @code{.align} directive, TILE-Gx
340@item .align @var{expression} [, @var{expression}]
341This is the generic @var{.align} directive. The first argument is the
342requested alignment in bytes.
343
344@cindex @code{.allow_suspicious_bundles} directive, TILE-Gx
345@item .allow_suspicious_bundles
346Turns on error checking for combinations of instructions in a bundle
347that probably indicate a programming error. This is on by default.
348
349@item .no_allow_suspicious_bundles
350Turns off error checking for combinations of instructions in a bundle
351that probably indicate a programming error.
352
353@cindex @code{.require_canonical_reg_names} directive, TILE-Gx
354@item .require_canonical_reg_names
355Require that canonical register names be used, and emit a warning if
356the numeric names are used. This is on by default.
357
358@item .no_require_canonical_reg_names
359Permit the use of numeric names for registers that have canonical
360names.
361
362@end table