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.
9 @node TILE-Gx-Dependent
10 @chapter TILE-Gx Dependent Features
13 @node Machine Dependencies
14 @chapter TILE-Gx Dependent Features
17 @cindex TILE-Gx support
19 * TILE-Gx Options:: TILE-Gx Options
20 * TILE-Gx Syntax:: TILE-Gx Syntax
21 * TILE-Gx Directives:: TILE-Gx Directives
27 The following table lists all available TILE-Gx specific options:
31 @cindex @samp{-m32} option, TILE-Gx
32 @cindex @samp{-m64} option, TILE-Gx
34 Select the word size, either 32 bits or 64 bits.
41 @cindex TILE-Gx syntax
42 @cindex syntax, TILE-Gx
44 Block comments are delimited by @samp{/*} and @samp{*/}. End of line
45 comments may be introduced by @samp{#}.
47 Instructions consist of a leading opcode or macro name followed by
48 whitespace and an optional comma-separated list of operands:
51 @var{opcode} [@var{operand}, @dots{}]
54 Instructions must be separated by a newline or semicolon.
56 There are two ways to write code: either write naked instructions,
57 which the assembler is free to combine into VLIW bundles, or specify
58 the VLIW bundles explicitly.
60 Bundles are specified using curly braces:
63 @{ @var{add} r3,r4,r5 ; @var{add} r7,r8,r9 ; @var{lw} r10,r11 @}
66 A bundle can span multiple lines. If you want to put multiple
67 instructions on a line, whether in a bundle or not, you need to
68 separate them with semicolons as in this example.
70 A bundle may contain one or more instructions, up to the limit
71 specified by the ISA (currently three). If fewer instructions are
72 specified than the hardware supports in a bundle, the assembler
73 inserts @code{fnop} instructions automatically.
75 The assembler will prefer to preserve the ordering of instructions
76 within the bundle, putting the first instruction in a lower-numbered
77 pipeline than the next one, etc. This fact, combined with the
78 optional use of explicit @code{fnop} or @code{nop} instructions,
79 allows precise control over which pipeline executes each instruction.
81 If the instructions cannot be bundled in the listed order, the
82 assembler will automatically try to find a valid pipeline
83 assignment. If there is no way to bundle the instructions together,
84 the assembler reports an error.
86 The assembler does not yet auto-bundle (automatically combine multiple
87 instructions into one bundle), but it reserves the right to do so in
88 the future. If you want to force an instruction to run by itself, put
89 it in a bundle explicitly with curly braces and use @code{nop}
90 instructions (not @code{fnop}) to fill the remaining pipeline slots in
94 * TILE-Gx Opcodes:: Opcode Naming Conventions.
95 * TILE-Gx Registers:: Register Naming.
96 * TILE-Gx Modifiers:: Symbolic Operand Modifiers.
100 @subsection Opcode Names
101 @cindex TILE-Gx opcode names
102 @cindex opcode names, TILE-Gx
104 For a complete list of opcodes and descriptions of their semantics,
105 see @cite{TILE-Gx Instruction Set Architecture}, available upon
106 request at www.tilera.com.
108 @node TILE-Gx Registers
109 @subsection Register Names
110 @cindex TILE-Gx register names
111 @cindex register names, TILE-Gx
113 General-purpose registers are represented by predefined symbols of the
114 form @samp{r@var{N}}, where @var{N} represents a number between
115 @code{0} and @code{63}. However, the following registers have
116 canonical names that must be used instead:
151 The assembler will emit a warning if a numeric name is used instead of
152 the non-numeric name. The @code{.no_require_canonical_reg_names}
153 assembler pseudo-op turns off this
154 warning. @code{.require_canonical_reg_names} turns it back on.
156 @node TILE-Gx Modifiers
157 @subsection Symbolic Operand Modifiers
158 @cindex TILE-Gx modifiers
159 @cindex symbol modifiers, TILE-Gx
161 The assembler supports several modifiers when using symbol addresses
162 in TILE-Gx instruction operands. The general syntax is the following:
168 The following modifiers are supported:
174 This modifier is used to load bits 0-15 of the symbol's address.
178 This modifier is used to load bits 16-31 of the symbol's address.
182 This modifier is used to load bits 32-47 of the symbol's address.
186 This modifier is used to load bits 48-63 of the symbol's address.
190 This modifier yields the same value as @code{hw0}, but it also checks
191 that the value does not overflow.
195 This modifier yields the same value as @code{hw1}, but it also checks
196 that the value does not overflow.
200 This modifier yields the same value as @code{hw2}, but it also checks
201 that the value does not overflow.
203 A 48-bit symbolic value is constructed by using the following idiom:
206 moveli r0, hw2_last(sym)
207 shl16insli r0, r0, hw1(sym)
208 shl16insli r0, r0, hw0(sym)
213 This modifier is used to load bits 0-15 of the symbol's offset in the
214 GOT entry corresponding to the symbol.
218 This modifier is used to load bits 16-31 of the symbol's offset in the
219 GOT entry corresponding to the symbol.
223 This modifier is used to load bits 32-47 of the symbol's offset in the
224 GOT entry corresponding to the symbol.
228 This modifier is used to load bits 48-63 of the symbol's offset in the
229 GOT entry corresponding to the symbol.
233 This modifier yields the same value as @code{hw0_got}, but it also
234 checks that the value does not overflow.
238 This modifier yields the same value as @code{hw1_got}, but it also
239 checks that the value does not overflow.
243 This modifier yields the same value as @code{hw2_got}, but it also
244 checks that the value does not overflow.
248 This modifier is used for function symbols. It causes a
249 @emph{procedure linkage table}, an array of code stubs, to be created
250 at the time the shared object is created or linked against, together
251 with a global offset table entry. The value is a pc-relative offset
252 to the corresponding stub code in the procedure linkage table. This
253 arrangement causes the run-time symbol resolver to be called to look
254 up and set the value of the symbol the first time the function is
255 called (at latest; depending environment variables). It is only safe
256 to leave the symbol unresolved this way if all references are function
261 This modifier is used to load bits 0-15 of the offset of the GOT entry
262 of the symbol's TLS descriptor, to be used for general-dynamic TLS
267 This modifier is used to load bits 16-31 of the offset of the GOT
268 entry of the symbol's TLS descriptor, to be used for general-dynamic
273 This modifier is used to load bits 32-47 of the offset of the GOT
274 entry of the symbol's TLS descriptor, to be used for general-dynamic
279 This modifier is used to load bits 48-63 of the offset of the GOT
280 entry of the symbol's TLS descriptor, to be used for general-dynamic
283 @item hw0_last_tls_gd
285 This modifier yields the same value as @code{hw0_tls_gd}, but it also
286 checks that the value does not overflow.
288 @item hw1_last_tls_gd
290 This modifier yields the same value as @code{hw1_tls_gd}, but it also
291 checks that the value does not overflow.
293 @item hw2_last_tls_gd
295 This modifier yields the same value as @code{hw2_tls_gd}, but it also
296 checks that the value does not overflow.
300 This modifier is used to load bits 0-15 of the offset of the GOT entry
301 containing the offset of the symbol's address from the TCB, to be used
302 for initial-exec TLS accesses.
306 This modifier is used to load bits 16-31 of the offset of the GOT
307 entry containing the offset of the symbol's address from the TCB, to
308 be used for initial-exec TLS accesses.
312 This modifier is used to load bits 32-47 of the offset of the GOT entry
313 containing the offset of the symbol's address from the TCB, to be used
314 for initial-exec TLS accesses.
318 This modifier is used to load bits 48-63 of the offset of the GOT
319 entry containing the offset of the symbol's address from the TCB, to
320 be used for initial-exec TLS accesses.
322 @item hw0_last_tls_ie
324 This modifier yields the same value as @code{hw0_tls_ie}, but it also
325 checks that the value does not overflow.
327 @item hw1_last_tls_ie
329 This modifier yields the same value as @code{hw1_tls_ie}, but it also
330 checks that the value does not overflow.
332 @item hw2_last_tls_ie
334 This modifier yields the same value as @code{hw2_tls_ie}, but it also
335 checks that the value does not overflow.
339 @node TILE-Gx Directives
340 @section TILE-Gx Directives
341 @cindex machine directives, TILE-Gx
342 @cindex TILE-Gx machine directives
346 @cindex @code{.align} directive, TILE-Gx
347 @item .align @var{expression} [, @var{expression}]
348 This is the generic @var{.align} directive. The first argument is the
349 requested alignment in bytes.
351 @cindex @code{.allow_suspicious_bundles} directive, TILE-Gx
352 @item .allow_suspicious_bundles
353 Turns on error checking for combinations of instructions in a bundle
354 that probably indicate a programming error. This is on by default.
356 @item .no_allow_suspicious_bundles
357 Turns off error checking for combinations of instructions in a bundle
358 that probably indicate a programming error.
360 @cindex @code{.require_canonical_reg_names} directive, TILE-Gx
361 @item .require_canonical_reg_names
362 Require that canonical register names be used, and emit a warning if
363 the numeric names are used. This is on by default.
365 @item .no_require_canonical_reg_names
366 Permit the use of numeric names for registers that have canonical