c-common.c (c_common_attributes): Add gnu_inline attribyte.
[gcc.git] / gcc / doc / extend.texi
1 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1996, 1998, 1999, 2000,
2 @c 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3
4 @c This is part of the GCC manual.
5 @c For copying conditions, see the file gcc.texi.
6
7 @node C Extensions
8 @chapter Extensions to the C Language Family
9 @cindex extensions, C language
10 @cindex C language extensions
11
12 @opindex pedantic
13 GNU C provides several language features not found in ISO standard C@.
14 (The @option{-pedantic} option directs GCC to print a warning message if
15 any of these features is used.) To test for the availability of these
16 features in conditional compilation, check for a predefined macro
17 @code{__GNUC__}, which is always defined under GCC@.
18
19 These extensions are available in C and Objective-C@. Most of them are
20 also available in C++. @xref{C++ Extensions,,Extensions to the
21 C++ Language}, for extensions that apply @emph{only} to C++.
22
23 Some features that are in ISO C99 but not C89 or C++ are also, as
24 extensions, accepted by GCC in C89 mode and in C++.
25
26 @menu
27 * Statement Exprs:: Putting statements and declarations inside expressions.
28 * Local Labels:: Labels local to a block.
29 * Labels as Values:: Getting pointers to labels, and computed gotos.
30 * Nested Functions:: As in Algol and Pascal, lexical scoping of functions.
31 * Constructing Calls:: Dispatching a call to another function.
32 * Typeof:: @code{typeof}: referring to the type of an expression.
33 * Conditionals:: Omitting the middle operand of a @samp{?:} expression.
34 * Long Long:: Double-word integers---@code{long long int}.
35 * Complex:: Data types for complex numbers.
36 * Decimal Float:: Decimal Floating Types.
37 * Hex Floats:: Hexadecimal floating-point constants.
38 * Zero Length:: Zero-length arrays.
39 * Variable Length:: Arrays whose length is computed at run time.
40 * Empty Structures:: Structures with no members.
41 * Variadic Macros:: Macros with a variable number of arguments.
42 * Escaped Newlines:: Slightly looser rules for escaped newlines.
43 * Subscripting:: Any array can be subscripted, even if not an lvalue.
44 * Pointer Arith:: Arithmetic on @code{void}-pointers and function pointers.
45 * Initializers:: Non-constant initializers.
46 * Compound Literals:: Compound literals give structures, unions
47 or arrays as values.
48 * Designated Inits:: Labeling elements of initializers.
49 * Cast to Union:: Casting to union type from any member of the union.
50 * Case Ranges:: `case 1 ... 9' and such.
51 * Mixed Declarations:: Mixing declarations and code.
52 * Function Attributes:: Declaring that functions have no side effects,
53 or that they can never return.
54 * Attribute Syntax:: Formal syntax for attributes.
55 * Function Prototypes:: Prototype declarations and old-style definitions.
56 * C++ Comments:: C++ comments are recognized.
57 * Dollar Signs:: Dollar sign is allowed in identifiers.
58 * Character Escapes:: @samp{\e} stands for the character @key{ESC}.
59 * Variable Attributes:: Specifying attributes of variables.
60 * Type Attributes:: Specifying attributes of types.
61 * Alignment:: Inquiring about the alignment of a type or variable.
62 * Inline:: Defining inline functions (as fast as macros).
63 * Extended Asm:: Assembler instructions with C expressions as operands.
64 (With them you can define ``built-in'' functions.)
65 * Constraints:: Constraints for asm operands
66 * Asm Labels:: Specifying the assembler name to use for a C symbol.
67 * Explicit Reg Vars:: Defining variables residing in specified registers.
68 * Alternate Keywords:: @code{__const__}, @code{__asm__}, etc., for header files.
69 * Incomplete Enums:: @code{enum foo;}, with details to follow.
70 * Function Names:: Printable strings which are the name of the current
71 function.
72 * Return Address:: Getting the return or frame address of a function.
73 * Vector Extensions:: Using vector instructions through built-in functions.
74 * Offsetof:: Special syntax for implementing @code{offsetof}.
75 * Atomic Builtins:: Built-in functions for atomic memory access.
76 * Object Size Checking:: Built-in functions for limited buffer overflow
77 checking.
78 * Other Builtins:: Other built-in functions.
79 * Target Builtins:: Built-in functions specific to particular targets.
80 * Target Format Checks:: Format checks specific to particular targets.
81 * Pragmas:: Pragmas accepted by GCC.
82 * Unnamed Fields:: Unnamed struct/union fields within structs/unions.
83 * Thread-Local:: Per-thread variables.
84 @end menu
85
86 @node Statement Exprs
87 @section Statements and Declarations in Expressions
88 @cindex statements inside expressions
89 @cindex declarations inside expressions
90 @cindex expressions containing statements
91 @cindex macros, statements in expressions
92
93 @c the above section title wrapped and causes an underfull hbox.. i
94 @c changed it from "within" to "in". --mew 4feb93
95 A compound statement enclosed in parentheses may appear as an expression
96 in GNU C@. This allows you to use loops, switches, and local variables
97 within an expression.
98
99 Recall that a compound statement is a sequence of statements surrounded
100 by braces; in this construct, parentheses go around the braces. For
101 example:
102
103 @smallexample
104 (@{ int y = foo (); int z;
105 if (y > 0) z = y;
106 else z = - y;
107 z; @})
108 @end smallexample
109
110 @noindent
111 is a valid (though slightly more complex than necessary) expression
112 for the absolute value of @code{foo ()}.
113
114 The last thing in the compound statement should be an expression
115 followed by a semicolon; the value of this subexpression serves as the
116 value of the entire construct. (If you use some other kind of statement
117 last within the braces, the construct has type @code{void}, and thus
118 effectively no value.)
119
120 This feature is especially useful in making macro definitions ``safe'' (so
121 that they evaluate each operand exactly once). For example, the
122 ``maximum'' function is commonly defined as a macro in standard C as
123 follows:
124
125 @smallexample
126 #define max(a,b) ((a) > (b) ? (a) : (b))
127 @end smallexample
128
129 @noindent
130 @cindex side effects, macro argument
131 But this definition computes either @var{a} or @var{b} twice, with bad
132 results if the operand has side effects. In GNU C, if you know the
133 type of the operands (here taken as @code{int}), you can define
134 the macro safely as follows:
135
136 @smallexample
137 #define maxint(a,b) \
138 (@{int _a = (a), _b = (b); _a > _b ? _a : _b; @})
139 @end smallexample
140
141 Embedded statements are not allowed in constant expressions, such as
142 the value of an enumeration constant, the width of a bit-field, or
143 the initial value of a static variable.
144
145 If you don't know the type of the operand, you can still do this, but you
146 must use @code{typeof} (@pxref{Typeof}).
147
148 In G++, the result value of a statement expression undergoes array and
149 function pointer decay, and is returned by value to the enclosing
150 expression. For instance, if @code{A} is a class, then
151
152 @smallexample
153 A a;
154
155 (@{a;@}).Foo ()
156 @end smallexample
157
158 @noindent
159 will construct a temporary @code{A} object to hold the result of the
160 statement expression, and that will be used to invoke @code{Foo}.
161 Therefore the @code{this} pointer observed by @code{Foo} will not be the
162 address of @code{a}.
163
164 Any temporaries created within a statement within a statement expression
165 will be destroyed at the statement's end. This makes statement
166 expressions inside macros slightly different from function calls. In
167 the latter case temporaries introduced during argument evaluation will
168 be destroyed at the end of the statement that includes the function
169 call. In the statement expression case they will be destroyed during
170 the statement expression. For instance,
171
172 @smallexample
173 #define macro(a) (@{__typeof__(a) b = (a); b + 3; @})
174 template<typename T> T function(T a) @{ T b = a; return b + 3; @}
175
176 void foo ()
177 @{
178 macro (X ());
179 function (X ());
180 @}
181 @end smallexample
182
183 @noindent
184 will have different places where temporaries are destroyed. For the
185 @code{macro} case, the temporary @code{X} will be destroyed just after
186 the initialization of @code{b}. In the @code{function} case that
187 temporary will be destroyed when the function returns.
188
189 These considerations mean that it is probably a bad idea to use
190 statement-expressions of this form in header files that are designed to
191 work with C++. (Note that some versions of the GNU C Library contained
192 header files using statement-expression that lead to precisely this
193 bug.)
194
195 Jumping into a statement expression with @code{goto} or using a
196 @code{switch} statement outside the statement expression with a
197 @code{case} or @code{default} label inside the statement expression is
198 not permitted. Jumping into a statement expression with a computed
199 @code{goto} (@pxref{Labels as Values}) yields undefined behavior.
200 Jumping out of a statement expression is permitted, but if the
201 statement expression is part of a larger expression then it is
202 unspecified which other subexpressions of that expression have been
203 evaluated except where the language definition requires certain
204 subexpressions to be evaluated before or after the statement
205 expression. In any case, as with a function call the evaluation of a
206 statement expression is not interleaved with the evaluation of other
207 parts of the containing expression. For example,
208
209 @smallexample
210 foo (), ((@{ bar1 (); goto a; 0; @}) + bar2 ()), baz();
211 @end smallexample
212
213 @noindent
214 will call @code{foo} and @code{bar1} and will not call @code{baz} but
215 may or may not call @code{bar2}. If @code{bar2} is called, it will be
216 called after @code{foo} and before @code{bar1}
217
218 @node Local Labels
219 @section Locally Declared Labels
220 @cindex local labels
221 @cindex macros, local labels
222
223 GCC allows you to declare @dfn{local labels} in any nested block
224 scope. A local label is just like an ordinary label, but you can
225 only reference it (with a @code{goto} statement, or by taking its
226 address) within the block in which it was declared.
227
228 A local label declaration looks like this:
229
230 @smallexample
231 __label__ @var{label};
232 @end smallexample
233
234 @noindent
235 or
236
237 @smallexample
238 __label__ @var{label1}, @var{label2}, /* @r{@dots{}} */;
239 @end smallexample
240
241 Local label declarations must come at the beginning of the block,
242 before any ordinary declarations or statements.
243
244 The label declaration defines the label @emph{name}, but does not define
245 the label itself. You must do this in the usual way, with
246 @code{@var{label}:}, within the statements of the statement expression.
247
248 The local label feature is useful for complex macros. If a macro
249 contains nested loops, a @code{goto} can be useful for breaking out of
250 them. However, an ordinary label whose scope is the whole function
251 cannot be used: if the macro can be expanded several times in one
252 function, the label will be multiply defined in that function. A
253 local label avoids this problem. For example:
254
255 @smallexample
256 #define SEARCH(value, array, target) \
257 do @{ \
258 __label__ found; \
259 typeof (target) _SEARCH_target = (target); \
260 typeof (*(array)) *_SEARCH_array = (array); \
261 int i, j; \
262 int value; \
263 for (i = 0; i < max; i++) \
264 for (j = 0; j < max; j++) \
265 if (_SEARCH_array[i][j] == _SEARCH_target) \
266 @{ (value) = i; goto found; @} \
267 (value) = -1; \
268 found:; \
269 @} while (0)
270 @end smallexample
271
272 This could also be written using a statement-expression:
273
274 @smallexample
275 #define SEARCH(array, target) \
276 (@{ \
277 __label__ found; \
278 typeof (target) _SEARCH_target = (target); \
279 typeof (*(array)) *_SEARCH_array = (array); \
280 int i, j; \
281 int value; \
282 for (i = 0; i < max; i++) \
283 for (j = 0; j < max; j++) \
284 if (_SEARCH_array[i][j] == _SEARCH_target) \
285 @{ value = i; goto found; @} \
286 value = -1; \
287 found: \
288 value; \
289 @})
290 @end smallexample
291
292 Local label declarations also make the labels they declare visible to
293 nested functions, if there are any. @xref{Nested Functions}, for details.
294
295 @node Labels as Values
296 @section Labels as Values
297 @cindex labels as values
298 @cindex computed gotos
299 @cindex goto with computed label
300 @cindex address of a label
301
302 You can get the address of a label defined in the current function
303 (or a containing function) with the unary operator @samp{&&}. The
304 value has type @code{void *}. This value is a constant and can be used
305 wherever a constant of that type is valid. For example:
306
307 @smallexample
308 void *ptr;
309 /* @r{@dots{}} */
310 ptr = &&foo;
311 @end smallexample
312
313 To use these values, you need to be able to jump to one. This is done
314 with the computed goto statement@footnote{The analogous feature in
315 Fortran is called an assigned goto, but that name seems inappropriate in
316 C, where one can do more than simply store label addresses in label
317 variables.}, @code{goto *@var{exp};}. For example,
318
319 @smallexample
320 goto *ptr;
321 @end smallexample
322
323 @noindent
324 Any expression of type @code{void *} is allowed.
325
326 One way of using these constants is in initializing a static array that
327 will serve as a jump table:
328
329 @smallexample
330 static void *array[] = @{ &&foo, &&bar, &&hack @};
331 @end smallexample
332
333 Then you can select a label with indexing, like this:
334
335 @smallexample
336 goto *array[i];
337 @end smallexample
338
339 @noindent
340 Note that this does not check whether the subscript is in bounds---array
341 indexing in C never does that.
342
343 Such an array of label values serves a purpose much like that of the
344 @code{switch} statement. The @code{switch} statement is cleaner, so
345 use that rather than an array unless the problem does not fit a
346 @code{switch} statement very well.
347
348 Another use of label values is in an interpreter for threaded code.
349 The labels within the interpreter function can be stored in the
350 threaded code for super-fast dispatching.
351
352 You may not use this mechanism to jump to code in a different function.
353 If you do that, totally unpredictable things will happen. The best way to
354 avoid this is to store the label address only in automatic variables and
355 never pass it as an argument.
356
357 An alternate way to write the above example is
358
359 @smallexample
360 static const int array[] = @{ &&foo - &&foo, &&bar - &&foo,
361 &&hack - &&foo @};
362 goto *(&&foo + array[i]);
363 @end smallexample
364
365 @noindent
366 This is more friendly to code living in shared libraries, as it reduces
367 the number of dynamic relocations that are needed, and by consequence,
368 allows the data to be read-only.
369
370 @node Nested Functions
371 @section Nested Functions
372 @cindex nested functions
373 @cindex downward funargs
374 @cindex thunks
375
376 A @dfn{nested function} is a function defined inside another function.
377 (Nested functions are not supported for GNU C++.) The nested function's
378 name is local to the block where it is defined. For example, here we
379 define a nested function named @code{square}, and call it twice:
380
381 @smallexample
382 @group
383 foo (double a, double b)
384 @{
385 double square (double z) @{ return z * z; @}
386
387 return square (a) + square (b);
388 @}
389 @end group
390 @end smallexample
391
392 The nested function can access all the variables of the containing
393 function that are visible at the point of its definition. This is
394 called @dfn{lexical scoping}. For example, here we show a nested
395 function which uses an inherited variable named @code{offset}:
396
397 @smallexample
398 @group
399 bar (int *array, int offset, int size)
400 @{
401 int access (int *array, int index)
402 @{ return array[index + offset]; @}
403 int i;
404 /* @r{@dots{}} */
405 for (i = 0; i < size; i++)
406 /* @r{@dots{}} */ access (array, i) /* @r{@dots{}} */
407 @}
408 @end group
409 @end smallexample
410
411 Nested function definitions are permitted within functions in the places
412 where variable definitions are allowed; that is, in any block, mixed
413 with the other declarations and statements in the block.
414
415 It is possible to call the nested function from outside the scope of its
416 name by storing its address or passing the address to another function:
417
418 @smallexample
419 hack (int *array, int size)
420 @{
421 void store (int index, int value)
422 @{ array[index] = value; @}
423
424 intermediate (store, size);
425 @}
426 @end smallexample
427
428 Here, the function @code{intermediate} receives the address of
429 @code{store} as an argument. If @code{intermediate} calls @code{store},
430 the arguments given to @code{store} are used to store into @code{array}.
431 But this technique works only so long as the containing function
432 (@code{hack}, in this example) does not exit.
433
434 If you try to call the nested function through its address after the
435 containing function has exited, all hell will break loose. If you try
436 to call it after a containing scope level has exited, and if it refers
437 to some of the variables that are no longer in scope, you may be lucky,
438 but it's not wise to take the risk. If, however, the nested function
439 does not refer to anything that has gone out of scope, you should be
440 safe.
441
442 GCC implements taking the address of a nested function using a technique
443 called @dfn{trampolines}. A paper describing them is available as
444
445 @noindent
446 @uref{http://people.debian.org/~aaronl/Usenix88-lexic.pdf}.
447
448 A nested function can jump to a label inherited from a containing
449 function, provided the label was explicitly declared in the containing
450 function (@pxref{Local Labels}). Such a jump returns instantly to the
451 containing function, exiting the nested function which did the
452 @code{goto} and any intermediate functions as well. Here is an example:
453
454 @smallexample
455 @group
456 bar (int *array, int offset, int size)
457 @{
458 __label__ failure;
459 int access (int *array, int index)
460 @{
461 if (index > size)
462 goto failure;
463 return array[index + offset];
464 @}
465 int i;
466 /* @r{@dots{}} */
467 for (i = 0; i < size; i++)
468 /* @r{@dots{}} */ access (array, i) /* @r{@dots{}} */
469 /* @r{@dots{}} */
470 return 0;
471
472 /* @r{Control comes here from @code{access}
473 if it detects an error.} */
474 failure:
475 return -1;
476 @}
477 @end group
478 @end smallexample
479
480 A nested function always has no linkage. Declaring one with
481 @code{extern} or @code{static} is erroneous. If you need to declare the nested function
482 before its definition, use @code{auto} (which is otherwise meaningless
483 for function declarations).
484
485 @smallexample
486 bar (int *array, int offset, int size)
487 @{
488 __label__ failure;
489 auto int access (int *, int);
490 /* @r{@dots{}} */
491 int access (int *array, int index)
492 @{
493 if (index > size)
494 goto failure;
495 return array[index + offset];
496 @}
497 /* @r{@dots{}} */
498 @}
499 @end smallexample
500
501 @node Constructing Calls
502 @section Constructing Function Calls
503 @cindex constructing calls
504 @cindex forwarding calls
505
506 Using the built-in functions described below, you can record
507 the arguments a function received, and call another function
508 with the same arguments, without knowing the number or types
509 of the arguments.
510
511 You can also record the return value of that function call,
512 and later return that value, without knowing what data type
513 the function tried to return (as long as your caller expects
514 that data type).
515
516 However, these built-in functions may interact badly with some
517 sophisticated features or other extensions of the language. It
518 is, therefore, not recommended to use them outside very simple
519 functions acting as mere forwarders for their arguments.
520
521 @deftypefn {Built-in Function} {void *} __builtin_apply_args ()
522 This built-in function returns a pointer to data
523 describing how to perform a call with the same arguments as were passed
524 to the current function.
525
526 The function saves the arg pointer register, structure value address,
527 and all registers that might be used to pass arguments to a function
528 into a block of memory allocated on the stack. Then it returns the
529 address of that block.
530 @end deftypefn
531
532 @deftypefn {Built-in Function} {void *} __builtin_apply (void (*@var{function})(), void *@var{arguments}, size_t @var{size})
533 This built-in function invokes @var{function}
534 with a copy of the parameters described by @var{arguments}
535 and @var{size}.
536
537 The value of @var{arguments} should be the value returned by
538 @code{__builtin_apply_args}. The argument @var{size} specifies the size
539 of the stack argument data, in bytes.
540
541 This function returns a pointer to data describing
542 how to return whatever value was returned by @var{function}. The data
543 is saved in a block of memory allocated on the stack.
544
545 It is not always simple to compute the proper value for @var{size}. The
546 value is used by @code{__builtin_apply} to compute the amount of data
547 that should be pushed on the stack and copied from the incoming argument
548 area.
549 @end deftypefn
550
551 @deftypefn {Built-in Function} {void} __builtin_return (void *@var{result})
552 This built-in function returns the value described by @var{result} from
553 the containing function. You should specify, for @var{result}, a value
554 returned by @code{__builtin_apply}.
555 @end deftypefn
556
557 @node Typeof
558 @section Referring to a Type with @code{typeof}
559 @findex typeof
560 @findex sizeof
561 @cindex macros, types of arguments
562
563 Another way to refer to the type of an expression is with @code{typeof}.
564 The syntax of using of this keyword looks like @code{sizeof}, but the
565 construct acts semantically like a type name defined with @code{typedef}.
566
567 There are two ways of writing the argument to @code{typeof}: with an
568 expression or with a type. Here is an example with an expression:
569
570 @smallexample
571 typeof (x[0](1))
572 @end smallexample
573
574 @noindent
575 This assumes that @code{x} is an array of pointers to functions;
576 the type described is that of the values of the functions.
577
578 Here is an example with a typename as the argument:
579
580 @smallexample
581 typeof (int *)
582 @end smallexample
583
584 @noindent
585 Here the type described is that of pointers to @code{int}.
586
587 If you are writing a header file that must work when included in ISO C
588 programs, write @code{__typeof__} instead of @code{typeof}.
589 @xref{Alternate Keywords}.
590
591 A @code{typeof}-construct can be used anywhere a typedef name could be
592 used. For example, you can use it in a declaration, in a cast, or inside
593 of @code{sizeof} or @code{typeof}.
594
595 @code{typeof} is often useful in conjunction with the
596 statements-within-expressions feature. Here is how the two together can
597 be used to define a safe ``maximum'' macro that operates on any
598 arithmetic type and evaluates each of its arguments exactly once:
599
600 @smallexample
601 #define max(a,b) \
602 (@{ typeof (a) _a = (a); \
603 typeof (b) _b = (b); \
604 _a > _b ? _a : _b; @})
605 @end smallexample
606
607 @cindex underscores in variables in macros
608 @cindex @samp{_} in variables in macros
609 @cindex local variables in macros
610 @cindex variables, local, in macros
611 @cindex macros, local variables in
612
613 The reason for using names that start with underscores for the local
614 variables is to avoid conflicts with variable names that occur within the
615 expressions that are substituted for @code{a} and @code{b}. Eventually we
616 hope to design a new form of declaration syntax that allows you to declare
617 variables whose scopes start only after their initializers; this will be a
618 more reliable way to prevent such conflicts.
619
620 @noindent
621 Some more examples of the use of @code{typeof}:
622
623 @itemize @bullet
624 @item
625 This declares @code{y} with the type of what @code{x} points to.
626
627 @smallexample
628 typeof (*x) y;
629 @end smallexample
630
631 @item
632 This declares @code{y} as an array of such values.
633
634 @smallexample
635 typeof (*x) y[4];
636 @end smallexample
637
638 @item
639 This declares @code{y} as an array of pointers to characters:
640
641 @smallexample
642 typeof (typeof (char *)[4]) y;
643 @end smallexample
644
645 @noindent
646 It is equivalent to the following traditional C declaration:
647
648 @smallexample
649 char *y[4];
650 @end smallexample
651
652 To see the meaning of the declaration using @code{typeof}, and why it
653 might be a useful way to write, rewrite it with these macros:
654
655 @smallexample
656 #define pointer(T) typeof(T *)
657 #define array(T, N) typeof(T [N])
658 @end smallexample
659
660 @noindent
661 Now the declaration can be rewritten this way:
662
663 @smallexample
664 array (pointer (char), 4) y;
665 @end smallexample
666
667 @noindent
668 Thus, @code{array (pointer (char), 4)} is the type of arrays of 4
669 pointers to @code{char}.
670 @end itemize
671
672 @emph{Compatibility Note:} In addition to @code{typeof}, GCC 2 supported
673 a more limited extension which permitted one to write
674
675 @smallexample
676 typedef @var{T} = @var{expr};
677 @end smallexample
678
679 @noindent
680 with the effect of declaring @var{T} to have the type of the expression
681 @var{expr}. This extension does not work with GCC 3 (versions between
682 3.0 and 3.2 will crash; 3.2.1 and later give an error). Code which
683 relies on it should be rewritten to use @code{typeof}:
684
685 @smallexample
686 typedef typeof(@var{expr}) @var{T};
687 @end smallexample
688
689 @noindent
690 This will work with all versions of GCC@.
691
692 @node Conditionals
693 @section Conditionals with Omitted Operands
694 @cindex conditional expressions, extensions
695 @cindex omitted middle-operands
696 @cindex middle-operands, omitted
697 @cindex extensions, @code{?:}
698 @cindex @code{?:} extensions
699
700 The middle operand in a conditional expression may be omitted. Then
701 if the first operand is nonzero, its value is the value of the conditional
702 expression.
703
704 Therefore, the expression
705
706 @smallexample
707 x ? : y
708 @end smallexample
709
710 @noindent
711 has the value of @code{x} if that is nonzero; otherwise, the value of
712 @code{y}.
713
714 This example is perfectly equivalent to
715
716 @smallexample
717 x ? x : y
718 @end smallexample
719
720 @cindex side effect in ?:
721 @cindex ?: side effect
722 @noindent
723 In this simple case, the ability to omit the middle operand is not
724 especially useful. When it becomes useful is when the first operand does,
725 or may (if it is a macro argument), contain a side effect. Then repeating
726 the operand in the middle would perform the side effect twice. Omitting
727 the middle operand uses the value already computed without the undesirable
728 effects of recomputing it.
729
730 @node Long Long
731 @section Double-Word Integers
732 @cindex @code{long long} data types
733 @cindex double-word arithmetic
734 @cindex multiprecision arithmetic
735 @cindex @code{LL} integer suffix
736 @cindex @code{ULL} integer suffix
737
738 ISO C99 supports data types for integers that are at least 64 bits wide,
739 and as an extension GCC supports them in C89 mode and in C++.
740 Simply write @code{long long int} for a signed integer, or
741 @code{unsigned long long int} for an unsigned integer. To make an
742 integer constant of type @code{long long int}, add the suffix @samp{LL}
743 to the integer. To make an integer constant of type @code{unsigned long
744 long int}, add the suffix @samp{ULL} to the integer.
745
746 You can use these types in arithmetic like any other integer types.
747 Addition, subtraction, and bitwise boolean operations on these types
748 are open-coded on all types of machines. Multiplication is open-coded
749 if the machine supports fullword-to-doubleword a widening multiply
750 instruction. Division and shifts are open-coded only on machines that
751 provide special support. The operations that are not open-coded use
752 special library routines that come with GCC@.
753
754 There may be pitfalls when you use @code{long long} types for function
755 arguments, unless you declare function prototypes. If a function
756 expects type @code{int} for its argument, and you pass a value of type
757 @code{long long int}, confusion will result because the caller and the
758 subroutine will disagree about the number of bytes for the argument.
759 Likewise, if the function expects @code{long long int} and you pass
760 @code{int}. The best way to avoid such problems is to use prototypes.
761
762 @node Complex
763 @section Complex Numbers
764 @cindex complex numbers
765 @cindex @code{_Complex} keyword
766 @cindex @code{__complex__} keyword
767
768 ISO C99 supports complex floating data types, and as an extension GCC
769 supports them in C89 mode and in C++, and supports complex integer data
770 types which are not part of ISO C99. You can declare complex types
771 using the keyword @code{_Complex}. As an extension, the older GNU
772 keyword @code{__complex__} is also supported.
773
774 For example, @samp{_Complex double x;} declares @code{x} as a
775 variable whose real part and imaginary part are both of type
776 @code{double}. @samp{_Complex short int y;} declares @code{y} to
777 have real and imaginary parts of type @code{short int}; this is not
778 likely to be useful, but it shows that the set of complex types is
779 complete.
780
781 To write a constant with a complex data type, use the suffix @samp{i} or
782 @samp{j} (either one; they are equivalent). For example, @code{2.5fi}
783 has type @code{_Complex float} and @code{3i} has type
784 @code{_Complex int}. Such a constant always has a pure imaginary
785 value, but you can form any complex value you like by adding one to a
786 real constant. This is a GNU extension; if you have an ISO C99
787 conforming C library (such as GNU libc), and want to construct complex
788 constants of floating type, you should include @code{<complex.h>} and
789 use the macros @code{I} or @code{_Complex_I} instead.
790
791 @cindex @code{__real__} keyword
792 @cindex @code{__imag__} keyword
793 To extract the real part of a complex-valued expression @var{exp}, write
794 @code{__real__ @var{exp}}. Likewise, use @code{__imag__} to
795 extract the imaginary part. This is a GNU extension; for values of
796 floating type, you should use the ISO C99 functions @code{crealf},
797 @code{creal}, @code{creall}, @code{cimagf}, @code{cimag} and
798 @code{cimagl}, declared in @code{<complex.h>} and also provided as
799 built-in functions by GCC@.
800
801 @cindex complex conjugation
802 The operator @samp{~} performs complex conjugation when used on a value
803 with a complex type. This is a GNU extension; for values of
804 floating type, you should use the ISO C99 functions @code{conjf},
805 @code{conj} and @code{conjl}, declared in @code{<complex.h>} and also
806 provided as built-in functions by GCC@.
807
808 GCC can allocate complex automatic variables in a noncontiguous
809 fashion; it's even possible for the real part to be in a register while
810 the imaginary part is on the stack (or vice-versa). Only the DWARF2
811 debug info format can represent this, so use of DWARF2 is recommended.
812 If you are using the stabs debug info format, GCC describes a noncontiguous
813 complex variable as if it were two separate variables of noncomplex type.
814 If the variable's actual name is @code{foo}, the two fictitious
815 variables are named @code{foo$real} and @code{foo$imag}. You can
816 examine and set these two fictitious variables with your debugger.
817
818 @node Decimal Float
819 @section Decimal Floating Types
820 @cindex decimal floating types
821 @cindex @code{_Decimal32} data type
822 @cindex @code{_Decimal64} data type
823 @cindex @code{_Decimal128} data type
824 @cindex @code{df} integer suffix
825 @cindex @code{dd} integer suffix
826 @cindex @code{dl} integer suffix
827 @cindex @code{DF} integer suffix
828 @cindex @code{DD} integer suffix
829 @cindex @code{DL} integer suffix
830
831 As an extension, the GNU C compiler supports decimal floating types as
832 defined in the N1176 draft of ISO/IEC WDTR24732. Support for decimal
833 floating types in GCC will evolve as the draft technical report changes.
834 Calling conventions for any target might also change. Not all targets
835 support decimal floating types.
836
837 The decimal floating types are @code{_Decimal32}, @code{_Decimal64}, and
838 @code{_Decimal128}. They use a radix of ten, unlike the floating types
839 @code{float}, @code{double}, and @code{long double} whose radix is not
840 specified by the C standard but is usually two.
841
842 Support for decimal floating types includes the arithmetic operators
843 add, subtract, multiply, divide; unary arithmetic operators;
844 relational operators; equality operators; and conversions to and from
845 integer and other floating types. Use a suffix @samp{df} or
846 @samp{DF} in a literal constant of type @code{_Decimal32}, @samp{dd}
847 or @samp{DD} for @code{_Decimal64}, and @samp{dl} or @samp{DL} for
848 @code{_Decimal128}.
849
850 GCC support of decimal float as specified by the draft technical report
851 is incomplete:
852
853 @itemize @bullet
854 @item
855 Translation time data type (TTDT) is not supported.
856
857 @item
858 Characteristics of decimal floating types are defined in header file
859 @file{decfloat.h} rather than @file{float.h}.
860
861 @item
862 When the value of a decimal floating type cannot be represented in the
863 integer type to which it is being converted, the result is undefined
864 rather than the result value specified by the draft technical report.
865 @end itemize
866
867 Types @code{_Decimal32}, @code{_Decimal64}, and @code{_Decimal128}
868 are supported by the DWARF2 debug information format.
869
870 @node Hex Floats
871 @section Hex Floats
872 @cindex hex floats
873
874 ISO C99 supports floating-point numbers written not only in the usual
875 decimal notation, such as @code{1.55e1}, but also numbers such as
876 @code{0x1.fp3} written in hexadecimal format. As a GNU extension, GCC
877 supports this in C89 mode (except in some cases when strictly
878 conforming) and in C++. In that format the
879 @samp{0x} hex introducer and the @samp{p} or @samp{P} exponent field are
880 mandatory. The exponent is a decimal number that indicates the power of
881 2 by which the significant part will be multiplied. Thus @samp{0x1.f} is
882 @tex
883 $1 {15\over16}$,
884 @end tex
885 @ifnottex
886 1 15/16,
887 @end ifnottex
888 @samp{p3} multiplies it by 8, and the value of @code{0x1.fp3}
889 is the same as @code{1.55e1}.
890
891 Unlike for floating-point numbers in the decimal notation the exponent
892 is always required in the hexadecimal notation. Otherwise the compiler
893 would not be able to resolve the ambiguity of, e.g., @code{0x1.f}. This
894 could mean @code{1.0f} or @code{1.9375} since @samp{f} is also the
895 extension for floating-point constants of type @code{float}.
896
897 @node Zero Length
898 @section Arrays of Length Zero
899 @cindex arrays of length zero
900 @cindex zero-length arrays
901 @cindex length-zero arrays
902 @cindex flexible array members
903
904 Zero-length arrays are allowed in GNU C@. They are very useful as the
905 last element of a structure which is really a header for a variable-length
906 object:
907
908 @smallexample
909 struct line @{
910 int length;
911 char contents[0];
912 @};
913
914 struct line *thisline = (struct line *)
915 malloc (sizeof (struct line) + this_length);
916 thisline->length = this_length;
917 @end smallexample
918
919 In ISO C90, you would have to give @code{contents} a length of 1, which
920 means either you waste space or complicate the argument to @code{malloc}.
921
922 In ISO C99, you would use a @dfn{flexible array member}, which is
923 slightly different in syntax and semantics:
924
925 @itemize @bullet
926 @item
927 Flexible array members are written as @code{contents[]} without
928 the @code{0}.
929
930 @item
931 Flexible array members have incomplete type, and so the @code{sizeof}
932 operator may not be applied. As a quirk of the original implementation
933 of zero-length arrays, @code{sizeof} evaluates to zero.
934
935 @item
936 Flexible array members may only appear as the last member of a
937 @code{struct} that is otherwise non-empty.
938
939 @item
940 A structure containing a flexible array member, or a union containing
941 such a structure (possibly recursively), may not be a member of a
942 structure or an element of an array. (However, these uses are
943 permitted by GCC as extensions.)
944 @end itemize
945
946 GCC versions before 3.0 allowed zero-length arrays to be statically
947 initialized, as if they were flexible arrays. In addition to those
948 cases that were useful, it also allowed initializations in situations
949 that would corrupt later data. Non-empty initialization of zero-length
950 arrays is now treated like any case where there are more initializer
951 elements than the array holds, in that a suitable warning about "excess
952 elements in array" is given, and the excess elements (all of them, in
953 this case) are ignored.
954
955 Instead GCC allows static initialization of flexible array members.
956 This is equivalent to defining a new structure containing the original
957 structure followed by an array of sufficient size to contain the data.
958 I.e.@: in the following, @code{f1} is constructed as if it were declared
959 like @code{f2}.
960
961 @smallexample
962 struct f1 @{
963 int x; int y[];
964 @} f1 = @{ 1, @{ 2, 3, 4 @} @};
965
966 struct f2 @{
967 struct f1 f1; int data[3];
968 @} f2 = @{ @{ 1 @}, @{ 2, 3, 4 @} @};
969 @end smallexample
970
971 @noindent
972 The convenience of this extension is that @code{f1} has the desired
973 type, eliminating the need to consistently refer to @code{f2.f1}.
974
975 This has symmetry with normal static arrays, in that an array of
976 unknown size is also written with @code{[]}.
977
978 Of course, this extension only makes sense if the extra data comes at
979 the end of a top-level object, as otherwise we would be overwriting
980 data at subsequent offsets. To avoid undue complication and confusion
981 with initialization of deeply nested arrays, we simply disallow any
982 non-empty initialization except when the structure is the top-level
983 object. For example:
984
985 @smallexample
986 struct foo @{ int x; int y[]; @};
987 struct bar @{ struct foo z; @};
988
989 struct foo a = @{ 1, @{ 2, 3, 4 @} @}; // @r{Valid.}
990 struct bar b = @{ @{ 1, @{ 2, 3, 4 @} @} @}; // @r{Invalid.}
991 struct bar c = @{ @{ 1, @{ @} @} @}; // @r{Valid.}
992 struct foo d[1] = @{ @{ 1 @{ 2, 3, 4 @} @} @}; // @r{Invalid.}
993 @end smallexample
994
995 @node Empty Structures
996 @section Structures With No Members
997 @cindex empty structures
998 @cindex zero-size structures
999
1000 GCC permits a C structure to have no members:
1001
1002 @smallexample
1003 struct empty @{
1004 @};
1005 @end smallexample
1006
1007 The structure will have size zero. In C++, empty structures are part
1008 of the language. G++ treats empty structures as if they had a single
1009 member of type @code{char}.
1010
1011 @node Variable Length
1012 @section Arrays of Variable Length
1013 @cindex variable-length arrays
1014 @cindex arrays of variable length
1015 @cindex VLAs
1016
1017 Variable-length automatic arrays are allowed in ISO C99, and as an
1018 extension GCC accepts them in C89 mode and in C++. (However, GCC's
1019 implementation of variable-length arrays does not yet conform in detail
1020 to the ISO C99 standard.) These arrays are
1021 declared like any other automatic arrays, but with a length that is not
1022 a constant expression. The storage is allocated at the point of
1023 declaration and deallocated when the brace-level is exited. For
1024 example:
1025
1026 @smallexample
1027 FILE *
1028 concat_fopen (char *s1, char *s2, char *mode)
1029 @{
1030 char str[strlen (s1) + strlen (s2) + 1];
1031 strcpy (str, s1);
1032 strcat (str, s2);
1033 return fopen (str, mode);
1034 @}
1035 @end smallexample
1036
1037 @cindex scope of a variable length array
1038 @cindex variable-length array scope
1039 @cindex deallocating variable length arrays
1040 Jumping or breaking out of the scope of the array name deallocates the
1041 storage. Jumping into the scope is not allowed; you get an error
1042 message for it.
1043
1044 @cindex @code{alloca} vs variable-length arrays
1045 You can use the function @code{alloca} to get an effect much like
1046 variable-length arrays. The function @code{alloca} is available in
1047 many other C implementations (but not in all). On the other hand,
1048 variable-length arrays are more elegant.
1049
1050 There are other differences between these two methods. Space allocated
1051 with @code{alloca} exists until the containing @emph{function} returns.
1052 The space for a variable-length array is deallocated as soon as the array
1053 name's scope ends. (If you use both variable-length arrays and
1054 @code{alloca} in the same function, deallocation of a variable-length array
1055 will also deallocate anything more recently allocated with @code{alloca}.)
1056
1057 You can also use variable-length arrays as arguments to functions:
1058
1059 @smallexample
1060 struct entry
1061 tester (int len, char data[len][len])
1062 @{
1063 /* @r{@dots{}} */
1064 @}
1065 @end smallexample
1066
1067 The length of an array is computed once when the storage is allocated
1068 and is remembered for the scope of the array in case you access it with
1069 @code{sizeof}.
1070
1071 If you want to pass the array first and the length afterward, you can
1072 use a forward declaration in the parameter list---another GNU extension.
1073
1074 @smallexample
1075 struct entry
1076 tester (int len; char data[len][len], int len)
1077 @{
1078 /* @r{@dots{}} */
1079 @}
1080 @end smallexample
1081
1082 @cindex parameter forward declaration
1083 The @samp{int len} before the semicolon is a @dfn{parameter forward
1084 declaration}, and it serves the purpose of making the name @code{len}
1085 known when the declaration of @code{data} is parsed.
1086
1087 You can write any number of such parameter forward declarations in the
1088 parameter list. They can be separated by commas or semicolons, but the
1089 last one must end with a semicolon, which is followed by the ``real''
1090 parameter declarations. Each forward declaration must match a ``real''
1091 declaration in parameter name and data type. ISO C99 does not support
1092 parameter forward declarations.
1093
1094 @node Variadic Macros
1095 @section Macros with a Variable Number of Arguments.
1096 @cindex variable number of arguments
1097 @cindex macro with variable arguments
1098 @cindex rest argument (in macro)
1099 @cindex variadic macros
1100
1101 In the ISO C standard of 1999, a macro can be declared to accept a
1102 variable number of arguments much as a function can. The syntax for
1103 defining the macro is similar to that of a function. Here is an
1104 example:
1105
1106 @smallexample
1107 #define debug(format, ...) fprintf (stderr, format, __VA_ARGS__)
1108 @end smallexample
1109
1110 Here @samp{@dots{}} is a @dfn{variable argument}. In the invocation of
1111 such a macro, it represents the zero or more tokens until the closing
1112 parenthesis that ends the invocation, including any commas. This set of
1113 tokens replaces the identifier @code{__VA_ARGS__} in the macro body
1114 wherever it appears. See the CPP manual for more information.
1115
1116 GCC has long supported variadic macros, and used a different syntax that
1117 allowed you to give a name to the variable arguments just like any other
1118 argument. Here is an example:
1119
1120 @smallexample
1121 #define debug(format, args...) fprintf (stderr, format, args)
1122 @end smallexample
1123
1124 This is in all ways equivalent to the ISO C example above, but arguably
1125 more readable and descriptive.
1126
1127 GNU CPP has two further variadic macro extensions, and permits them to
1128 be used with either of the above forms of macro definition.
1129
1130 In standard C, you are not allowed to leave the variable argument out
1131 entirely; but you are allowed to pass an empty argument. For example,
1132 this invocation is invalid in ISO C, because there is no comma after
1133 the string:
1134
1135 @smallexample
1136 debug ("A message")
1137 @end smallexample
1138
1139 GNU CPP permits you to completely omit the variable arguments in this
1140 way. In the above examples, the compiler would complain, though since
1141 the expansion of the macro still has the extra comma after the format
1142 string.
1143
1144 To help solve this problem, CPP behaves specially for variable arguments
1145 used with the token paste operator, @samp{##}. If instead you write
1146
1147 @smallexample
1148 #define debug(format, ...) fprintf (stderr, format, ## __VA_ARGS__)
1149 @end smallexample
1150
1151 and if the variable arguments are omitted or empty, the @samp{##}
1152 operator causes the preprocessor to remove the comma before it. If you
1153 do provide some variable arguments in your macro invocation, GNU CPP
1154 does not complain about the paste operation and instead places the
1155 variable arguments after the comma. Just like any other pasted macro
1156 argument, these arguments are not macro expanded.
1157
1158 @node Escaped Newlines
1159 @section Slightly Looser Rules for Escaped Newlines
1160 @cindex escaped newlines
1161 @cindex newlines (escaped)
1162
1163 Recently, the preprocessor has relaxed its treatment of escaped
1164 newlines. Previously, the newline had to immediately follow a
1165 backslash. The current implementation allows whitespace in the form
1166 of spaces, horizontal and vertical tabs, and form feeds between the
1167 backslash and the subsequent newline. The preprocessor issues a
1168 warning, but treats it as a valid escaped newline and combines the two
1169 lines to form a single logical line. This works within comments and
1170 tokens, as well as between tokens. Comments are @emph{not} treated as
1171 whitespace for the purposes of this relaxation, since they have not
1172 yet been replaced with spaces.
1173
1174 @node Subscripting
1175 @section Non-Lvalue Arrays May Have Subscripts
1176 @cindex subscripting
1177 @cindex arrays, non-lvalue
1178
1179 @cindex subscripting and function values
1180 In ISO C99, arrays that are not lvalues still decay to pointers, and
1181 may be subscripted, although they may not be modified or used after
1182 the next sequence point and the unary @samp{&} operator may not be
1183 applied to them. As an extension, GCC allows such arrays to be
1184 subscripted in C89 mode, though otherwise they do not decay to
1185 pointers outside C99 mode. For example,
1186 this is valid in GNU C though not valid in C89:
1187
1188 @smallexample
1189 @group
1190 struct foo @{int a[4];@};
1191
1192 struct foo f();
1193
1194 bar (int index)
1195 @{
1196 return f().a[index];
1197 @}
1198 @end group
1199 @end smallexample
1200
1201 @node Pointer Arith
1202 @section Arithmetic on @code{void}- and Function-Pointers
1203 @cindex void pointers, arithmetic
1204 @cindex void, size of pointer to
1205 @cindex function pointers, arithmetic
1206 @cindex function, size of pointer to
1207
1208 In GNU C, addition and subtraction operations are supported on pointers to
1209 @code{void} and on pointers to functions. This is done by treating the
1210 size of a @code{void} or of a function as 1.
1211
1212 A consequence of this is that @code{sizeof} is also allowed on @code{void}
1213 and on function types, and returns 1.
1214
1215 @opindex Wpointer-arith
1216 The option @option{-Wpointer-arith} requests a warning if these extensions
1217 are used.
1218
1219 @node Initializers
1220 @section Non-Constant Initializers
1221 @cindex initializers, non-constant
1222 @cindex non-constant initializers
1223
1224 As in standard C++ and ISO C99, the elements of an aggregate initializer for an
1225 automatic variable are not required to be constant expressions in GNU C@.
1226 Here is an example of an initializer with run-time varying elements:
1227
1228 @smallexample
1229 foo (float f, float g)
1230 @{
1231 float beat_freqs[2] = @{ f-g, f+g @};
1232 /* @r{@dots{}} */
1233 @}
1234 @end smallexample
1235
1236 @node Compound Literals
1237 @section Compound Literals
1238 @cindex constructor expressions
1239 @cindex initializations in expressions
1240 @cindex structures, constructor expression
1241 @cindex expressions, constructor
1242 @cindex compound literals
1243 @c The GNU C name for what C99 calls compound literals was "constructor expressions".
1244
1245 ISO C99 supports compound literals. A compound literal looks like
1246 a cast containing an initializer. Its value is an object of the
1247 type specified in the cast, containing the elements specified in
1248 the initializer; it is an lvalue. As an extension, GCC supports
1249 compound literals in C89 mode and in C++.
1250
1251 Usually, the specified type is a structure. Assume that
1252 @code{struct foo} and @code{structure} are declared as shown:
1253
1254 @smallexample
1255 struct foo @{int a; char b[2];@} structure;
1256 @end smallexample
1257
1258 @noindent
1259 Here is an example of constructing a @code{struct foo} with a compound literal:
1260
1261 @smallexample
1262 structure = ((struct foo) @{x + y, 'a', 0@});
1263 @end smallexample
1264
1265 @noindent
1266 This is equivalent to writing the following:
1267
1268 @smallexample
1269 @{
1270 struct foo temp = @{x + y, 'a', 0@};
1271 structure = temp;
1272 @}
1273 @end smallexample
1274
1275 You can also construct an array. If all the elements of the compound literal
1276 are (made up of) simple constant expressions, suitable for use in
1277 initializers of objects of static storage duration, then the compound
1278 literal can be coerced to a pointer to its first element and used in
1279 such an initializer, as shown here:
1280
1281 @smallexample
1282 char **foo = (char *[]) @{ "x", "y", "z" @};
1283 @end smallexample
1284
1285 Compound literals for scalar types and union types are is
1286 also allowed, but then the compound literal is equivalent
1287 to a cast.
1288
1289 As a GNU extension, GCC allows initialization of objects with static storage
1290 duration by compound literals (which is not possible in ISO C99, because
1291 the initializer is not a constant).
1292 It is handled as if the object was initialized only with the bracket
1293 enclosed list if compound literal's and object types match.
1294 The initializer list of the compound literal must be constant.
1295 If the object being initialized has array type of unknown size, the size is
1296 determined by compound literal size.
1297
1298 @smallexample
1299 static struct foo x = (struct foo) @{1, 'a', 'b'@};
1300 static int y[] = (int []) @{1, 2, 3@};
1301 static int z[] = (int [3]) @{1@};
1302 @end smallexample
1303
1304 @noindent
1305 The above lines are equivalent to the following:
1306 @smallexample
1307 static struct foo x = @{1, 'a', 'b'@};
1308 static int y[] = @{1, 2, 3@};
1309 static int z[] = @{1, 0, 0@};
1310 @end smallexample
1311
1312 @node Designated Inits
1313 @section Designated Initializers
1314 @cindex initializers with labeled elements
1315 @cindex labeled elements in initializers
1316 @cindex case labels in initializers
1317 @cindex designated initializers
1318
1319 Standard C89 requires the elements of an initializer to appear in a fixed
1320 order, the same as the order of the elements in the array or structure
1321 being initialized.
1322
1323 In ISO C99 you can give the elements in any order, specifying the array
1324 indices or structure field names they apply to, and GNU C allows this as
1325 an extension in C89 mode as well. This extension is not
1326 implemented in GNU C++.
1327
1328 To specify an array index, write
1329 @samp{[@var{index}] =} before the element value. For example,
1330
1331 @smallexample
1332 int a[6] = @{ [4] = 29, [2] = 15 @};
1333 @end smallexample
1334
1335 @noindent
1336 is equivalent to
1337
1338 @smallexample
1339 int a[6] = @{ 0, 0, 15, 0, 29, 0 @};
1340 @end smallexample
1341
1342 @noindent
1343 The index values must be constant expressions, even if the array being
1344 initialized is automatic.
1345
1346 An alternative syntax for this which has been obsolete since GCC 2.5 but
1347 GCC still accepts is to write @samp{[@var{index}]} before the element
1348 value, with no @samp{=}.
1349
1350 To initialize a range of elements to the same value, write
1351 @samp{[@var{first} ... @var{last}] = @var{value}}. This is a GNU
1352 extension. For example,
1353
1354 @smallexample
1355 int widths[] = @{ [0 ... 9] = 1, [10 ... 99] = 2, [100] = 3 @};
1356 @end smallexample
1357
1358 @noindent
1359 If the value in it has side-effects, the side-effects will happen only once,
1360 not for each initialized field by the range initializer.
1361
1362 @noindent
1363 Note that the length of the array is the highest value specified
1364 plus one.
1365
1366 In a structure initializer, specify the name of a field to initialize
1367 with @samp{.@var{fieldname} =} before the element value. For example,
1368 given the following structure,
1369
1370 @smallexample
1371 struct point @{ int x, y; @};
1372 @end smallexample
1373
1374 @noindent
1375 the following initialization
1376
1377 @smallexample
1378 struct point p = @{ .y = yvalue, .x = xvalue @};
1379 @end smallexample
1380
1381 @noindent
1382 is equivalent to
1383
1384 @smallexample
1385 struct point p = @{ xvalue, yvalue @};
1386 @end smallexample
1387
1388 Another syntax which has the same meaning, obsolete since GCC 2.5, is
1389 @samp{@var{fieldname}:}, as shown here:
1390
1391 @smallexample
1392 struct point p = @{ y: yvalue, x: xvalue @};
1393 @end smallexample
1394
1395 @cindex designators
1396 The @samp{[@var{index}]} or @samp{.@var{fieldname}} is known as a
1397 @dfn{designator}. You can also use a designator (or the obsolete colon
1398 syntax) when initializing a union, to specify which element of the union
1399 should be used. For example,
1400
1401 @smallexample
1402 union foo @{ int i; double d; @};
1403
1404 union foo f = @{ .d = 4 @};
1405 @end smallexample
1406
1407 @noindent
1408 will convert 4 to a @code{double} to store it in the union using
1409 the second element. By contrast, casting 4 to type @code{union foo}
1410 would store it into the union as the integer @code{i}, since it is
1411 an integer. (@xref{Cast to Union}.)
1412
1413 You can combine this technique of naming elements with ordinary C
1414 initialization of successive elements. Each initializer element that
1415 does not have a designator applies to the next consecutive element of the
1416 array or structure. For example,
1417
1418 @smallexample
1419 int a[6] = @{ [1] = v1, v2, [4] = v4 @};
1420 @end smallexample
1421
1422 @noindent
1423 is equivalent to
1424
1425 @smallexample
1426 int a[6] = @{ 0, v1, v2, 0, v4, 0 @};
1427 @end smallexample
1428
1429 Labeling the elements of an array initializer is especially useful
1430 when the indices are characters or belong to an @code{enum} type.
1431 For example:
1432
1433 @smallexample
1434 int whitespace[256]
1435 = @{ [' '] = 1, ['\t'] = 1, ['\h'] = 1,
1436 ['\f'] = 1, ['\n'] = 1, ['\r'] = 1 @};
1437 @end smallexample
1438
1439 @cindex designator lists
1440 You can also write a series of @samp{.@var{fieldname}} and
1441 @samp{[@var{index}]} designators before an @samp{=} to specify a
1442 nested subobject to initialize; the list is taken relative to the
1443 subobject corresponding to the closest surrounding brace pair. For
1444 example, with the @samp{struct point} declaration above:
1445
1446 @smallexample
1447 struct point ptarray[10] = @{ [2].y = yv2, [2].x = xv2, [0].x = xv0 @};
1448 @end smallexample
1449
1450 @noindent
1451 If the same field is initialized multiple times, it will have value from
1452 the last initialization. If any such overridden initialization has
1453 side-effect, it is unspecified whether the side-effect happens or not.
1454 Currently, GCC will discard them and issue a warning.
1455
1456 @node Case Ranges
1457 @section Case Ranges
1458 @cindex case ranges
1459 @cindex ranges in case statements
1460
1461 You can specify a range of consecutive values in a single @code{case} label,
1462 like this:
1463
1464 @smallexample
1465 case @var{low} ... @var{high}:
1466 @end smallexample
1467
1468 @noindent
1469 This has the same effect as the proper number of individual @code{case}
1470 labels, one for each integer value from @var{low} to @var{high}, inclusive.
1471
1472 This feature is especially useful for ranges of ASCII character codes:
1473
1474 @smallexample
1475 case 'A' ... 'Z':
1476 @end smallexample
1477
1478 @strong{Be careful:} Write spaces around the @code{...}, for otherwise
1479 it may be parsed wrong when you use it with integer values. For example,
1480 write this:
1481
1482 @smallexample
1483 case 1 ... 5:
1484 @end smallexample
1485
1486 @noindent
1487 rather than this:
1488
1489 @smallexample
1490 case 1...5:
1491 @end smallexample
1492
1493 @node Cast to Union
1494 @section Cast to a Union Type
1495 @cindex cast to a union
1496 @cindex union, casting to a
1497
1498 A cast to union type is similar to other casts, except that the type
1499 specified is a union type. You can specify the type either with
1500 @code{union @var{tag}} or with a typedef name. A cast to union is actually
1501 a constructor though, not a cast, and hence does not yield an lvalue like
1502 normal casts. (@xref{Compound Literals}.)
1503
1504 The types that may be cast to the union type are those of the members
1505 of the union. Thus, given the following union and variables:
1506
1507 @smallexample
1508 union foo @{ int i; double d; @};
1509 int x;
1510 double y;
1511 @end smallexample
1512
1513 @noindent
1514 both @code{x} and @code{y} can be cast to type @code{union foo}.
1515
1516 Using the cast as the right-hand side of an assignment to a variable of
1517 union type is equivalent to storing in a member of the union:
1518
1519 @smallexample
1520 union foo u;
1521 /* @r{@dots{}} */
1522 u = (union foo) x @equiv{} u.i = x
1523 u = (union foo) y @equiv{} u.d = y
1524 @end smallexample
1525
1526 You can also use the union cast as a function argument:
1527
1528 @smallexample
1529 void hack (union foo);
1530 /* @r{@dots{}} */
1531 hack ((union foo) x);
1532 @end smallexample
1533
1534 @node Mixed Declarations
1535 @section Mixed Declarations and Code
1536 @cindex mixed declarations and code
1537 @cindex declarations, mixed with code
1538 @cindex code, mixed with declarations
1539
1540 ISO C99 and ISO C++ allow declarations and code to be freely mixed
1541 within compound statements. As an extension, GCC also allows this in
1542 C89 mode. For example, you could do:
1543
1544 @smallexample
1545 int i;
1546 /* @r{@dots{}} */
1547 i++;
1548 int j = i + 2;
1549 @end smallexample
1550
1551 Each identifier is visible from where it is declared until the end of
1552 the enclosing block.
1553
1554 @node Function Attributes
1555 @section Declaring Attributes of Functions
1556 @cindex function attributes
1557 @cindex declaring attributes of functions
1558 @cindex functions that never return
1559 @cindex functions that return more than once
1560 @cindex functions that have no side effects
1561 @cindex functions in arbitrary sections
1562 @cindex functions that behave like malloc
1563 @cindex @code{volatile} applied to function
1564 @cindex @code{const} applied to function
1565 @cindex functions with @code{printf}, @code{scanf}, @code{strftime} or @code{strfmon} style arguments
1566 @cindex functions with non-null pointer arguments
1567 @cindex functions that are passed arguments in registers on the 386
1568 @cindex functions that pop the argument stack on the 386
1569 @cindex functions that do not pop the argument stack on the 386
1570
1571 In GNU C, you declare certain things about functions called in your program
1572 which help the compiler optimize function calls and check your code more
1573 carefully.
1574
1575 The keyword @code{__attribute__} allows you to specify special
1576 attributes when making a declaration. This keyword is followed by an
1577 attribute specification inside double parentheses. The following
1578 attributes are currently defined for functions on all targets:
1579 @code{noreturn}, @code{returns_twice}, @code{noinline}, @code{always_inline},
1580 @code{flatten}, @code{pure}, @code{const}, @code{nothrow}, @code{sentinel},
1581 @code{format}, @code{format_arg}, @code{no_instrument_function},
1582 @code{section}, @code{constructor}, @code{destructor}, @code{used},
1583 @code{unused}, @code{deprecated}, @code{weak}, @code{malloc},
1584 @code{alias}, @code{warn_unused_result}, @code{nonnull},
1585 @code{gnu_inline} and @code{externally_visible}. Several other
1586 attributes are defined for functions on particular target systems. Other
1587 attributes, including @code{section} are supported for variables declarations
1588 (@pxref{Variable Attributes}) and for types (@pxref{Type Attributes}).
1589
1590 You may also specify attributes with @samp{__} preceding and following
1591 each keyword. This allows you to use them in header files without
1592 being concerned about a possible macro of the same name. For example,
1593 you may use @code{__noreturn__} instead of @code{noreturn}.
1594
1595 @xref{Attribute Syntax}, for details of the exact syntax for using
1596 attributes.
1597
1598 @table @code
1599 @c Keep this table alphabetized by attribute name. Treat _ as space.
1600
1601 @item alias ("@var{target}")
1602 @cindex @code{alias} attribute
1603 The @code{alias} attribute causes the declaration to be emitted as an
1604 alias for another symbol, which must be specified. For instance,
1605
1606 @smallexample
1607 void __f () @{ /* @r{Do something.} */; @}
1608 void f () __attribute__ ((weak, alias ("__f")));
1609 @end smallexample
1610
1611 defines @samp{f} to be a weak alias for @samp{__f}. In C++, the
1612 mangled name for the target must be used. It is an error if @samp{__f}
1613 is not defined in the same translation unit.
1614
1615 Not all target machines support this attribute.
1616
1617 @item always_inline
1618 @cindex @code{always_inline} function attribute
1619 Generally, functions are not inlined unless optimization is specified.
1620 For functions declared inline, this attribute inlines the function even
1621 if no optimization level was specified.
1622
1623 @item gnu_inline
1624 @cindex @code{gnu_inline} function attribute
1625 This attribute on an inline declaration results in the old GNU C89
1626 inline behavior even in the ISO C99 mode.
1627
1628 @cindex @code{flatten} function attribute
1629 @item flatten
1630 Generally, inlining into a function is limited. For a function marked with
1631 this attribute, every call inside this function will be inlined, if possible.
1632 Whether the function itself is considered for inlining depends on its size and
1633 the current inlining parameters. The @code{flatten} attribute only works
1634 reliably in unit-at-a-time mode.
1635
1636 @item cdecl
1637 @cindex functions that do pop the argument stack on the 386
1638 @opindex mrtd
1639 On the Intel 386, the @code{cdecl} attribute causes the compiler to
1640 assume that the calling function will pop off the stack space used to
1641 pass arguments. This is
1642 useful to override the effects of the @option{-mrtd} switch.
1643
1644 @item const
1645 @cindex @code{const} function attribute
1646 Many functions do not examine any values except their arguments, and
1647 have no effects except the return value. Basically this is just slightly
1648 more strict class than the @code{pure} attribute below, since function is not
1649 allowed to read global memory.
1650
1651 @cindex pointer arguments
1652 Note that a function that has pointer arguments and examines the data
1653 pointed to must @emph{not} be declared @code{const}. Likewise, a
1654 function that calls a non-@code{const} function usually must not be
1655 @code{const}. It does not make sense for a @code{const} function to
1656 return @code{void}.
1657
1658 The attribute @code{const} is not implemented in GCC versions earlier
1659 than 2.5. An alternative way to declare that a function has no side
1660 effects, which works in the current version and in some older versions,
1661 is as follows:
1662
1663 @smallexample
1664 typedef int intfn ();
1665
1666 extern const intfn square;
1667 @end smallexample
1668
1669 This approach does not work in GNU C++ from 2.6.0 on, since the language
1670 specifies that the @samp{const} must be attached to the return value.
1671
1672 @item constructor
1673 @itemx destructor
1674 @cindex @code{constructor} function attribute
1675 @cindex @code{destructor} function attribute
1676 The @code{constructor} attribute causes the function to be called
1677 automatically before execution enters @code{main ()}. Similarly, the
1678 @code{destructor} attribute causes the function to be called
1679 automatically after @code{main ()} has completed or @code{exit ()} has
1680 been called. Functions with these attributes are useful for
1681 initializing data that will be used implicitly during the execution of
1682 the program.
1683
1684 These attributes are not currently implemented for Objective-C@.
1685
1686 @item deprecated
1687 @cindex @code{deprecated} attribute.
1688 The @code{deprecated} attribute results in a warning if the function
1689 is used anywhere in the source file. This is useful when identifying
1690 functions that are expected to be removed in a future version of a
1691 program. The warning also includes the location of the declaration
1692 of the deprecated function, to enable users to easily find further
1693 information about why the function is deprecated, or what they should
1694 do instead. Note that the warnings only occurs for uses:
1695
1696 @smallexample
1697 int old_fn () __attribute__ ((deprecated));
1698 int old_fn ();
1699 int (*fn_ptr)() = old_fn;
1700 @end smallexample
1701
1702 results in a warning on line 3 but not line 2.
1703
1704 The @code{deprecated} attribute can also be used for variables and
1705 types (@pxref{Variable Attributes}, @pxref{Type Attributes}.)
1706
1707 @item dllexport
1708 @cindex @code{__declspec(dllexport)}
1709 On Microsoft Windows targets and Symbian OS targets the
1710 @code{dllexport} attribute causes the compiler to provide a global
1711 pointer to a pointer in a DLL, so that it can be referenced with the
1712 @code{dllimport} attribute. On Microsoft Windows targets, the pointer
1713 name is formed by combining @code{_imp__} and the function or variable
1714 name.
1715
1716 You can use @code{__declspec(dllexport)} as a synonym for
1717 @code{__attribute__ ((dllexport))} for compatibility with other
1718 compilers.
1719
1720 On systems that support the @code{visibility} attribute, this
1721 attribute also implies ``default'' visibility, unless a
1722 @code{visibility} attribute is explicitly specified. You should avoid
1723 the use of @code{dllexport} with ``hidden'' or ``internal''
1724 visibility; in the future GCC may issue an error for those cases.
1725
1726 Currently, the @code{dllexport} attribute is ignored for inlined
1727 functions, unless the @option{-fkeep-inline-functions} flag has been
1728 used. The attribute is also ignored for undefined symbols.
1729
1730 When applied to C++ classes, the attribute marks defined non-inlined
1731 member functions and static data members as exports. Static consts
1732 initialized in-class are not marked unless they are also defined
1733 out-of-class.
1734
1735 For Microsoft Windows targets there are alternative methods for
1736 including the symbol in the DLL's export table such as using a
1737 @file{.def} file with an @code{EXPORTS} section or, with GNU ld, using
1738 the @option{--export-all} linker flag.
1739
1740 @item dllimport
1741 @cindex @code{__declspec(dllimport)}
1742 On Microsoft Windows and Symbian OS targets, the @code{dllimport}
1743 attribute causes the compiler to reference a function or variable via
1744 a global pointer to a pointer that is set up by the DLL exporting the
1745 symbol. The attribute implies @code{extern} storage. On Microsoft
1746 Windows targets, the pointer name is formed by combining @code{_imp__}
1747 and the function or variable name.
1748
1749 You can use @code{__declspec(dllimport)} as a synonym for
1750 @code{__attribute__ ((dllimport))} for compatibility with other
1751 compilers.
1752
1753 Currently, the attribute is ignored for inlined functions. If the
1754 attribute is applied to a symbol @emph{definition}, an error is reported.
1755 If a symbol previously declared @code{dllimport} is later defined, the
1756 attribute is ignored in subsequent references, and a warning is emitted.
1757 The attribute is also overridden by a subsequent declaration as
1758 @code{dllexport}.
1759
1760 When applied to C++ classes, the attribute marks non-inlined
1761 member functions and static data members as imports. However, the
1762 attribute is ignored for virtual methods to allow creation of vtables
1763 using thunks.
1764
1765 On the SH Symbian OS target the @code{dllimport} attribute also has
1766 another affect---it can cause the vtable and run-time type information
1767 for a class to be exported. This happens when the class has a
1768 dllimport'ed constructor or a non-inline, non-pure virtual function
1769 and, for either of those two conditions, the class also has a inline
1770 constructor or destructor and has a key function that is defined in
1771 the current translation unit.
1772
1773 For Microsoft Windows based targets the use of the @code{dllimport}
1774 attribute on functions is not necessary, but provides a small
1775 performance benefit by eliminating a thunk in the DLL@. The use of the
1776 @code{dllimport} attribute on imported variables was required on older
1777 versions of the GNU linker, but can now be avoided by passing the
1778 @option{--enable-auto-import} switch to the GNU linker. As with
1779 functions, using the attribute for a variable eliminates a thunk in
1780 the DLL@.
1781
1782 One drawback to using this attribute is that a pointer to a function
1783 or variable marked as @code{dllimport} cannot be used as a constant
1784 address. On Microsoft Windows targets, the attribute can be disabled
1785 for functions by setting the @option{-mnop-fun-dllimport} flag.
1786
1787 @item eightbit_data
1788 @cindex eight bit data on the H8/300, H8/300H, and H8S
1789 Use this attribute on the H8/300, H8/300H, and H8S to indicate that the specified
1790 variable should be placed into the eight bit data section.
1791 The compiler will generate more efficient code for certain operations
1792 on data in the eight bit data area. Note the eight bit data area is limited to
1793 256 bytes of data.
1794
1795 You must use GAS and GLD from GNU binutils version 2.7 or later for
1796 this attribute to work correctly.
1797
1798 @item exception_handler
1799 @cindex exception handler functions on the Blackfin processor
1800 Use this attribute on the Blackfin to indicate that the specified function
1801 is an exception handler. The compiler will generate function entry and
1802 exit sequences suitable for use in an exception handler when this
1803 attribute is present.
1804
1805 @item far
1806 @cindex functions which handle memory bank switching
1807 On 68HC11 and 68HC12 the @code{far} attribute causes the compiler to
1808 use a calling convention that takes care of switching memory banks when
1809 entering and leaving a function. This calling convention is also the
1810 default when using the @option{-mlong-calls} option.
1811
1812 On 68HC12 the compiler will use the @code{call} and @code{rtc} instructions
1813 to call and return from a function.
1814
1815 On 68HC11 the compiler will generate a sequence of instructions
1816 to invoke a board-specific routine to switch the memory bank and call the
1817 real function. The board-specific routine simulates a @code{call}.
1818 At the end of a function, it will jump to a board-specific routine
1819 instead of using @code{rts}. The board-specific return routine simulates
1820 the @code{rtc}.
1821
1822 @item fastcall
1823 @cindex functions that pop the argument stack on the 386
1824 On the Intel 386, the @code{fastcall} attribute causes the compiler to
1825 pass the first argument (if of integral type) in the register ECX and
1826 the second argument (if of integral type) in the register EDX@. Subsequent
1827 and other typed arguments are passed on the stack. The called function will
1828 pop the arguments off the stack. If the number of arguments is variable all
1829 arguments are pushed on the stack.
1830
1831 @item format (@var{archetype}, @var{string-index}, @var{first-to-check})
1832 @cindex @code{format} function attribute
1833 @opindex Wformat
1834 The @code{format} attribute specifies that a function takes @code{printf},
1835 @code{scanf}, @code{strftime} or @code{strfmon} style arguments which
1836 should be type-checked against a format string. For example, the
1837 declaration:
1838
1839 @smallexample
1840 extern int
1841 my_printf (void *my_object, const char *my_format, ...)
1842 __attribute__ ((format (printf, 2, 3)));
1843 @end smallexample
1844
1845 @noindent
1846 causes the compiler to check the arguments in calls to @code{my_printf}
1847 for consistency with the @code{printf} style format string argument
1848 @code{my_format}.
1849
1850 The parameter @var{archetype} determines how the format string is
1851 interpreted, and should be @code{printf}, @code{scanf}, @code{strftime}
1852 or @code{strfmon}. (You can also use @code{__printf__},
1853 @code{__scanf__}, @code{__strftime__} or @code{__strfmon__}.) The
1854 parameter @var{string-index} specifies which argument is the format
1855 string argument (starting from 1), while @var{first-to-check} is the
1856 number of the first argument to check against the format string. For
1857 functions where the arguments are not available to be checked (such as
1858 @code{vprintf}), specify the third parameter as zero. In this case the
1859 compiler only checks the format string for consistency. For
1860 @code{strftime} formats, the third parameter is required to be zero.
1861 Since non-static C++ methods have an implicit @code{this} argument, the
1862 arguments of such methods should be counted from two, not one, when
1863 giving values for @var{string-index} and @var{first-to-check}.
1864
1865 In the example above, the format string (@code{my_format}) is the second
1866 argument of the function @code{my_print}, and the arguments to check
1867 start with the third argument, so the correct parameters for the format
1868 attribute are 2 and 3.
1869
1870 @opindex ffreestanding
1871 @opindex fno-builtin
1872 The @code{format} attribute allows you to identify your own functions
1873 which take format strings as arguments, so that GCC can check the
1874 calls to these functions for errors. The compiler always (unless
1875 @option{-ffreestanding} or @option{-fno-builtin} is used) checks formats
1876 for the standard library functions @code{printf}, @code{fprintf},
1877 @code{sprintf}, @code{scanf}, @code{fscanf}, @code{sscanf}, @code{strftime},
1878 @code{vprintf}, @code{vfprintf} and @code{vsprintf} whenever such
1879 warnings are requested (using @option{-Wformat}), so there is no need to
1880 modify the header file @file{stdio.h}. In C99 mode, the functions
1881 @code{snprintf}, @code{vsnprintf}, @code{vscanf}, @code{vfscanf} and
1882 @code{vsscanf} are also checked. Except in strictly conforming C
1883 standard modes, the X/Open function @code{strfmon} is also checked as
1884 are @code{printf_unlocked} and @code{fprintf_unlocked}.
1885 @xref{C Dialect Options,,Options Controlling C Dialect}.
1886
1887 The target may provide additional types of format checks.
1888 @xref{Target Format Checks,,Format Checks Specific to Particular
1889 Target Machines}.
1890
1891 @item format_arg (@var{string-index})
1892 @cindex @code{format_arg} function attribute
1893 @opindex Wformat-nonliteral
1894 The @code{format_arg} attribute specifies that a function takes a format
1895 string for a @code{printf}, @code{scanf}, @code{strftime} or
1896 @code{strfmon} style function and modifies it (for example, to translate
1897 it into another language), so the result can be passed to a
1898 @code{printf}, @code{scanf}, @code{strftime} or @code{strfmon} style
1899 function (with the remaining arguments to the format function the same
1900 as they would have been for the unmodified string). For example, the
1901 declaration:
1902
1903 @smallexample
1904 extern char *
1905 my_dgettext (char *my_domain, const char *my_format)
1906 __attribute__ ((format_arg (2)));
1907 @end smallexample
1908
1909 @noindent
1910 causes the compiler to check the arguments in calls to a @code{printf},
1911 @code{scanf}, @code{strftime} or @code{strfmon} type function, whose
1912 format string argument is a call to the @code{my_dgettext} function, for
1913 consistency with the format string argument @code{my_format}. If the
1914 @code{format_arg} attribute had not been specified, all the compiler
1915 could tell in such calls to format functions would be that the format
1916 string argument is not constant; this would generate a warning when
1917 @option{-Wformat-nonliteral} is used, but the calls could not be checked
1918 without the attribute.
1919
1920 The parameter @var{string-index} specifies which argument is the format
1921 string argument (starting from one). Since non-static C++ methods have
1922 an implicit @code{this} argument, the arguments of such methods should
1923 be counted from two.
1924
1925 The @code{format-arg} attribute allows you to identify your own
1926 functions which modify format strings, so that GCC can check the
1927 calls to @code{printf}, @code{scanf}, @code{strftime} or @code{strfmon}
1928 type function whose operands are a call to one of your own function.
1929 The compiler always treats @code{gettext}, @code{dgettext}, and
1930 @code{dcgettext} in this manner except when strict ISO C support is
1931 requested by @option{-ansi} or an appropriate @option{-std} option, or
1932 @option{-ffreestanding} or @option{-fno-builtin}
1933 is used. @xref{C Dialect Options,,Options
1934 Controlling C Dialect}.
1935
1936 @item function_vector
1937 @cindex calling functions through the function vector on the H8/300 processors
1938 Use this attribute on the H8/300, H8/300H, and H8S to indicate that the specified
1939 function should be called through the function vector. Calling a
1940 function through the function vector will reduce code size, however;
1941 the function vector has a limited size (maximum 128 entries on the H8/300
1942 and 64 entries on the H8/300H and H8S) and shares space with the interrupt vector.
1943
1944 You must use GAS and GLD from GNU binutils version 2.7 or later for
1945 this attribute to work correctly.
1946
1947 @item interrupt
1948 @cindex interrupt handler functions
1949 Use this attribute on the ARM, AVR, C4x, CRX, M32C, M32R/D, MS1, and Xstormy16
1950 ports to indicate that the specified function is an interrupt handler.
1951 The compiler will generate function entry and exit sequences suitable
1952 for use in an interrupt handler when this attribute is present.
1953
1954 Note, interrupt handlers for the Blackfin, m68k, H8/300, H8/300H, H8S, and
1955 SH processors can be specified via the @code{interrupt_handler} attribute.
1956
1957 Note, on the AVR, interrupts will be enabled inside the function.
1958
1959 Note, for the ARM, you can specify the kind of interrupt to be handled by
1960 adding an optional parameter to the interrupt attribute like this:
1961
1962 @smallexample
1963 void f () __attribute__ ((interrupt ("IRQ")));
1964 @end smallexample
1965
1966 Permissible values for this parameter are: IRQ, FIQ, SWI, ABORT and UNDEF@.
1967
1968 @item interrupt_handler
1969 @cindex interrupt handler functions on the Blackfin, m68k, H8/300 and SH processors
1970 Use this attribute on the Blackfin, m68k, H8/300, H8/300H, H8S, and SH to
1971 indicate that the specified function is an interrupt handler. The compiler
1972 will generate function entry and exit sequences suitable for use in an
1973 interrupt handler when this attribute is present.
1974
1975 @item kspisusp
1976 @cindex User stack pointer in interrupts on the Blackfin
1977 When used together with @code{interrupt_handler}, @code{exception_handler}
1978 or @code{nmi_handler}, code will be generated to load the stack pointer
1979 from the USP register in the function prologue.
1980
1981 @item long_call/short_call
1982 @cindex indirect calls on ARM
1983 This attribute specifies how a particular function is called on
1984 ARM@. Both attributes override the @option{-mlong-calls} (@pxref{ARM Options})
1985 command line switch and @code{#pragma long_calls} settings. The
1986 @code{long_call} attribute indicates that the function might be far
1987 away from the call site and require a different (more expensive)
1988 calling sequence. The @code{short_call} attribute always places
1989 the offset to the function from the call site into the @samp{BL}
1990 instruction directly.
1991
1992 @item longcall/shortcall
1993 @cindex functions called via pointer on the RS/6000 and PowerPC
1994 On the Blackfin, RS/6000 and PowerPC, the @code{longcall} attribute
1995 indicates that the function might be far away from the call site and
1996 require a different (more expensive) calling sequence. The
1997 @code{shortcall} attribute indicates that the function is always close
1998 enough for the shorter calling sequence to be used. These attributes
1999 override both the @option{-mlongcall} switch and, on the RS/6000 and
2000 PowerPC, the @code{#pragma longcall} setting.
2001
2002 @xref{RS/6000 and PowerPC Options}, for more information on whether long
2003 calls are necessary.
2004
2005 @item long_call
2006 @cindex indirect calls on MIPS
2007 This attribute specifies how a particular function is called on MIPS@.
2008 The attribute overrides the @option{-mlong-calls} (@pxref{MIPS Options})
2009 command line switch. This attribute causes the compiler to always call
2010 the function by first loading its address into a register, and then using
2011 the contents of that register.
2012
2013 @item malloc
2014 @cindex @code{malloc} attribute
2015 The @code{malloc} attribute is used to tell the compiler that a function
2016 may be treated as if any non-@code{NULL} pointer it returns cannot
2017 alias any other pointer valid when the function returns.
2018 This will often improve optimization.
2019 Standard functions with this property include @code{malloc} and
2020 @code{calloc}. @code{realloc}-like functions have this property as
2021 long as the old pointer is never referred to (including comparing it
2022 to the new pointer) after the function returns a non-@code{NULL}
2023 value.
2024
2025 @item model (@var{model-name})
2026 @cindex function addressability on the M32R/D
2027 @cindex variable addressability on the IA-64
2028
2029 On the M32R/D, use this attribute to set the addressability of an
2030 object, and of the code generated for a function. The identifier
2031 @var{model-name} is one of @code{small}, @code{medium}, or
2032 @code{large}, representing each of the code models.
2033
2034 Small model objects live in the lower 16MB of memory (so that their
2035 addresses can be loaded with the @code{ld24} instruction), and are
2036 callable with the @code{bl} instruction.
2037
2038 Medium model objects may live anywhere in the 32-bit address space (the
2039 compiler will generate @code{seth/add3} instructions to load their addresses),
2040 and are callable with the @code{bl} instruction.
2041
2042 Large model objects may live anywhere in the 32-bit address space (the
2043 compiler will generate @code{seth/add3} instructions to load their addresses),
2044 and may not be reachable with the @code{bl} instruction (the compiler will
2045 generate the much slower @code{seth/add3/jl} instruction sequence).
2046
2047 On IA-64, use this attribute to set the addressability of an object.
2048 At present, the only supported identifier for @var{model-name} is
2049 @code{small}, indicating addressability via ``small'' (22-bit)
2050 addresses (so that their addresses can be loaded with the @code{addl}
2051 instruction). Caveat: such addressing is by definition not position
2052 independent and hence this attribute must not be used for objects
2053 defined by shared libraries.
2054
2055 @item naked
2056 @cindex function without a prologue/epilogue code
2057 Use this attribute on the ARM, AVR, C4x and IP2K ports to indicate that the
2058 specified function does not need prologue/epilogue sequences generated by
2059 the compiler. It is up to the programmer to provide these sequences.
2060
2061 @item near
2062 @cindex functions which do not handle memory bank switching on 68HC11/68HC12
2063 On 68HC11 and 68HC12 the @code{near} attribute causes the compiler to
2064 use the normal calling convention based on @code{jsr} and @code{rts}.
2065 This attribute can be used to cancel the effect of the @option{-mlong-calls}
2066 option.
2067
2068 @item nesting
2069 @cindex Allow nesting in an interrupt handler on the Blackfin processor.
2070 Use this attribute together with @code{interrupt_handler},
2071 @code{exception_handler} or @code{nmi_handler} to indicate that the function
2072 entry code should enable nested interrupts or exceptions.
2073
2074 @item nmi_handler
2075 @cindex NMI handler functions on the Blackfin processor
2076 Use this attribute on the Blackfin to indicate that the specified function
2077 is an NMI handler. The compiler will generate function entry and
2078 exit sequences suitable for use in an NMI handler when this
2079 attribute is present.
2080
2081 @item no_instrument_function
2082 @cindex @code{no_instrument_function} function attribute
2083 @opindex finstrument-functions
2084 If @option{-finstrument-functions} is given, profiling function calls will
2085 be generated at entry and exit of most user-compiled functions.
2086 Functions with this attribute will not be so instrumented.
2087
2088 @item noinline
2089 @cindex @code{noinline} function attribute
2090 This function attribute prevents a function from being considered for
2091 inlining.
2092
2093 @item nonnull (@var{arg-index}, @dots{})
2094 @cindex @code{nonnull} function attribute
2095 The @code{nonnull} attribute specifies that some function parameters should
2096 be non-null pointers. For instance, the declaration:
2097
2098 @smallexample
2099 extern void *
2100 my_memcpy (void *dest, const void *src, size_t len)
2101 __attribute__((nonnull (1, 2)));
2102 @end smallexample
2103
2104 @noindent
2105 causes the compiler to check that, in calls to @code{my_memcpy},
2106 arguments @var{dest} and @var{src} are non-null. If the compiler
2107 determines that a null pointer is passed in an argument slot marked
2108 as non-null, and the @option{-Wnonnull} option is enabled, a warning
2109 is issued. The compiler may also choose to make optimizations based
2110 on the knowledge that certain function arguments will not be null.
2111
2112 If no argument index list is given to the @code{nonnull} attribute,
2113 all pointer arguments are marked as non-null. To illustrate, the
2114 following declaration is equivalent to the previous example:
2115
2116 @smallexample
2117 extern void *
2118 my_memcpy (void *dest, const void *src, size_t len)
2119 __attribute__((nonnull));
2120 @end smallexample
2121
2122 @item noreturn
2123 @cindex @code{noreturn} function attribute
2124 A few standard library functions, such as @code{abort} and @code{exit},
2125 cannot return. GCC knows this automatically. Some programs define
2126 their own functions that never return. You can declare them
2127 @code{noreturn} to tell the compiler this fact. For example,
2128
2129 @smallexample
2130 @group
2131 void fatal () __attribute__ ((noreturn));
2132
2133 void
2134 fatal (/* @r{@dots{}} */)
2135 @{
2136 /* @r{@dots{}} */ /* @r{Print error message.} */ /* @r{@dots{}} */
2137 exit (1);
2138 @}
2139 @end group
2140 @end smallexample
2141
2142 The @code{noreturn} keyword tells the compiler to assume that
2143 @code{fatal} cannot return. It can then optimize without regard to what
2144 would happen if @code{fatal} ever did return. This makes slightly
2145 better code. More importantly, it helps avoid spurious warnings of
2146 uninitialized variables.
2147
2148 The @code{noreturn} keyword does not affect the exceptional path when that
2149 applies: a @code{noreturn}-marked function may still return to the caller
2150 by throwing an exception or calling @code{longjmp}.
2151
2152 Do not assume that registers saved by the calling function are
2153 restored before calling the @code{noreturn} function.
2154
2155 It does not make sense for a @code{noreturn} function to have a return
2156 type other than @code{void}.
2157
2158 The attribute @code{noreturn} is not implemented in GCC versions
2159 earlier than 2.5. An alternative way to declare that a function does
2160 not return, which works in the current version and in some older
2161 versions, is as follows:
2162
2163 @smallexample
2164 typedef void voidfn ();
2165
2166 volatile voidfn fatal;
2167 @end smallexample
2168
2169 This approach does not work in GNU C++.
2170
2171 @item nothrow
2172 @cindex @code{nothrow} function attribute
2173 The @code{nothrow} attribute is used to inform the compiler that a
2174 function cannot throw an exception. For example, most functions in
2175 the standard C library can be guaranteed not to throw an exception
2176 with the notable exceptions of @code{qsort} and @code{bsearch} that
2177 take function pointer arguments. The @code{nothrow} attribute is not
2178 implemented in GCC versions earlier than 3.3.
2179
2180 @item pure
2181 @cindex @code{pure} function attribute
2182 Many functions have no effects except the return value and their
2183 return value depends only on the parameters and/or global variables.
2184 Such a function can be subject
2185 to common subexpression elimination and loop optimization just as an
2186 arithmetic operator would be. These functions should be declared
2187 with the attribute @code{pure}. For example,
2188
2189 @smallexample
2190 int square (int) __attribute__ ((pure));
2191 @end smallexample
2192
2193 @noindent
2194 says that the hypothetical function @code{square} is safe to call
2195 fewer times than the program says.
2196
2197 Some of common examples of pure functions are @code{strlen} or @code{memcmp}.
2198 Interesting non-pure functions are functions with infinite loops or those
2199 depending on volatile memory or other system resource, that may change between
2200 two consecutive calls (such as @code{feof} in a multithreading environment).
2201
2202 The attribute @code{pure} is not implemented in GCC versions earlier
2203 than 2.96.
2204
2205 @item regparm (@var{number})
2206 @cindex @code{regparm} attribute
2207 @cindex functions that are passed arguments in registers on the 386
2208 On the Intel 386, the @code{regparm} attribute causes the compiler to
2209 pass arguments number one to @var{number} if they are of integral type
2210 in registers EAX, EDX, and ECX instead of on the stack. Functions that
2211 take a variable number of arguments will continue to be passed all of their
2212 arguments on the stack.
2213
2214 Beware that on some ELF systems this attribute is unsuitable for
2215 global functions in shared libraries with lazy binding (which is the
2216 default). Lazy binding will send the first call via resolving code in
2217 the loader, which might assume EAX, EDX and ECX can be clobbered, as
2218 per the standard calling conventions. Solaris 8 is affected by this.
2219 GNU systems with GLIBC 2.1 or higher, and FreeBSD, are believed to be
2220 safe since the loaders there save all registers. (Lazy binding can be
2221 disabled with the linker or the loader if desired, to avoid the
2222 problem.)
2223
2224 @item sseregparm
2225 @cindex @code{sseregparm} attribute
2226 On the Intel 386 with SSE support, the @code{sseregparm} attribute
2227 causes the compiler to pass up to 8 floating point arguments in
2228 SSE registers instead of on the stack. Functions that take a
2229 variable number of arguments will continue to pass all of their
2230 floating point arguments on the stack.
2231
2232 @item force_align_arg_pointer
2233 @cindex @code{force_align_arg_pointer} attribute
2234 On the Intel x86, the @code{force_align_arg_pointer} attribute may be
2235 applied to individual function definitions, generating an alternate
2236 prologue and epilogue that realigns the runtime stack. This supports
2237 mixing legacy codes that run with a 4-byte aligned stack with modern
2238 codes that keep a 16-byte stack for SSE compatibility. The alternate
2239 prologue and epilogue are slower and bigger than the regular ones, and
2240 the alternate prologue requires a scratch register; this lowers the
2241 number of registers available if used in conjunction with the
2242 @code{regparm} attribute. The @code{force_align_arg_pointer}
2243 attribute is incompatible with nested functions; this is considered a
2244 hard error.
2245
2246 @item returns_twice
2247 @cindex @code{returns_twice} attribute
2248 The @code{returns_twice} attribute tells the compiler that a function may
2249 return more than one time. The compiler will ensure that all registers
2250 are dead before calling such a function and will emit a warning about
2251 the variables that may be clobbered after the second return from the
2252 function. Examples of such functions are @code{setjmp} and @code{vfork}.
2253 The @code{longjmp}-like counterpart of such function, if any, might need
2254 to be marked with the @code{noreturn} attribute.
2255
2256 @item saveall
2257 @cindex save all registers on the Blackfin, H8/300, H8/300H, and H8S
2258 Use this attribute on the Blackfin, H8/300, H8/300H, and H8S to indicate that
2259 all registers except the stack pointer should be saved in the prologue
2260 regardless of whether they are used or not.
2261
2262 @item section ("@var{section-name}")
2263 @cindex @code{section} function attribute
2264 Normally, the compiler places the code it generates in the @code{text} section.
2265 Sometimes, however, you need additional sections, or you need certain
2266 particular functions to appear in special sections. The @code{section}
2267 attribute specifies that a function lives in a particular section.
2268 For example, the declaration:
2269
2270 @smallexample
2271 extern void foobar (void) __attribute__ ((section ("bar")));
2272 @end smallexample
2273
2274 @noindent
2275 puts the function @code{foobar} in the @code{bar} section.
2276
2277 Some file formats do not support arbitrary sections so the @code{section}
2278 attribute is not available on all platforms.
2279 If you need to map the entire contents of a module to a particular
2280 section, consider using the facilities of the linker instead.
2281
2282 @item sentinel
2283 @cindex @code{sentinel} function attribute
2284 This function attribute ensures that a parameter in a function call is
2285 an explicit @code{NULL}. The attribute is only valid on variadic
2286 functions. By default, the sentinel is located at position zero, the
2287 last parameter of the function call. If an optional integer position
2288 argument P is supplied to the attribute, the sentinel must be located at
2289 position P counting backwards from the end of the argument list.
2290
2291 @smallexample
2292 __attribute__ ((sentinel))
2293 is equivalent to
2294 __attribute__ ((sentinel(0)))
2295 @end smallexample
2296
2297 The attribute is automatically set with a position of 0 for the built-in
2298 functions @code{execl} and @code{execlp}. The built-in function
2299 @code{execle} has the attribute set with a position of 1.
2300
2301 A valid @code{NULL} in this context is defined as zero with any pointer
2302 type. If your system defines the @code{NULL} macro with an integer type
2303 then you need to add an explicit cast. GCC replaces @code{stddef.h}
2304 with a copy that redefines NULL appropriately.
2305
2306 The warnings for missing or incorrect sentinels are enabled with
2307 @option{-Wformat}.
2308
2309 @item short_call
2310 See long_call/short_call.
2311
2312 @item shortcall
2313 See longcall/shortcall.
2314
2315 @item signal
2316 @cindex signal handler functions on the AVR processors
2317 Use this attribute on the AVR to indicate that the specified
2318 function is a signal handler. The compiler will generate function
2319 entry and exit sequences suitable for use in a signal handler when this
2320 attribute is present. Interrupts will be disabled inside the function.
2321
2322 @item sp_switch
2323 Use this attribute on the SH to indicate an @code{interrupt_handler}
2324 function should switch to an alternate stack. It expects a string
2325 argument that names a global variable holding the address of the
2326 alternate stack.
2327
2328 @smallexample
2329 void *alt_stack;
2330 void f () __attribute__ ((interrupt_handler,
2331 sp_switch ("alt_stack")));
2332 @end smallexample
2333
2334 @item stdcall
2335 @cindex functions that pop the argument stack on the 386
2336 On the Intel 386, the @code{stdcall} attribute causes the compiler to
2337 assume that the called function will pop off the stack space used to
2338 pass arguments, unless it takes a variable number of arguments.
2339
2340 @item tiny_data
2341 @cindex tiny data section on the H8/300H and H8S
2342 Use this attribute on the H8/300H and H8S to indicate that the specified
2343 variable should be placed into the tiny data section.
2344 The compiler will generate more efficient code for loads and stores
2345 on data in the tiny data section. Note the tiny data area is limited to
2346 slightly under 32kbytes of data.
2347
2348 @item trap_exit
2349 Use this attribute on the SH for an @code{interrupt_handler} to return using
2350 @code{trapa} instead of @code{rte}. This attribute expects an integer
2351 argument specifying the trap number to be used.
2352
2353 @item unused
2354 @cindex @code{unused} attribute.
2355 This attribute, attached to a function, means that the function is meant
2356 to be possibly unused. GCC will not produce a warning for this
2357 function.
2358
2359 @item used
2360 @cindex @code{used} attribute.
2361 This attribute, attached to a function, means that code must be emitted
2362 for the function even if it appears that the function is not referenced.
2363 This is useful, for example, when the function is referenced only in
2364 inline assembly.
2365
2366 @item visibility ("@var{visibility_type}")
2367 @cindex @code{visibility} attribute
2368 This attribute affects the linkage of the declaration to which it is attached.
2369 There are four supported @var{visibility_type} values: default,
2370 hidden, protected or internal visibility.
2371
2372 @smallexample
2373 void __attribute__ ((visibility ("protected")))
2374 f () @{ /* @r{Do something.} */; @}
2375 int i __attribute__ ((visibility ("hidden")));
2376 @end smallexample
2377
2378 The possible values of @var{visibility_type} correspond to the
2379 visibility settings in the ELF gABI.
2380
2381 @table @dfn
2382 @c keep this list of visibilities in alphabetical order.
2383
2384 @item default
2385 Default visibility is the normal case for the object file format.
2386 This value is available for the visibility attribute to override other
2387 options that may change the assumed visibility of entities.
2388
2389 On ELF, default visibility means that the declaration is visible to other
2390 modules and, in shared libraries, means that the declared entity may be
2391 overridden.
2392
2393 On Darwin, default visibility means that the declaration is visible to
2394 other modules.
2395
2396 Default visibility corresponds to ``external linkage'' in the language.
2397
2398 @item hidden
2399 Hidden visibility indicates that the entity declared will have a new
2400 form of linkage, which we'll call ``hidden linkage''. Two
2401 declarations of an object with hidden linkage refer to the same object
2402 if they are in the same shared object.
2403
2404 @item internal
2405 Internal visibility is like hidden visibility, but with additional
2406 processor specific semantics. Unless otherwise specified by the
2407 psABI, GCC defines internal visibility to mean that a function is
2408 @emph{never} called from another module. Compare this with hidden
2409 functions which, while they cannot be referenced directly by other
2410 modules, can be referenced indirectly via function pointers. By
2411 indicating that a function cannot be called from outside the module,
2412 GCC may for instance omit the load of a PIC register since it is known
2413 that the calling function loaded the correct value.
2414
2415 @item protected
2416 Protected visibility is like default visibility except that it
2417 indicates that references within the defining module will bind to the
2418 definition in that module. That is, the declared entity cannot be
2419 overridden by another module.
2420
2421 @end table
2422
2423 All visibilities are supported on many, but not all, ELF targets
2424 (supported when the assembler supports the @samp{.visibility}
2425 pseudo-op). Default visibility is supported everywhere. Hidden
2426 visibility is supported on Darwin targets.
2427
2428 The visibility attribute should be applied only to declarations which
2429 would otherwise have external linkage. The attribute should be applied
2430 consistently, so that the same entity should not be declared with
2431 different settings of the attribute.
2432
2433 In C++, the visibility attribute applies to types as well as functions
2434 and objects, because in C++ types have linkage. A class must not have
2435 greater visibility than its non-static data member types and bases,
2436 and class members default to the visibility of their class. Also, a
2437 declaration without explicit visibility is limited to the visibility
2438 of its type.
2439
2440 In C++, you can mark member functions and static member variables of a
2441 class with the visibility attribute. This is useful if if you know a
2442 particular method or static member variable should only be used from
2443 one shared object; then you can mark it hidden while the rest of the
2444 class has default visibility. Care must be taken to avoid breaking
2445 the One Definition Rule; for example, it is usually not useful to mark
2446 an inline method as hidden without marking the whole class as hidden.
2447
2448 A C++ namespace declaration can also have the visibility attribute.
2449 This attribute applies only to the particular namespace body, not to
2450 other definitions of the same namespace; it is equivalent to using
2451 @samp{#pragma GCC visibility} before and after the namespace
2452 definition (@pxref{Visibility Pragmas}).
2453
2454 In C++, if a template argument has limited visibility, this
2455 restriction is implicitly propagated to the template instantiation.
2456 Otherwise, template instantiations and specializations default to the
2457 visibility of their template.
2458
2459 If both the template and enclosing class have explicit visibility, the
2460 visibility from the template is used.
2461
2462 @item warn_unused_result
2463 @cindex @code{warn_unused_result} attribute
2464 The @code{warn_unused_result} attribute causes a warning to be emitted
2465 if a caller of the function with this attribute does not use its
2466 return value. This is useful for functions where not checking
2467 the result is either a security problem or always a bug, such as
2468 @code{realloc}.
2469
2470 @smallexample
2471 int fn () __attribute__ ((warn_unused_result));
2472 int foo ()
2473 @{
2474 if (fn () < 0) return -1;
2475 fn ();
2476 return 0;
2477 @}
2478 @end smallexample
2479
2480 results in warning on line 5.
2481
2482 @item weak
2483 @cindex @code{weak} attribute
2484 The @code{weak} attribute causes the declaration to be emitted as a weak
2485 symbol rather than a global. This is primarily useful in defining
2486 library functions which can be overridden in user code, though it can
2487 also be used with non-function declarations. Weak symbols are supported
2488 for ELF targets, and also for a.out targets when using the GNU assembler
2489 and linker.
2490
2491 @item weakref
2492 @itemx weakref ("@var{target}")
2493 @cindex @code{weakref} attribute
2494 The @code{weakref} attribute marks a declaration as a weak reference.
2495 Without arguments, it should be accompanied by an @code{alias} attribute
2496 naming the target symbol. Optionally, the @var{target} may be given as
2497 an argument to @code{weakref} itself. In either case, @code{weakref}
2498 implicitly marks the declaration as @code{weak}. Without a
2499 @var{target}, given as an argument to @code{weakref} or to @code{alias},
2500 @code{weakref} is equivalent to @code{weak}.
2501
2502 @smallexample
2503 static int x() __attribute__ ((weakref ("y")));
2504 /* is equivalent to... */
2505 static int x() __attribute__ ((weak, weakref, alias ("y")));
2506 /* and to... */
2507 static int x() __attribute__ ((weakref));
2508 static int x() __attribute__ ((alias ("y")));
2509 @end smallexample
2510
2511 A weak reference is an alias that does not by itself require a
2512 definition to be given for the target symbol. If the target symbol is
2513 only referenced through weak references, then the becomes a @code{weak}
2514 undefined symbol. If it is directly referenced, however, then such
2515 strong references prevail, and a definition will be required for the
2516 symbol, not necessarily in the same translation unit.
2517
2518 The effect is equivalent to moving all references to the alias to a
2519 separate translation unit, renaming the alias to the aliased symbol,
2520 declaring it as weak, compiling the two separate translation units and
2521 performing a reloadable link on them.
2522
2523 At present, a declaration to which @code{weakref} is attached can
2524 only be @code{static}.
2525
2526 @item externally_visible
2527 @cindex @code{externally_visible} attribute.
2528 This attribute, attached to a global variable or function nullify
2529 effect of @option{-fwhole-program} command line option, so the object
2530 remain visible outside the current compilation unit
2531
2532 @end table
2533
2534 You can specify multiple attributes in a declaration by separating them
2535 by commas within the double parentheses or by immediately following an
2536 attribute declaration with another attribute declaration.
2537
2538 @cindex @code{#pragma}, reason for not using
2539 @cindex pragma, reason for not using
2540 Some people object to the @code{__attribute__} feature, suggesting that
2541 ISO C's @code{#pragma} should be used instead. At the time
2542 @code{__attribute__} was designed, there were two reasons for not doing
2543 this.
2544
2545 @enumerate
2546 @item
2547 It is impossible to generate @code{#pragma} commands from a macro.
2548
2549 @item
2550 There is no telling what the same @code{#pragma} might mean in another
2551 compiler.
2552 @end enumerate
2553
2554 These two reasons applied to almost any application that might have been
2555 proposed for @code{#pragma}. It was basically a mistake to use
2556 @code{#pragma} for @emph{anything}.
2557
2558 The ISO C99 standard includes @code{_Pragma}, which now allows pragmas
2559 to be generated from macros. In addition, a @code{#pragma GCC}
2560 namespace is now in use for GCC-specific pragmas. However, it has been
2561 found convenient to use @code{__attribute__} to achieve a natural
2562 attachment of attributes to their corresponding declarations, whereas
2563 @code{#pragma GCC} is of use for constructs that do not naturally form
2564 part of the grammar. @xref{Other Directives,,Miscellaneous
2565 Preprocessing Directives, cpp, The GNU C Preprocessor}.
2566
2567 @node Attribute Syntax
2568 @section Attribute Syntax
2569 @cindex attribute syntax
2570
2571 This section describes the syntax with which @code{__attribute__} may be
2572 used, and the constructs to which attribute specifiers bind, for the C
2573 language. Some details may vary for C++ and Objective-C@. Because of
2574 infelicities in the grammar for attributes, some forms described here
2575 may not be successfully parsed in all cases.
2576
2577 There are some problems with the semantics of attributes in C++. For
2578 example, there are no manglings for attributes, although they may affect
2579 code generation, so problems may arise when attributed types are used in
2580 conjunction with templates or overloading. Similarly, @code{typeid}
2581 does not distinguish between types with different attributes. Support
2582 for attributes in C++ may be restricted in future to attributes on
2583 declarations only, but not on nested declarators.
2584
2585 @xref{Function Attributes}, for details of the semantics of attributes
2586 applying to functions. @xref{Variable Attributes}, for details of the
2587 semantics of attributes applying to variables. @xref{Type Attributes},
2588 for details of the semantics of attributes applying to structure, union
2589 and enumerated types.
2590
2591 An @dfn{attribute specifier} is of the form
2592 @code{__attribute__ ((@var{attribute-list}))}. An @dfn{attribute list}
2593 is a possibly empty comma-separated sequence of @dfn{attributes}, where
2594 each attribute is one of the following:
2595
2596 @itemize @bullet
2597 @item
2598 Empty. Empty attributes are ignored.
2599
2600 @item
2601 A word (which may be an identifier such as @code{unused}, or a reserved
2602 word such as @code{const}).
2603
2604 @item
2605 A word, followed by, in parentheses, parameters for the attribute.
2606 These parameters take one of the following forms:
2607
2608 @itemize @bullet
2609 @item
2610 An identifier. For example, @code{mode} attributes use this form.
2611
2612 @item
2613 An identifier followed by a comma and a non-empty comma-separated list
2614 of expressions. For example, @code{format} attributes use this form.
2615
2616 @item
2617 A possibly empty comma-separated list of expressions. For example,
2618 @code{format_arg} attributes use this form with the list being a single
2619 integer constant expression, and @code{alias} attributes use this form
2620 with the list being a single string constant.
2621 @end itemize
2622 @end itemize
2623
2624 An @dfn{attribute specifier list} is a sequence of one or more attribute
2625 specifiers, not separated by any other tokens.
2626
2627 In GNU C, an attribute specifier list may appear after the colon following a
2628 label, other than a @code{case} or @code{default} label. The only
2629 attribute it makes sense to use after a label is @code{unused}. This
2630 feature is intended for code generated by programs which contains labels
2631 that may be unused but which is compiled with @option{-Wall}. It would
2632 not normally be appropriate to use in it human-written code, though it
2633 could be useful in cases where the code that jumps to the label is
2634 contained within an @code{#ifdef} conditional. GNU C++ does not permit
2635 such placement of attribute lists, as it is permissible for a
2636 declaration, which could begin with an attribute list, to be labelled in
2637 C++. Declarations cannot be labelled in C90 or C99, so the ambiguity
2638 does not arise there.
2639
2640 An attribute specifier list may appear as part of a @code{struct},
2641 @code{union} or @code{enum} specifier. It may go either immediately
2642 after the @code{struct}, @code{union} or @code{enum} keyword, or after
2643 the closing brace. The former syntax is preferred.
2644 Where attribute specifiers follow the closing brace, they are considered
2645 to relate to the structure, union or enumerated type defined, not to any
2646 enclosing declaration the type specifier appears in, and the type
2647 defined is not complete until after the attribute specifiers.
2648 @c Otherwise, there would be the following problems: a shift/reduce
2649 @c conflict between attributes binding the struct/union/enum and
2650 @c binding to the list of specifiers/qualifiers; and "aligned"
2651 @c attributes could use sizeof for the structure, but the size could be
2652 @c changed later by "packed" attributes.
2653
2654 Otherwise, an attribute specifier appears as part of a declaration,
2655 counting declarations of unnamed parameters and type names, and relates
2656 to that declaration (which may be nested in another declaration, for
2657 example in the case of a parameter declaration), or to a particular declarator
2658 within a declaration. Where an
2659 attribute specifier is applied to a parameter declared as a function or
2660 an array, it should apply to the function or array rather than the
2661 pointer to which the parameter is implicitly converted, but this is not
2662 yet correctly implemented.
2663
2664 Any list of specifiers and qualifiers at the start of a declaration may
2665 contain attribute specifiers, whether or not such a list may in that
2666 context contain storage class specifiers. (Some attributes, however,
2667 are essentially in the nature of storage class specifiers, and only make
2668 sense where storage class specifiers may be used; for example,
2669 @code{section}.) There is one necessary limitation to this syntax: the
2670 first old-style parameter declaration in a function definition cannot
2671 begin with an attribute specifier, because such an attribute applies to
2672 the function instead by syntax described below (which, however, is not
2673 yet implemented in this case). In some other cases, attribute
2674 specifiers are permitted by this grammar but not yet supported by the
2675 compiler. All attribute specifiers in this place relate to the
2676 declaration as a whole. In the obsolescent usage where a type of
2677 @code{int} is implied by the absence of type specifiers, such a list of
2678 specifiers and qualifiers may be an attribute specifier list with no
2679 other specifiers or qualifiers.
2680
2681 At present, the first parameter in a function prototype must have some
2682 type specifier which is not an attribute specifier; this resolves an
2683 ambiguity in the interpretation of @code{void f(int
2684 (__attribute__((foo)) x))}, but is subject to change. At present, if
2685 the parentheses of a function declarator contain only attributes then
2686 those attributes are ignored, rather than yielding an error or warning
2687 or implying a single parameter of type int, but this is subject to
2688 change.
2689
2690 An attribute specifier list may appear immediately before a declarator
2691 (other than the first) in a comma-separated list of declarators in a
2692 declaration of more than one identifier using a single list of
2693 specifiers and qualifiers. Such attribute specifiers apply
2694 only to the identifier before whose declarator they appear. For
2695 example, in
2696
2697 @smallexample
2698 __attribute__((noreturn)) void d0 (void),
2699 __attribute__((format(printf, 1, 2))) d1 (const char *, ...),
2700 d2 (void)
2701 @end smallexample
2702
2703 @noindent
2704 the @code{noreturn} attribute applies to all the functions
2705 declared; the @code{format} attribute only applies to @code{d1}.
2706
2707 An attribute specifier list may appear immediately before the comma,
2708 @code{=} or semicolon terminating the declaration of an identifier other
2709 than a function definition. At present, such attribute specifiers apply
2710 to the declared object or function, but in future they may attach to the
2711 outermost adjacent declarator. In simple cases there is no difference,
2712 but, for example, in
2713
2714 @smallexample
2715 void (****f)(void) __attribute__((noreturn));
2716 @end smallexample
2717
2718 @noindent
2719 at present the @code{noreturn} attribute applies to @code{f}, which
2720 causes a warning since @code{f} is not a function, but in future it may
2721 apply to the function @code{****f}. The precise semantics of what
2722 attributes in such cases will apply to are not yet specified. Where an
2723 assembler name for an object or function is specified (@pxref{Asm
2724 Labels}), at present the attribute must follow the @code{asm}
2725 specification; in future, attributes before the @code{asm} specification
2726 may apply to the adjacent declarator, and those after it to the declared
2727 object or function.
2728
2729 An attribute specifier list may, in future, be permitted to appear after
2730 the declarator in a function definition (before any old-style parameter
2731 declarations or the function body).
2732
2733 Attribute specifiers may be mixed with type qualifiers appearing inside
2734 the @code{[]} of a parameter array declarator, in the C99 construct by
2735 which such qualifiers are applied to the pointer to which the array is
2736 implicitly converted. Such attribute specifiers apply to the pointer,
2737 not to the array, but at present this is not implemented and they are
2738 ignored.
2739
2740 An attribute specifier list may appear at the start of a nested
2741 declarator. At present, there are some limitations in this usage: the
2742 attributes correctly apply to the declarator, but for most individual
2743 attributes the semantics this implies are not implemented.
2744 When attribute specifiers follow the @code{*} of a pointer
2745 declarator, they may be mixed with any type qualifiers present.
2746 The following describes the formal semantics of this syntax. It will make the
2747 most sense if you are familiar with the formal specification of
2748 declarators in the ISO C standard.
2749
2750 Consider (as in C99 subclause 6.7.5 paragraph 4) a declaration @code{T
2751 D1}, where @code{T} contains declaration specifiers that specify a type
2752 @var{Type} (such as @code{int}) and @code{D1} is a declarator that
2753 contains an identifier @var{ident}. The type specified for @var{ident}
2754 for derived declarators whose type does not include an attribute
2755 specifier is as in the ISO C standard.
2756
2757 If @code{D1} has the form @code{( @var{attribute-specifier-list} D )},
2758 and the declaration @code{T D} specifies the type
2759 ``@var{derived-declarator-type-list} @var{Type}'' for @var{ident}, then
2760 @code{T D1} specifies the type ``@var{derived-declarator-type-list}
2761 @var{attribute-specifier-list} @var{Type}'' for @var{ident}.
2762
2763 If @code{D1} has the form @code{*
2764 @var{type-qualifier-and-attribute-specifier-list} D}, and the
2765 declaration @code{T D} specifies the type
2766 ``@var{derived-declarator-type-list} @var{Type}'' for @var{ident}, then
2767 @code{T D1} specifies the type ``@var{derived-declarator-type-list}
2768 @var{type-qualifier-and-attribute-specifier-list} @var{Type}'' for
2769 @var{ident}.
2770
2771 For example,
2772
2773 @smallexample
2774 void (__attribute__((noreturn)) ****f) (void);
2775 @end smallexample
2776
2777 @noindent
2778 specifies the type ``pointer to pointer to pointer to pointer to
2779 non-returning function returning @code{void}''. As another example,
2780
2781 @smallexample
2782 char *__attribute__((aligned(8))) *f;
2783 @end smallexample
2784
2785 @noindent
2786 specifies the type ``pointer to 8-byte-aligned pointer to @code{char}''.
2787 Note again that this does not work with most attributes; for example,
2788 the usage of @samp{aligned} and @samp{noreturn} attributes given above
2789 is not yet supported.
2790
2791 For compatibility with existing code written for compiler versions that
2792 did not implement attributes on nested declarators, some laxity is
2793 allowed in the placing of attributes. If an attribute that only applies
2794 to types is applied to a declaration, it will be treated as applying to
2795 the type of that declaration. If an attribute that only applies to
2796 declarations is applied to the type of a declaration, it will be treated
2797 as applying to that declaration; and, for compatibility with code
2798 placing the attributes immediately before the identifier declared, such
2799 an attribute applied to a function return type will be treated as
2800 applying to the function type, and such an attribute applied to an array
2801 element type will be treated as applying to the array type. If an
2802 attribute that only applies to function types is applied to a
2803 pointer-to-function type, it will be treated as applying to the pointer
2804 target type; if such an attribute is applied to a function return type
2805 that is not a pointer-to-function type, it will be treated as applying
2806 to the function type.
2807
2808 @node Function Prototypes
2809 @section Prototypes and Old-Style Function Definitions
2810 @cindex function prototype declarations
2811 @cindex old-style function definitions
2812 @cindex promotion of formal parameters
2813
2814 GNU C extends ISO C to allow a function prototype to override a later
2815 old-style non-prototype definition. Consider the following example:
2816
2817 @smallexample
2818 /* @r{Use prototypes unless the compiler is old-fashioned.} */
2819 #ifdef __STDC__
2820 #define P(x) x
2821 #else
2822 #define P(x) ()
2823 #endif
2824
2825 /* @r{Prototype function declaration.} */
2826 int isroot P((uid_t));
2827
2828 /* @r{Old-style function definition.} */
2829 int
2830 isroot (x) /* @r{??? lossage here ???} */
2831 uid_t x;
2832 @{
2833 return x == 0;
2834 @}
2835 @end smallexample
2836
2837 Suppose the type @code{uid_t} happens to be @code{short}. ISO C does
2838 not allow this example, because subword arguments in old-style
2839 non-prototype definitions are promoted. Therefore in this example the
2840 function definition's argument is really an @code{int}, which does not
2841 match the prototype argument type of @code{short}.
2842
2843 This restriction of ISO C makes it hard to write code that is portable
2844 to traditional C compilers, because the programmer does not know
2845 whether the @code{uid_t} type is @code{short}, @code{int}, or
2846 @code{long}. Therefore, in cases like these GNU C allows a prototype
2847 to override a later old-style definition. More precisely, in GNU C, a
2848 function prototype argument type overrides the argument type specified
2849 by a later old-style definition if the former type is the same as the
2850 latter type before promotion. Thus in GNU C the above example is
2851 equivalent to the following:
2852
2853 @smallexample
2854 int isroot (uid_t);
2855
2856 int
2857 isroot (uid_t x)
2858 @{
2859 return x == 0;
2860 @}
2861 @end smallexample
2862
2863 @noindent
2864 GNU C++ does not support old-style function definitions, so this
2865 extension is irrelevant.
2866
2867 @node C++ Comments
2868 @section C++ Style Comments
2869 @cindex //
2870 @cindex C++ comments
2871 @cindex comments, C++ style
2872
2873 In GNU C, you may use C++ style comments, which start with @samp{//} and
2874 continue until the end of the line. Many other C implementations allow
2875 such comments, and they are included in the 1999 C standard. However,
2876 C++ style comments are not recognized if you specify an @option{-std}
2877 option specifying a version of ISO C before C99, or @option{-ansi}
2878 (equivalent to @option{-std=c89}).
2879
2880 @node Dollar Signs
2881 @section Dollar Signs in Identifier Names
2882 @cindex $
2883 @cindex dollar signs in identifier names
2884 @cindex identifier names, dollar signs in
2885
2886 In GNU C, you may normally use dollar signs in identifier names.
2887 This is because many traditional C implementations allow such identifiers.
2888 However, dollar signs in identifiers are not supported on a few target
2889 machines, typically because the target assembler does not allow them.
2890
2891 @node Character Escapes
2892 @section The Character @key{ESC} in Constants
2893
2894 You can use the sequence @samp{\e} in a string or character constant to
2895 stand for the ASCII character @key{ESC}.
2896
2897 @node Alignment
2898 @section Inquiring on Alignment of Types or Variables
2899 @cindex alignment
2900 @cindex type alignment
2901 @cindex variable alignment
2902
2903 The keyword @code{__alignof__} allows you to inquire about how an object
2904 is aligned, or the minimum alignment usually required by a type. Its
2905 syntax is just like @code{sizeof}.
2906
2907 For example, if the target machine requires a @code{double} value to be
2908 aligned on an 8-byte boundary, then @code{__alignof__ (double)} is 8.
2909 This is true on many RISC machines. On more traditional machine
2910 designs, @code{__alignof__ (double)} is 4 or even 2.
2911
2912 Some machines never actually require alignment; they allow reference to any
2913 data type even at an odd address. For these machines, @code{__alignof__}
2914 reports the @emph{recommended} alignment of a type.
2915
2916 If the operand of @code{__alignof__} is an lvalue rather than a type,
2917 its value is the required alignment for its type, taking into account
2918 any minimum alignment specified with GCC's @code{__attribute__}
2919 extension (@pxref{Variable Attributes}). For example, after this
2920 declaration:
2921
2922 @smallexample
2923 struct foo @{ int x; char y; @} foo1;
2924 @end smallexample
2925
2926 @noindent
2927 the value of @code{__alignof__ (foo1.y)} is 1, even though its actual
2928 alignment is probably 2 or 4, the same as @code{__alignof__ (int)}.
2929
2930 It is an error to ask for the alignment of an incomplete type.
2931
2932 @node Variable Attributes
2933 @section Specifying Attributes of Variables
2934 @cindex attribute of variables
2935 @cindex variable attributes
2936
2937 The keyword @code{__attribute__} allows you to specify special
2938 attributes of variables or structure fields. This keyword is followed
2939 by an attribute specification inside double parentheses. Some
2940 attributes are currently defined generically for variables.
2941 Other attributes are defined for variables on particular target
2942 systems. Other attributes are available for functions
2943 (@pxref{Function Attributes}) and for types (@pxref{Type Attributes}).
2944 Other front ends might define more attributes
2945 (@pxref{C++ Extensions,,Extensions to the C++ Language}).
2946
2947 You may also specify attributes with @samp{__} preceding and following
2948 each keyword. This allows you to use them in header files without
2949 being concerned about a possible macro of the same name. For example,
2950 you may use @code{__aligned__} instead of @code{aligned}.
2951
2952 @xref{Attribute Syntax}, for details of the exact syntax for using
2953 attributes.
2954
2955 @table @code
2956 @cindex @code{aligned} attribute
2957 @item aligned (@var{alignment})
2958 This attribute specifies a minimum alignment for the variable or
2959 structure field, measured in bytes. For example, the declaration:
2960
2961 @smallexample
2962 int x __attribute__ ((aligned (16))) = 0;
2963 @end smallexample
2964
2965 @noindent
2966 causes the compiler to allocate the global variable @code{x} on a
2967 16-byte boundary. On a 68040, this could be used in conjunction with
2968 an @code{asm} expression to access the @code{move16} instruction which
2969 requires 16-byte aligned operands.
2970
2971 You can also specify the alignment of structure fields. For example, to
2972 create a double-word aligned @code{int} pair, you could write:
2973
2974 @smallexample
2975 struct foo @{ int x[2] __attribute__ ((aligned (8))); @};
2976 @end smallexample
2977
2978 @noindent
2979 This is an alternative to creating a union with a @code{double} member
2980 that forces the union to be double-word aligned.
2981
2982 As in the preceding examples, you can explicitly specify the alignment
2983 (in bytes) that you wish the compiler to use for a given variable or
2984 structure field. Alternatively, you can leave out the alignment factor
2985 and just ask the compiler to align a variable or field to the maximum
2986 useful alignment for the target machine you are compiling for. For
2987 example, you could write:
2988
2989 @smallexample
2990 short array[3] __attribute__ ((aligned));
2991 @end smallexample
2992
2993 Whenever you leave out the alignment factor in an @code{aligned} attribute
2994 specification, the compiler automatically sets the alignment for the declared
2995 variable or field to the largest alignment which is ever used for any data
2996 type on the target machine you are compiling for. Doing this can often make
2997 copy operations more efficient, because the compiler can use whatever
2998 instructions copy the biggest chunks of memory when performing copies to
2999 or from the variables or fields that you have aligned this way.
3000
3001 The @code{aligned} attribute can only increase the alignment; but you
3002 can decrease it by specifying @code{packed} as well. See below.
3003
3004 Note that the effectiveness of @code{aligned} attributes may be limited
3005 by inherent limitations in your linker. On many systems, the linker is
3006 only able to arrange for variables to be aligned up to a certain maximum
3007 alignment. (For some linkers, the maximum supported alignment may
3008 be very very small.) If your linker is only able to align variables
3009 up to a maximum of 8 byte alignment, then specifying @code{aligned(16)}
3010 in an @code{__attribute__} will still only provide you with 8 byte
3011 alignment. See your linker documentation for further information.
3012
3013 @item cleanup (@var{cleanup_function})
3014 @cindex @code{cleanup} attribute
3015 The @code{cleanup} attribute runs a function when the variable goes
3016 out of scope. This attribute can only be applied to auto function
3017 scope variables; it may not be applied to parameters or variables
3018 with static storage duration. The function must take one parameter,
3019 a pointer to a type compatible with the variable. The return value
3020 of the function (if any) is ignored.
3021
3022 If @option{-fexceptions} is enabled, then @var{cleanup_function}
3023 will be run during the stack unwinding that happens during the
3024 processing of the exception. Note that the @code{cleanup} attribute
3025 does not allow the exception to be caught, only to perform an action.
3026 It is undefined what happens if @var{cleanup_function} does not
3027 return normally.
3028
3029 @item common
3030 @itemx nocommon
3031 @cindex @code{common} attribute
3032 @cindex @code{nocommon} attribute
3033 @opindex fcommon
3034 @opindex fno-common
3035 The @code{common} attribute requests GCC to place a variable in
3036 ``common'' storage. The @code{nocommon} attribute requests the
3037 opposite---to allocate space for it directly.
3038
3039 These attributes override the default chosen by the
3040 @option{-fno-common} and @option{-fcommon} flags respectively.
3041
3042 @item deprecated
3043 @cindex @code{deprecated} attribute
3044 The @code{deprecated} attribute results in a warning if the variable
3045 is used anywhere in the source file. This is useful when identifying
3046 variables that are expected to be removed in a future version of a
3047 program. The warning also includes the location of the declaration
3048 of the deprecated variable, to enable users to easily find further
3049 information about why the variable is deprecated, or what they should
3050 do instead. Note that the warning only occurs for uses:
3051
3052 @smallexample
3053 extern int old_var __attribute__ ((deprecated));
3054 extern int old_var;
3055 int new_fn () @{ return old_var; @}
3056 @end smallexample
3057
3058 results in a warning on line 3 but not line 2.
3059
3060 The @code{deprecated} attribute can also be used for functions and
3061 types (@pxref{Function Attributes}, @pxref{Type Attributes}.)
3062
3063 @item mode (@var{mode})
3064 @cindex @code{mode} attribute
3065 This attribute specifies the data type for the declaration---whichever
3066 type corresponds to the mode @var{mode}. This in effect lets you
3067 request an integer or floating point type according to its width.
3068
3069 You may also specify a mode of @samp{byte} or @samp{__byte__} to
3070 indicate the mode corresponding to a one-byte integer, @samp{word} or
3071 @samp{__word__} for the mode of a one-word integer, and @samp{pointer}
3072 or @samp{__pointer__} for the mode used to represent pointers.
3073
3074 @item packed
3075 @cindex @code{packed} attribute
3076 The @code{packed} attribute specifies that a variable or structure field
3077 should have the smallest possible alignment---one byte for a variable,
3078 and one bit for a field, unless you specify a larger value with the
3079 @code{aligned} attribute.
3080
3081 Here is a structure in which the field @code{x} is packed, so that it
3082 immediately follows @code{a}:
3083
3084 @smallexample
3085 struct foo
3086 @{
3087 char a;
3088 int x[2] __attribute__ ((packed));
3089 @};
3090 @end smallexample
3091
3092 @item section ("@var{section-name}")
3093 @cindex @code{section} variable attribute
3094 Normally, the compiler places the objects it generates in sections like
3095 @code{data} and @code{bss}. Sometimes, however, you need additional sections,
3096 or you need certain particular variables to appear in special sections,
3097 for example to map to special hardware. The @code{section}
3098 attribute specifies that a variable (or function) lives in a particular
3099 section. For example, this small program uses several specific section names:
3100
3101 @smallexample
3102 struct duart a __attribute__ ((section ("DUART_A"))) = @{ 0 @};
3103 struct duart b __attribute__ ((section ("DUART_B"))) = @{ 0 @};
3104 char stack[10000] __attribute__ ((section ("STACK"))) = @{ 0 @};
3105 int init_data __attribute__ ((section ("INITDATA"))) = 0;
3106
3107 main()
3108 @{
3109 /* @r{Initialize stack pointer} */
3110 init_sp (stack + sizeof (stack));
3111
3112 /* @r{Initialize initialized data} */
3113 memcpy (&init_data, &data, &edata - &data);
3114
3115 /* @r{Turn on the serial ports} */
3116 init_duart (&a);
3117 init_duart (&b);
3118 @}
3119 @end smallexample
3120
3121 @noindent
3122 Use the @code{section} attribute with an @emph{initialized} definition
3123 of a @emph{global} variable, as shown in the example. GCC issues
3124 a warning and otherwise ignores the @code{section} attribute in
3125 uninitialized variable declarations.
3126
3127 You may only use the @code{section} attribute with a fully initialized
3128 global definition because of the way linkers work. The linker requires
3129 each object be defined once, with the exception that uninitialized
3130 variables tentatively go in the @code{common} (or @code{bss}) section
3131 and can be multiply ``defined''. You can force a variable to be
3132 initialized with the @option{-fno-common} flag or the @code{nocommon}
3133 attribute.
3134
3135 Some file formats do not support arbitrary sections so the @code{section}
3136 attribute is not available on all platforms.
3137 If you need to map the entire contents of a module to a particular
3138 section, consider using the facilities of the linker instead.
3139
3140 @item shared
3141 @cindex @code{shared} variable attribute
3142 On Microsoft Windows, in addition to putting variable definitions in a named
3143 section, the section can also be shared among all running copies of an
3144 executable or DLL@. For example, this small program defines shared data
3145 by putting it in a named section @code{shared} and marking the section
3146 shareable:
3147
3148 @smallexample
3149 int foo __attribute__((section ("shared"), shared)) = 0;
3150
3151 int
3152 main()
3153 @{
3154 /* @r{Read and write foo. All running
3155 copies see the same value.} */
3156 return 0;
3157 @}
3158 @end smallexample
3159
3160 @noindent
3161 You may only use the @code{shared} attribute along with @code{section}
3162 attribute with a fully initialized global definition because of the way
3163 linkers work. See @code{section} attribute for more information.
3164
3165 The @code{shared} attribute is only available on Microsoft Windows@.
3166
3167 @item tls_model ("@var{tls_model}")
3168 @cindex @code{tls_model} attribute
3169 The @code{tls_model} attribute sets thread-local storage model
3170 (@pxref{Thread-Local}) of a particular @code{__thread} variable,
3171 overriding @option{-ftls-model=} command line switch on a per-variable
3172 basis.
3173 The @var{tls_model} argument should be one of @code{global-dynamic},
3174 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
3175
3176 Not all targets support this attribute.
3177
3178 @item unused
3179 This attribute, attached to a variable, means that the variable is meant
3180 to be possibly unused. GCC will not produce a warning for this
3181 variable.
3182
3183 @item used
3184 This attribute, attached to a variable, means that the variable must be
3185 emitted even if it appears that the variable is not referenced.
3186
3187 @item vector_size (@var{bytes})
3188 This attribute specifies the vector size for the variable, measured in
3189 bytes. For example, the declaration:
3190
3191 @smallexample
3192 int foo __attribute__ ((vector_size (16)));
3193 @end smallexample
3194
3195 @noindent
3196 causes the compiler to set the mode for @code{foo}, to be 16 bytes,
3197 divided into @code{int} sized units. Assuming a 32-bit int (a vector of
3198 4 units of 4 bytes), the corresponding mode of @code{foo} will be V4SI@.
3199
3200 This attribute is only applicable to integral and float scalars,
3201 although arrays, pointers, and function return values are allowed in
3202 conjunction with this construct.
3203
3204 Aggregates with this attribute are invalid, even if they are of the same
3205 size as a corresponding scalar. For example, the declaration:
3206
3207 @smallexample
3208 struct S @{ int a; @};
3209 struct S __attribute__ ((vector_size (16))) foo;
3210 @end smallexample
3211
3212 @noindent
3213 is invalid even if the size of the structure is the same as the size of
3214 the @code{int}.
3215
3216 @item selectany
3217 The @code{selectany} attribute causes an initialized global variable to
3218 have link-once semantics. When multiple definitions of the variable are
3219 encountered by the linker, the first is selected and the remainder are
3220 discarded. Following usage by the Microsoft compiler, the linker is told
3221 @emph{not} to warn about size or content differences of the multiple
3222 definitions.
3223
3224 Although the primary usage of this attribute is for POD types, the
3225 attribute can also be applied to global C++ objects that are initialized
3226 by a constructor. In this case, the static initialization and destruction
3227 code for the object is emitted in each translation defining the object,
3228 but the calls to the constructor and destructor are protected by a
3229 link-once guard variable.
3230
3231 The @code{selectany} attribute is only available on Microsoft Windows
3232 targets. You can use @code{__declspec (selectany)} as a synonym for
3233 @code{__attribute__ ((selectany))} for compatibility with other
3234 compilers.
3235
3236 @item weak
3237 The @code{weak} attribute is described in @xref{Function Attributes}.
3238
3239 @item dllimport
3240 The @code{dllimport} attribute is described in @xref{Function Attributes}.
3241
3242 @item dllexport
3243 The @code{dllexport} attribute is described in @xref{Function Attributes}.
3244
3245 @end table
3246
3247 @subsection M32R/D Variable Attributes
3248
3249 One attribute is currently defined for the M32R/D@.
3250
3251 @table @code
3252 @item model (@var{model-name})
3253 @cindex variable addressability on the M32R/D
3254 Use this attribute on the M32R/D to set the addressability of an object.
3255 The identifier @var{model-name} is one of @code{small}, @code{medium},
3256 or @code{large}, representing each of the code models.
3257
3258 Small model objects live in the lower 16MB of memory (so that their
3259 addresses can be loaded with the @code{ld24} instruction).
3260
3261 Medium and large model objects may live anywhere in the 32-bit address space
3262 (the compiler will generate @code{seth/add3} instructions to load their
3263 addresses).
3264 @end table
3265
3266 @anchor{i386 Variable Attributes}
3267 @subsection i386 Variable Attributes
3268
3269 Two attributes are currently defined for i386 configurations:
3270 @code{ms_struct} and @code{gcc_struct}
3271
3272 @table @code
3273 @item ms_struct
3274 @itemx gcc_struct
3275 @cindex @code{ms_struct} attribute
3276 @cindex @code{gcc_struct} attribute
3277
3278 If @code{packed} is used on a structure, or if bit-fields are used
3279 it may be that the Microsoft ABI packs them differently
3280 than GCC would normally pack them. Particularly when moving packed
3281 data between functions compiled with GCC and the native Microsoft compiler
3282 (either via function call or as data in a file), it may be necessary to access
3283 either format.
3284
3285 Currently @option{-m[no-]ms-bitfields} is provided for the Microsoft Windows X86
3286 compilers to match the native Microsoft compiler.
3287
3288 The Microsoft structure layout algorithm is fairly simple with the exception
3289 of the bitfield packing:
3290
3291 The padding and alignment of members of structures and whether a bit field
3292 can straddle a storage-unit boundary
3293
3294 @enumerate
3295 @item Structure members are stored sequentially in the order in which they are
3296 declared: the first member has the lowest memory address and the last member
3297 the highest.
3298
3299 @item Every data object has an alignment-requirement. The alignment-requirement
3300 for all data except structures, unions, and arrays is either the size of the
3301 object or the current packing size (specified with either the aligned attribute
3302 or the pack pragma), whichever is less. For structures, unions, and arrays,
3303 the alignment-requirement is the largest alignment-requirement of its members.
3304 Every object is allocated an offset so that:
3305
3306 offset % alignment-requirement == 0
3307
3308 @item Adjacent bit fields are packed into the same 1-, 2-, or 4-byte allocation
3309 unit if the integral types are the same size and if the next bit field fits
3310 into the current allocation unit without crossing the boundary imposed by the
3311 common alignment requirements of the bit fields.
3312 @end enumerate
3313
3314 Handling of zero-length bitfields:
3315
3316 MSVC interprets zero-length bitfields in the following ways:
3317
3318 @enumerate
3319 @item If a zero-length bitfield is inserted between two bitfields that would
3320 normally be coalesced, the bitfields will not be coalesced.
3321
3322 For example:
3323
3324 @smallexample
3325 struct
3326 @{
3327 unsigned long bf_1 : 12;
3328 unsigned long : 0;
3329 unsigned long bf_2 : 12;
3330 @} t1;
3331 @end smallexample
3332
3333 The size of @code{t1} would be 8 bytes with the zero-length bitfield. If the
3334 zero-length bitfield were removed, @code{t1}'s size would be 4 bytes.
3335
3336 @item If a zero-length bitfield is inserted after a bitfield, @code{foo}, and the
3337 alignment of the zero-length bitfield is greater than the member that follows it,
3338 @code{bar}, @code{bar} will be aligned as the type of the zero-length bitfield.
3339
3340 For example:
3341
3342 @smallexample
3343 struct
3344 @{
3345 char foo : 4;
3346 short : 0;
3347 char bar;
3348 @} t2;
3349
3350 struct
3351 @{
3352 char foo : 4;
3353 short : 0;
3354 double bar;
3355 @} t3;
3356 @end smallexample
3357
3358 For @code{t2}, @code{bar} will be placed at offset 2, rather than offset 1.
3359 Accordingly, the size of @code{t2} will be 4. For @code{t3}, the zero-length
3360 bitfield will not affect the alignment of @code{bar} or, as a result, the size
3361 of the structure.
3362
3363 Taking this into account, it is important to note the following:
3364
3365 @enumerate
3366 @item If a zero-length bitfield follows a normal bitfield, the type of the
3367 zero-length bitfield may affect the alignment of the structure as whole. For
3368 example, @code{t2} has a size of 4 bytes, since the zero-length bitfield follows a
3369 normal bitfield, and is of type short.
3370
3371 @item Even if a zero-length bitfield is not followed by a normal bitfield, it may
3372 still affect the alignment of the structure:
3373
3374 @smallexample
3375 struct
3376 @{
3377 char foo : 6;
3378 long : 0;
3379 @} t4;
3380 @end smallexample
3381
3382 Here, @code{t4} will take up 4 bytes.
3383 @end enumerate
3384
3385 @item Zero-length bitfields following non-bitfield members are ignored:
3386
3387 @smallexample
3388 struct
3389 @{
3390 char foo;
3391 long : 0;
3392 char bar;
3393 @} t5;
3394 @end smallexample
3395
3396 Here, @code{t5} will take up 2 bytes.
3397 @end enumerate
3398 @end table
3399
3400 @subsection PowerPC Variable Attributes
3401
3402 Three attributes currently are defined for PowerPC configurations:
3403 @code{altivec}, @code{ms_struct} and @code{gcc_struct}.
3404
3405 For full documentation of the struct attributes please see the
3406 documentation in the @xref{i386 Variable Attributes}, section.
3407
3408 For documentation of @code{altivec} attribute please see the
3409 documentation in the @xref{PowerPC Type Attributes}, section.
3410
3411 @subsection Xstormy16 Variable Attributes
3412
3413 One attribute is currently defined for xstormy16 configurations:
3414 @code{below100}
3415
3416 @table @code
3417 @item below100
3418 @cindex @code{below100} attribute
3419
3420 If a variable has the @code{below100} attribute (@code{BELOW100} is
3421 allowed also), GCC will place the variable in the first 0x100 bytes of
3422 memory and use special opcodes to access it. Such variables will be
3423 placed in either the @code{.bss_below100} section or the
3424 @code{.data_below100} section.
3425
3426 @end table
3427
3428 @node Type Attributes
3429 @section Specifying Attributes of Types
3430 @cindex attribute of types
3431 @cindex type attributes
3432
3433 The keyword @code{__attribute__} allows you to specify special
3434 attributes of @code{struct} and @code{union} types when you define
3435 such types. This keyword is followed by an attribute specification
3436 inside double parentheses. Seven attributes are currently defined for
3437 types: @code{aligned}, @code{packed}, @code{transparent_union},
3438 @code{unused}, @code{deprecated}, @code{visibility}, and
3439 @code{may_alias}. Other attributes are defined for functions
3440 (@pxref{Function Attributes}) and for variables (@pxref{Variable
3441 Attributes}).
3442
3443 You may also specify any one of these attributes with @samp{__}
3444 preceding and following its keyword. This allows you to use these
3445 attributes in header files without being concerned about a possible
3446 macro of the same name. For example, you may use @code{__aligned__}
3447 instead of @code{aligned}.
3448
3449 You may specify type attributes either in a @code{typedef} declaration
3450 or in an enum, struct or union type declaration or definition.
3451
3452 For an enum, struct or union type, you may specify attributes either
3453 between the enum, struct or union tag and the name of the type, or
3454 just past the closing curly brace of the @emph{definition}. The
3455 former syntax is preferred.
3456
3457 @xref{Attribute Syntax}, for details of the exact syntax for using
3458 attributes.
3459
3460 @table @code
3461 @cindex @code{aligned} attribute
3462 @item aligned (@var{alignment})
3463 This attribute specifies a minimum alignment (in bytes) for variables
3464 of the specified type. For example, the declarations:
3465
3466 @smallexample
3467 struct S @{ short f[3]; @} __attribute__ ((aligned (8)));
3468 typedef int more_aligned_int __attribute__ ((aligned (8)));
3469 @end smallexample
3470
3471 @noindent
3472 force the compiler to insure (as far as it can) that each variable whose
3473 type is @code{struct S} or @code{more_aligned_int} will be allocated and
3474 aligned @emph{at least} on a 8-byte boundary. On a SPARC, having all
3475 variables of type @code{struct S} aligned to 8-byte boundaries allows
3476 the compiler to use the @code{ldd} and @code{std} (doubleword load and
3477 store) instructions when copying one variable of type @code{struct S} to
3478 another, thus improving run-time efficiency.
3479
3480 Note that the alignment of any given @code{struct} or @code{union} type
3481 is required by the ISO C standard to be at least a perfect multiple of
3482 the lowest common multiple of the alignments of all of the members of
3483 the @code{struct} or @code{union} in question. This means that you @emph{can}
3484 effectively adjust the alignment of a @code{struct} or @code{union}
3485 type by attaching an @code{aligned} attribute to any one of the members
3486 of such a type, but the notation illustrated in the example above is a
3487 more obvious, intuitive, and readable way to request the compiler to
3488 adjust the alignment of an entire @code{struct} or @code{union} type.
3489
3490 As in the preceding example, you can explicitly specify the alignment
3491 (in bytes) that you wish the compiler to use for a given @code{struct}
3492 or @code{union} type. Alternatively, you can leave out the alignment factor
3493 and just ask the compiler to align a type to the maximum
3494 useful alignment for the target machine you are compiling for. For
3495 example, you could write:
3496
3497 @smallexample
3498 struct S @{ short f[3]; @} __attribute__ ((aligned));
3499 @end smallexample
3500
3501 Whenever you leave out the alignment factor in an @code{aligned}
3502 attribute specification, the compiler automatically sets the alignment
3503 for the type to the largest alignment which is ever used for any data
3504 type on the target machine you are compiling for. Doing this can often
3505 make copy operations more efficient, because the compiler can use
3506 whatever instructions copy the biggest chunks of memory when performing
3507 copies to or from the variables which have types that you have aligned
3508 this way.
3509
3510 In the example above, if the size of each @code{short} is 2 bytes, then
3511 the size of the entire @code{struct S} type is 6 bytes. The smallest
3512 power of two which is greater than or equal to that is 8, so the
3513 compiler sets the alignment for the entire @code{struct S} type to 8
3514 bytes.
3515
3516 Note that although you can ask the compiler to select a time-efficient
3517 alignment for a given type and then declare only individual stand-alone
3518 objects of that type, the compiler's ability to select a time-efficient
3519 alignment is primarily useful only when you plan to create arrays of
3520 variables having the relevant (efficiently aligned) type. If you
3521 declare or use arrays of variables of an efficiently-aligned type, then
3522 it is likely that your program will also be doing pointer arithmetic (or
3523 subscripting, which amounts to the same thing) on pointers to the
3524 relevant type, and the code that the compiler generates for these
3525 pointer arithmetic operations will often be more efficient for
3526 efficiently-aligned types than for other types.
3527
3528 The @code{aligned} attribute can only increase the alignment; but you
3529 can decrease it by specifying @code{packed} as well. See below.
3530
3531 Note that the effectiveness of @code{aligned} attributes may be limited
3532 by inherent limitations in your linker. On many systems, the linker is
3533 only able to arrange for variables to be aligned up to a certain maximum
3534 alignment. (For some linkers, the maximum supported alignment may
3535 be very very small.) If your linker is only able to align variables
3536 up to a maximum of 8 byte alignment, then specifying @code{aligned(16)}
3537 in an @code{__attribute__} will still only provide you with 8 byte
3538 alignment. See your linker documentation for further information.
3539
3540 @item packed
3541 This attribute, attached to @code{struct} or @code{union} type
3542 definition, specifies that each member (other than zero-width bitfields)
3543 of the structure or union is placed to minimize the memory required. When
3544 attached to an @code{enum} definition, it indicates that the smallest
3545 integral type should be used.
3546
3547 @opindex fshort-enums
3548 Specifying this attribute for @code{struct} and @code{union} types is
3549 equivalent to specifying the @code{packed} attribute on each of the
3550 structure or union members. Specifying the @option{-fshort-enums}
3551 flag on the line is equivalent to specifying the @code{packed}
3552 attribute on all @code{enum} definitions.
3553
3554 In the following example @code{struct my_packed_struct}'s members are
3555 packed closely together, but the internal layout of its @code{s} member
3556 is not packed---to do that, @code{struct my_unpacked_struct} would need to
3557 be packed too.
3558
3559 @smallexample
3560 struct my_unpacked_struct
3561 @{
3562 char c;
3563 int i;
3564 @};
3565
3566 struct __attribute__ ((__packed__)) my_packed_struct
3567 @{
3568 char c;
3569 int i;
3570 struct my_unpacked_struct s;
3571 @};
3572 @end smallexample
3573
3574 You may only specify this attribute on the definition of a @code{enum},
3575 @code{struct} or @code{union}, not on a @code{typedef} which does not
3576 also define the enumerated type, structure or union.
3577
3578 @item transparent_union
3579 This attribute, attached to a @code{union} type definition, indicates
3580 that any function parameter having that union type causes calls to that
3581 function to be treated in a special way.
3582
3583 First, the argument corresponding to a transparent union type can be of
3584 any type in the union; no cast is required. Also, if the union contains
3585 a pointer type, the corresponding argument can be a null pointer
3586 constant or a void pointer expression; and if the union contains a void
3587 pointer type, the corresponding argument can be any pointer expression.
3588 If the union member type is a pointer, qualifiers like @code{const} on
3589 the referenced type must be respected, just as with normal pointer
3590 conversions.
3591
3592 Second, the argument is passed to the function using the calling
3593 conventions of the first member of the transparent union, not the calling
3594 conventions of the union itself. All members of the union must have the
3595 same machine representation; this is necessary for this argument passing
3596 to work properly.
3597
3598 Transparent unions are designed for library functions that have multiple
3599 interfaces for compatibility reasons. For example, suppose the
3600 @code{wait} function must accept either a value of type @code{int *} to
3601 comply with Posix, or a value of type @code{union wait *} to comply with
3602 the 4.1BSD interface. If @code{wait}'s parameter were @code{void *},
3603 @code{wait} would accept both kinds of arguments, but it would also
3604 accept any other pointer type and this would make argument type checking
3605 less useful. Instead, @code{<sys/wait.h>} might define the interface
3606 as follows:
3607
3608 @smallexample
3609 typedef union
3610 @{
3611 int *__ip;
3612 union wait *__up;
3613 @} wait_status_ptr_t __attribute__ ((__transparent_union__));
3614
3615 pid_t wait (wait_status_ptr_t);
3616 @end smallexample
3617
3618 This interface allows either @code{int *} or @code{union wait *}
3619 arguments to be passed, using the @code{int *} calling convention.
3620 The program can call @code{wait} with arguments of either type:
3621
3622 @smallexample
3623 int w1 () @{ int w; return wait (&w); @}
3624 int w2 () @{ union wait w; return wait (&w); @}
3625 @end smallexample
3626
3627 With this interface, @code{wait}'s implementation might look like this:
3628
3629 @smallexample
3630 pid_t wait (wait_status_ptr_t p)
3631 @{
3632 return waitpid (-1, p.__ip, 0);
3633 @}
3634 @end smallexample
3635
3636 @item unused
3637 When attached to a type (including a @code{union} or a @code{struct}),
3638 this attribute means that variables of that type are meant to appear
3639 possibly unused. GCC will not produce a warning for any variables of
3640 that type, even if the variable appears to do nothing. This is often
3641 the case with lock or thread classes, which are usually defined and then
3642 not referenced, but contain constructors and destructors that have
3643 nontrivial bookkeeping functions.
3644
3645 @item deprecated
3646 The @code{deprecated} attribute results in a warning if the type
3647 is used anywhere in the source file. This is useful when identifying
3648 types that are expected to be removed in a future version of a program.
3649 If possible, the warning also includes the location of the declaration
3650 of the deprecated type, to enable users to easily find further
3651 information about why the type is deprecated, or what they should do
3652 instead. Note that the warnings only occur for uses and then only
3653 if the type is being applied to an identifier that itself is not being
3654 declared as deprecated.
3655
3656 @smallexample
3657 typedef int T1 __attribute__ ((deprecated));
3658 T1 x;
3659 typedef T1 T2;
3660 T2 y;
3661 typedef T1 T3 __attribute__ ((deprecated));
3662 T3 z __attribute__ ((deprecated));
3663 @end smallexample
3664
3665 results in a warning on line 2 and 3 but not lines 4, 5, or 6. No
3666 warning is issued for line 4 because T2 is not explicitly
3667 deprecated. Line 5 has no warning because T3 is explicitly
3668 deprecated. Similarly for line 6.
3669
3670 The @code{deprecated} attribute can also be used for functions and
3671 variables (@pxref{Function Attributes}, @pxref{Variable Attributes}.)
3672
3673 @item may_alias
3674 Accesses to objects with types with this attribute are not subjected to
3675 type-based alias analysis, but are instead assumed to be able to alias
3676 any other type of objects, just like the @code{char} type. See
3677 @option{-fstrict-aliasing} for more information on aliasing issues.
3678
3679 Example of use:
3680
3681 @smallexample
3682 typedef short __attribute__((__may_alias__)) short_a;
3683
3684 int
3685 main (void)
3686 @{
3687 int a = 0x12345678;
3688 short_a *b = (short_a *) &a;
3689
3690 b[1] = 0;
3691
3692 if (a == 0x12345678)
3693 abort();
3694
3695 exit(0);
3696 @}
3697 @end smallexample
3698
3699 If you replaced @code{short_a} with @code{short} in the variable
3700 declaration, the above program would abort when compiled with
3701 @option{-fstrict-aliasing}, which is on by default at @option{-O2} or
3702 above in recent GCC versions.
3703
3704 @item visibility
3705 In C++, attribute visibility (@pxref{Function Attributes}) can also be
3706 applied to class, struct, union and enum types. Unlike other type
3707 attributes, the attribute must appear between the initial keyword and
3708 the name of the type; it cannot appear after the body of the type.
3709
3710 Note that the type visibility is applied to vague linkage entities
3711 associated with the class (vtable, typeinfo node, etc.). In
3712 particular, if a class is thrown as an exception in one shared object
3713 and caught in another, the class must have default visibility.
3714 Otherwise the two shared objects will be unable to use the same
3715 typeinfo node and exception handling will break.
3716
3717 @subsection ARM Type Attributes
3718
3719 On those ARM targets that support @code{dllimport} (such as Symbian
3720 OS), you can use the @code{notshared} attribute to indicate that the
3721 virtual table and other similar data for a class should not be
3722 exported from a DLL@. For example:
3723
3724 @smallexample
3725 class __declspec(notshared) C @{
3726 public:
3727 __declspec(dllimport) C();
3728 virtual void f();
3729 @}
3730
3731 __declspec(dllexport)
3732 C::C() @{@}
3733 @end smallexample
3734
3735 In this code, @code{C::C} is exported from the current DLL, but the
3736 virtual table for @code{C} is not exported. (You can use
3737 @code{__attribute__} instead of @code{__declspec} if you prefer, but
3738 most Symbian OS code uses @code{__declspec}.)
3739
3740 @anchor{i386 Type Attributes}
3741 @subsection i386 Type Attributes
3742
3743 Two attributes are currently defined for i386 configurations:
3744 @code{ms_struct} and @code{gcc_struct}
3745
3746 @item ms_struct
3747 @itemx gcc_struct
3748 @cindex @code{ms_struct}
3749 @cindex @code{gcc_struct}
3750
3751 If @code{packed} is used on a structure, or if bit-fields are used
3752 it may be that the Microsoft ABI packs them differently
3753 than GCC would normally pack them. Particularly when moving packed
3754 data between functions compiled with GCC and the native Microsoft compiler
3755 (either via function call or as data in a file), it may be necessary to access
3756 either format.
3757
3758 Currently @option{-m[no-]ms-bitfields} is provided for the Microsoft Windows X86
3759 compilers to match the native Microsoft compiler.
3760 @end table
3761
3762 To specify multiple attributes, separate them by commas within the
3763 double parentheses: for example, @samp{__attribute__ ((aligned (16),
3764 packed))}.
3765
3766 @anchor{PowerPC Type Attributes}
3767 @subsection PowerPC Type Attributes
3768
3769 Three attributes currently are defined for PowerPC configurations:
3770 @code{altivec}, @code{ms_struct} and @code{gcc_struct}.
3771
3772 For full documentation of the struct attributes please see the
3773 documentation in the @xref{i386 Type Attributes}, section.
3774
3775 The @code{altivec} attribute allows one to declare AltiVec vector data
3776 types supported by the AltiVec Programming Interface Manual. The
3777 attribute requires an argument to specify one of three vector types:
3778 @code{vector__}, @code{pixel__} (always followed by unsigned short),
3779 and @code{bool__} (always followed by unsigned).
3780
3781 @smallexample
3782 __attribute__((altivec(vector__)))
3783 __attribute__((altivec(pixel__))) unsigned short
3784 __attribute__((altivec(bool__))) unsigned
3785 @end smallexample
3786
3787 These attributes mainly are intended to support the @code{__vector},
3788 @code{__pixel}, and @code{__bool} AltiVec keywords.
3789
3790 @node Inline
3791 @section An Inline Function is As Fast As a Macro
3792 @cindex inline functions
3793 @cindex integrating function code
3794 @cindex open coding
3795 @cindex macros, inline alternative
3796
3797 By declaring a function inline, you can direct GCC to make
3798 calls to that function faster. One way GCC can achieve this is to
3799 integrate that function's code into the code for its callers. This
3800 makes execution faster by eliminating the function-call overhead; in
3801 addition, if any of the actual argument values are constant, their
3802 known values may permit simplifications at compile time so that not
3803 all of the inline function's code needs to be included. The effect on
3804 code size is less predictable; object code may be larger or smaller
3805 with function inlining, depending on the particular case. You can
3806 also direct GCC to try to integrate all ``simple enough'' functions
3807 into their callers with the option @option{-finline-functions}.
3808
3809 GCC implements three different semantics of declaring a function
3810 inline. One is available with @option{-std=gnu89} or when @code{gnu_inline}
3811 attribute is present on all inline declarations, another when
3812 @option{-std=c99} or @option{-std=gnu99}, and the third is used when
3813 compiling C++.
3814
3815 To declare a function inline, use the @code{inline} keyword in its
3816 declaration, like this:
3817
3818 @smallexample
3819 static inline int
3820 inc (int *a)
3821 @{
3822 (*a)++;
3823 @}
3824 @end smallexample
3825
3826 If you are writing a header file to be included in ISO C89 programs, write
3827 @code{__inline__} instead of @code{inline}. @xref{Alternate Keywords}.
3828
3829 The three types of inlining behave similarly in two important cases:
3830 when the @code{inline} keyword is used on a @code{static} function,
3831 like the example above, and when a function is first declared without
3832 using the @code{inline} keyword and then is defined with
3833 @code{inline}, like this:
3834
3835 @smallexample
3836 extern int inc (int *a);
3837 inline int
3838 inc (int *a)
3839 @{
3840 (*a)++;
3841 @}
3842 @end smallexample
3843
3844 In both of these common cases, the program behaves the same as if you
3845 had not used the @code{inline} keyword, except for its speed.
3846
3847 @cindex inline functions, omission of
3848 @opindex fkeep-inline-functions
3849 When a function is both inline and @code{static}, if all calls to the
3850 function are integrated into the caller, and the function's address is
3851 never used, then the function's own assembler code is never referenced.
3852 In this case, GCC does not actually output assembler code for the
3853 function, unless you specify the option @option{-fkeep-inline-functions}.
3854 Some calls cannot be integrated for various reasons (in particular,
3855 calls that precede the function's definition cannot be integrated, and
3856 neither can recursive calls within the definition). If there is a
3857 nonintegrated call, then the function is compiled to assembler code as
3858 usual. The function must also be compiled as usual if the program
3859 refers to its address, because that can't be inlined.
3860
3861 @opindex Winline
3862 Note that certain usages in a function definition can make it unsuitable
3863 for inline substitution. Among these usages are: use of varargs, use of
3864 alloca, use of variable sized data types (@pxref{Variable Length}),
3865 use of computed goto (@pxref{Labels as Values}), use of nonlocal goto,
3866 and nested functions (@pxref{Nested Functions}). Using @option{-Winline}
3867 will warn when a function marked @code{inline} could not be substituted,
3868 and will give the reason for the failure.
3869
3870 @cindex automatic @code{inline} for C++ member fns
3871 @cindex @code{inline} automatic for C++ member fns
3872 @cindex member fns, automatically @code{inline}
3873 @cindex C++ member fns, automatically @code{inline}
3874 @opindex fno-default-inline
3875 As required by ISO C++, GCC considers member functions defined within
3876 the body of a class to be marked inline even if they are
3877 not explicitly declared with the @code{inline} keyword. You can
3878 override this with @option{-fno-default-inline}; @pxref{C++ Dialect
3879 Options,,Options Controlling C++ Dialect}.
3880
3881 GCC does not inline any functions when not optimizing unless you specify
3882 the @samp{always_inline} attribute for the function, like this:
3883
3884 @smallexample
3885 /* @r{Prototype.} */
3886 inline void foo (const char) __attribute__((always_inline));
3887 @end smallexample
3888
3889 The remainder of this section is specific to GNU C89 inlining.
3890
3891 @cindex non-static inline function
3892 When an inline function is not @code{static}, then the compiler must assume
3893 that there may be calls from other source files; since a global symbol can
3894 be defined only once in any program, the function must not be defined in
3895 the other source files, so the calls therein cannot be integrated.
3896 Therefore, a non-@code{static} inline function is always compiled on its
3897 own in the usual fashion.
3898
3899 If you specify both @code{inline} and @code{extern} in the function
3900 definition, then the definition is used only for inlining. In no case
3901 is the function compiled on its own, not even if you refer to its
3902 address explicitly. Such an address becomes an external reference, as
3903 if you had only declared the function, and had not defined it.
3904
3905 This combination of @code{inline} and @code{extern} has almost the
3906 effect of a macro. The way to use it is to put a function definition in
3907 a header file with these keywords, and put another copy of the
3908 definition (lacking @code{inline} and @code{extern}) in a library file.
3909 The definition in the header file will cause most calls to the function
3910 to be inlined. If any uses of the function remain, they will refer to
3911 the single copy in the library.
3912
3913 @node Extended Asm
3914 @section Assembler Instructions with C Expression Operands
3915 @cindex extended @code{asm}
3916 @cindex @code{asm} expressions
3917 @cindex assembler instructions
3918 @cindex registers
3919
3920 In an assembler instruction using @code{asm}, you can specify the
3921 operands of the instruction using C expressions. This means you need not
3922 guess which registers or memory locations will contain the data you want
3923 to use.
3924
3925 You must specify an assembler instruction template much like what
3926 appears in a machine description, plus an operand constraint string for
3927 each operand.
3928
3929 For example, here is how to use the 68881's @code{fsinx} instruction:
3930
3931 @smallexample
3932 asm ("fsinx %1,%0" : "=f" (result) : "f" (angle));
3933 @end smallexample
3934
3935 @noindent
3936 Here @code{angle} is the C expression for the input operand while
3937 @code{result} is that of the output operand. Each has @samp{"f"} as its
3938 operand constraint, saying that a floating point register is required.
3939 The @samp{=} in @samp{=f} indicates that the operand is an output; all
3940 output operands' constraints must use @samp{=}. The constraints use the
3941 same language used in the machine description (@pxref{Constraints}).
3942
3943 Each operand is described by an operand-constraint string followed by
3944 the C expression in parentheses. A colon separates the assembler
3945 template from the first output operand and another separates the last
3946 output operand from the first input, if any. Commas separate the
3947 operands within each group. The total number of operands is currently
3948 limited to 30; this limitation may be lifted in some future version of
3949 GCC@.
3950
3951 If there are no output operands but there are input operands, you must
3952 place two consecutive colons surrounding the place where the output
3953 operands would go.
3954
3955 As of GCC version 3.1, it is also possible to specify input and output
3956 operands using symbolic names which can be referenced within the
3957 assembler code. These names are specified inside square brackets
3958 preceding the constraint string, and can be referenced inside the
3959 assembler code using @code{%[@var{name}]} instead of a percentage sign
3960 followed by the operand number. Using named operands the above example
3961 could look like:
3962
3963 @smallexample
3964 asm ("fsinx %[angle],%[output]"
3965 : [output] "=f" (result)
3966 : [angle] "f" (angle));
3967 @end smallexample
3968
3969 @noindent
3970 Note that the symbolic operand names have no relation whatsoever to
3971 other C identifiers. You may use any name you like, even those of
3972 existing C symbols, but you must ensure that no two operands within the same
3973 assembler construct use the same symbolic name.
3974
3975 Output operand expressions must be lvalues; the compiler can check this.
3976 The input operands need not be lvalues. The compiler cannot check
3977 whether the operands have data types that are reasonable for the
3978 instruction being executed. It does not parse the assembler instruction
3979 template and does not know what it means or even whether it is valid
3980 assembler input. The extended @code{asm} feature is most often used for
3981 machine instructions the compiler itself does not know exist. If
3982 the output expression cannot be directly addressed (for example, it is a
3983 bit-field), your constraint must allow a register. In that case, GCC
3984 will use the register as the output of the @code{asm}, and then store
3985 that register into the output.
3986
3987 The ordinary output operands must be write-only; GCC will assume that
3988 the values in these operands before the instruction are dead and need
3989 not be generated. Extended asm supports input-output or read-write
3990 operands. Use the constraint character @samp{+} to indicate such an
3991 operand and list it with the output operands. You should only use
3992 read-write operands when the constraints for the operand (or the
3993 operand in which only some of the bits are to be changed) allow a
3994 register.
3995
3996 You may, as an alternative, logically split its function into two
3997 separate operands, one input operand and one write-only output
3998 operand. The connection between them is expressed by constraints
3999 which say they need to be in the same location when the instruction
4000 executes. You can use the same C expression for both operands, or
4001 different expressions. For example, here we write the (fictitious)
4002 @samp{combine} instruction with @code{bar} as its read-only source
4003 operand and @code{foo} as its read-write destination:
4004
4005 @smallexample
4006 asm ("combine %2,%0" : "=r" (foo) : "0" (foo), "g" (bar));
4007 @end smallexample
4008
4009 @noindent
4010 The constraint @samp{"0"} for operand 1 says that it must occupy the
4011 same location as operand 0. A number in constraint is allowed only in
4012 an input operand and it must refer to an output operand.
4013
4014 Only a number in the constraint can guarantee that one operand will be in
4015 the same place as another. The mere fact that @code{foo} is the value
4016 of both operands is not enough to guarantee that they will be in the
4017 same place in the generated assembler code. The following would not
4018 work reliably:
4019
4020 @smallexample
4021 asm ("combine %2,%0" : "=r" (foo) : "r" (foo), "g" (bar));
4022 @end smallexample
4023
4024 Various optimizations or reloading could cause operands 0 and 1 to be in
4025 different registers; GCC knows no reason not to do so. For example, the
4026 compiler might find a copy of the value of @code{foo} in one register and
4027 use it for operand 1, but generate the output operand 0 in a different
4028 register (copying it afterward to @code{foo}'s own address). Of course,
4029 since the register for operand 1 is not even mentioned in the assembler
4030 code, the result will not work, but GCC can't tell that.
4031
4032 As of GCC version 3.1, one may write @code{[@var{name}]} instead of
4033 the operand number for a matching constraint. For example:
4034
4035 @smallexample
4036 asm ("cmoveq %1,%2,%[result]"
4037 : [result] "=r"(result)
4038 : "r" (test), "r"(new), "[result]"(old));
4039 @end smallexample
4040
4041 Sometimes you need to make an @code{asm} operand be a specific register,
4042 but there's no matching constraint letter for that register @emph{by
4043 itself}. To force the operand into that register, use a local variable
4044 for the operand and specify the register in the variable declaration.
4045 @xref{Explicit Reg Vars}. Then for the @code{asm} operand, use any
4046 register constraint letter that matches the register:
4047
4048 @smallexample
4049 register int *p1 asm ("r0") = @dots{};
4050 register int *p2 asm ("r1") = @dots{};
4051 register int *result asm ("r0");
4052 asm ("sysint" : "=r" (result) : "0" (p1), "r" (p2));
4053 @end smallexample
4054
4055 @anchor{Example of asm with clobbered asm reg}
4056 In the above example, beware that a register that is call-clobbered by
4057 the target ABI will be overwritten by any function call in the
4058 assignment, including library calls for arithmetic operators.
4059 Assuming it is a call-clobbered register, this may happen to @code{r0}
4060 above by the assignment to @code{p2}. If you have to use such a
4061 register, use temporary variables for expressions between the register
4062 assignment and use:
4063
4064 @smallexample
4065 int t1 = @dots{};
4066 register int *p1 asm ("r0") = @dots{};
4067 register int *p2 asm ("r1") = t1;
4068 register int *result asm ("r0");
4069 asm ("sysint" : "=r" (result) : "0" (p1), "r" (p2));
4070 @end smallexample
4071
4072 Some instructions clobber specific hard registers. To describe this,
4073 write a third colon after the input operands, followed by the names of
4074 the clobbered hard registers (given as strings). Here is a realistic
4075 example for the VAX:
4076
4077 @smallexample
4078 asm volatile ("movc3 %0,%1,%2"
4079 : /* @r{no outputs} */
4080 : "g" (from), "g" (to), "g" (count)
4081 : "r0", "r1", "r2", "r3", "r4", "r5");
4082 @end smallexample
4083
4084 You may not write a clobber description in a way that overlaps with an
4085 input or output operand. For example, you may not have an operand
4086 describing a register class with one member if you mention that register
4087 in the clobber list. Variables declared to live in specific registers
4088 (@pxref{Explicit Reg Vars}), and used as asm input or output operands must
4089 have no part mentioned in the clobber description.
4090 There is no way for you to specify that an input
4091 operand is modified without also specifying it as an output
4092 operand. Note that if all the output operands you specify are for this
4093 purpose (and hence unused), you will then also need to specify
4094 @code{volatile} for the @code{asm} construct, as described below, to
4095 prevent GCC from deleting the @code{asm} statement as unused.
4096
4097 If you refer to a particular hardware register from the assembler code,
4098 you will probably have to list the register after the third colon to
4099 tell the compiler the register's value is modified. In some assemblers,
4100 the register names begin with @samp{%}; to produce one @samp{%} in the
4101 assembler code, you must write @samp{%%} in the input.
4102
4103 If your assembler instruction can alter the condition code register, add
4104 @samp{cc} to the list of clobbered registers. GCC on some machines
4105 represents the condition codes as a specific hardware register;
4106 @samp{cc} serves to name this register. On other machines, the
4107 condition code is handled differently, and specifying @samp{cc} has no
4108 effect. But it is valid no matter what the machine.
4109
4110 If your assembler instructions access memory in an unpredictable
4111 fashion, add @samp{memory} to the list of clobbered registers. This
4112 will cause GCC to not keep memory values cached in registers across the
4113 assembler instruction and not optimize stores or loads to that memory.
4114 You will also want to add the @code{volatile} keyword if the memory
4115 affected is not listed in the inputs or outputs of the @code{asm}, as
4116 the @samp{memory} clobber does not count as a side-effect of the
4117 @code{asm}. If you know how large the accessed memory is, you can add
4118 it as input or output but if this is not known, you should add
4119 @samp{memory}. As an example, if you access ten bytes of a string, you
4120 can use a memory input like:
4121
4122 @smallexample
4123 @{"m"( (@{ struct @{ char x[10]; @} *p = (void *)ptr ; *p; @}) )@}.
4124 @end smallexample
4125
4126 Note that in the following example the memory input is necessary,
4127 otherwise GCC might optimize the store to @code{x} away:
4128 @smallexample
4129 int foo ()
4130 @{
4131 int x = 42;
4132 int *y = &x;
4133 int result;
4134 asm ("magic stuff accessing an 'int' pointed to by '%1'"
4135 "=&d" (r) : "a" (y), "m" (*y));
4136 return result;
4137 @}
4138 @end smallexample
4139
4140 You can put multiple assembler instructions together in a single
4141 @code{asm} template, separated by the characters normally used in assembly
4142 code for the system. A combination that works in most places is a newline
4143 to break the line, plus a tab character to move to the instruction field
4144 (written as @samp{\n\t}). Sometimes semicolons can be used, if the
4145 assembler allows semicolons as a line-breaking character. Note that some
4146 assembler dialects use semicolons to start a comment.
4147 The input operands are guaranteed not to use any of the clobbered
4148 registers, and neither will the output operands' addresses, so you can
4149 read and write the clobbered registers as many times as you like. Here
4150 is an example of multiple instructions in a template; it assumes the
4151 subroutine @code{_foo} accepts arguments in registers 9 and 10:
4152
4153 @smallexample
4154 asm ("movl %0,r9\n\tmovl %1,r10\n\tcall _foo"
4155 : /* no outputs */
4156 : "g" (from), "g" (to)
4157 : "r9", "r10");
4158 @end smallexample
4159
4160 Unless an output operand has the @samp{&} constraint modifier, GCC
4161 may allocate it in the same register as an unrelated input operand, on
4162 the assumption the inputs are consumed before the outputs are produced.
4163 This assumption may be false if the assembler code actually consists of
4164 more than one instruction. In such a case, use @samp{&} for each output
4165 operand that may not overlap an input. @xref{Modifiers}.
4166
4167 If you want to test the condition code produced by an assembler
4168 instruction, you must include a branch and a label in the @code{asm}
4169 construct, as follows:
4170
4171 @smallexample
4172 asm ("clr %0\n\tfrob %1\n\tbeq 0f\n\tmov #1,%0\n0:"
4173 : "g" (result)
4174 : "g" (input));
4175 @end smallexample
4176
4177 @noindent
4178 This assumes your assembler supports local labels, as the GNU assembler
4179 and most Unix assemblers do.
4180
4181 Speaking of labels, jumps from one @code{asm} to another are not
4182 supported. The compiler's optimizers do not know about these jumps, and
4183 therefore they cannot take account of them when deciding how to
4184 optimize.
4185
4186 @cindex macros containing @code{asm}
4187 Usually the most convenient way to use these @code{asm} instructions is to
4188 encapsulate them in macros that look like functions. For example,
4189
4190 @smallexample
4191 #define sin(x) \
4192 (@{ double __value, __arg = (x); \
4193 asm ("fsinx %1,%0": "=f" (__value): "f" (__arg)); \
4194 __value; @})
4195 @end smallexample
4196
4197 @noindent
4198 Here the variable @code{__arg} is used to make sure that the instruction
4199 operates on a proper @code{double} value, and to accept only those
4200 arguments @code{x} which can convert automatically to a @code{double}.
4201
4202 Another way to make sure the instruction operates on the correct data
4203 type is to use a cast in the @code{asm}. This is different from using a
4204 variable @code{__arg} in that it converts more different types. For
4205 example, if the desired type were @code{int}, casting the argument to
4206 @code{int} would accept a pointer with no complaint, while assigning the
4207 argument to an @code{int} variable named @code{__arg} would warn about
4208 using a pointer unless the caller explicitly casts it.
4209
4210 If an @code{asm} has output operands, GCC assumes for optimization
4211 purposes the instruction has no side effects except to change the output
4212 operands. This does not mean instructions with a side effect cannot be
4213 used, but you must be careful, because the compiler may eliminate them
4214 if the output operands aren't used, or move them out of loops, or
4215 replace two with one if they constitute a common subexpression. Also,
4216 if your instruction does have a side effect on a variable that otherwise
4217 appears not to change, the old value of the variable may be reused later
4218 if it happens to be found in a register.
4219
4220 You can prevent an @code{asm} instruction from being deleted
4221 by writing the keyword @code{volatile} after
4222 the @code{asm}. For example:
4223
4224 @smallexample
4225 #define get_and_set_priority(new) \
4226 (@{ int __old; \
4227 asm volatile ("get_and_set_priority %0, %1" \
4228 : "=g" (__old) : "g" (new)); \
4229 __old; @})
4230 @end smallexample
4231
4232 @noindent
4233 The @code{volatile} keyword indicates that the instruction has
4234 important side-effects. GCC will not delete a volatile @code{asm} if
4235 it is reachable. (The instruction can still be deleted if GCC can
4236 prove that control-flow will never reach the location of the
4237 instruction.) Note that even a volatile @code{asm} instruction
4238 can be moved relative to other code, including across jump
4239 instructions. For example, on many targets there is a system
4240 register which can be set to control the rounding mode of
4241 floating point operations. You might try
4242 setting it with a volatile @code{asm}, like this PowerPC example:
4243
4244 @smallexample
4245 asm volatile("mtfsf 255,%0" : : "f" (fpenv));
4246 sum = x + y;
4247 @end smallexample
4248
4249 @noindent
4250 This will not work reliably, as the compiler may move the addition back
4251 before the volatile @code{asm}. To make it work you need to add an
4252 artificial dependency to the @code{asm} referencing a variable in the code
4253 you don't want moved, for example:
4254
4255 @smallexample
4256 asm volatile ("mtfsf 255,%1" : "=X"(sum): "f"(fpenv));
4257 sum = x + y;
4258 @end smallexample
4259
4260 Similarly, you can't expect a
4261 sequence of volatile @code{asm} instructions to remain perfectly
4262 consecutive. If you want consecutive output, use a single @code{asm}.
4263 Also, GCC will perform some optimizations across a volatile @code{asm}
4264 instruction; GCC does not ``forget everything'' when it encounters
4265 a volatile @code{asm} instruction the way some other compilers do.
4266
4267 An @code{asm} instruction without any output operands will be treated
4268 identically to a volatile @code{asm} instruction.
4269
4270 It is a natural idea to look for a way to give access to the condition
4271 code left by the assembler instruction. However, when we attempted to
4272 implement this, we found no way to make it work reliably. The problem
4273 is that output operands might need reloading, which would result in
4274 additional following ``store'' instructions. On most machines, these
4275 instructions would alter the condition code before there was time to
4276 test it. This problem doesn't arise for ordinary ``test'' and
4277 ``compare'' instructions because they don't have any output operands.
4278
4279 For reasons similar to those described above, it is not possible to give
4280 an assembler instruction access to the condition code left by previous
4281 instructions.
4282
4283 If you are writing a header file that should be includable in ISO C
4284 programs, write @code{__asm__} instead of @code{asm}. @xref{Alternate
4285 Keywords}.
4286
4287 @subsection Size of an @code{asm}
4288
4289 Some targets require that GCC track the size of each instruction used in
4290 order to generate correct code. Because the final length of an
4291 @code{asm} is only known by the assembler, GCC must make an estimate as
4292 to how big it will be. The estimate is formed by counting the number of
4293 statements in the pattern of the @code{asm} and multiplying that by the
4294 length of the longest instruction on that processor. Statements in the
4295 @code{asm} are identified by newline characters and whatever statement
4296 separator characters are supported by the assembler; on most processors
4297 this is the `@code{;}' character.
4298
4299 Normally, GCC's estimate is perfectly adequate to ensure that correct
4300 code is generated, but it is possible to confuse the compiler if you use
4301 pseudo instructions or assembler macros that expand into multiple real
4302 instructions or if you use assembler directives that expand to more
4303 space in the object file than would be needed for a single instruction.
4304 If this happens then the assembler will produce a diagnostic saying that
4305 a label is unreachable.
4306
4307 @subsection i386 floating point asm operands
4308
4309 There are several rules on the usage of stack-like regs in
4310 asm_operands insns. These rules apply only to the operands that are
4311 stack-like regs:
4312
4313 @enumerate
4314 @item
4315 Given a set of input regs that die in an asm_operands, it is
4316 necessary to know which are implicitly popped by the asm, and
4317 which must be explicitly popped by gcc.
4318
4319 An input reg that is implicitly popped by the asm must be
4320 explicitly clobbered, unless it is constrained to match an
4321 output operand.
4322
4323 @item
4324 For any input reg that is implicitly popped by an asm, it is
4325 necessary to know how to adjust the stack to compensate for the pop.
4326 If any non-popped input is closer to the top of the reg-stack than
4327 the implicitly popped reg, it would not be possible to know what the
4328 stack looked like---it's not clear how the rest of the stack ``slides
4329 up''.
4330
4331 All implicitly popped input regs must be closer to the top of
4332 the reg-stack than any input that is not implicitly popped.
4333
4334 It is possible that if an input dies in an insn, reload might
4335 use the input reg for an output reload. Consider this example:
4336
4337 @smallexample
4338 asm ("foo" : "=t" (a) : "f" (b));
4339 @end smallexample
4340
4341 This asm says that input B is not popped by the asm, and that
4342 the asm pushes a result onto the reg-stack, i.e., the stack is one
4343 deeper after the asm than it was before. But, it is possible that
4344 reload will think that it can use the same reg for both the input and
4345 the output, if input B dies in this insn.
4346
4347 If any input operand uses the @code{f} constraint, all output reg
4348 constraints must use the @code{&} earlyclobber.
4349
4350 The asm above would be written as
4351
4352 @smallexample
4353 asm ("foo" : "=&t" (a) : "f" (b));
4354 @end smallexample
4355
4356 @item
4357 Some operands need to be in particular places on the stack. All
4358 output operands fall in this category---there is no other way to
4359 know which regs the outputs appear in unless the user indicates
4360 this in the constraints.
4361
4362 Output operands must specifically indicate which reg an output
4363 appears in after an asm. @code{=f} is not allowed: the operand
4364 constraints must select a class with a single reg.
4365
4366 @item
4367 Output operands may not be ``inserted'' between existing stack regs.
4368 Since no 387 opcode uses a read/write operand, all output operands
4369 are dead before the asm_operands, and are pushed by the asm_operands.
4370 It makes no sense to push anywhere but the top of the reg-stack.
4371
4372 Output operands must start at the top of the reg-stack: output
4373 operands may not ``skip'' a reg.
4374
4375 @item
4376 Some asm statements may need extra stack space for internal
4377 calculations. This can be guaranteed by clobbering stack registers
4378 unrelated to the inputs and outputs.
4379
4380 @end enumerate
4381
4382 Here are a couple of reasonable asms to want to write. This asm
4383 takes one input, which is internally popped, and produces two outputs.
4384
4385 @smallexample
4386 asm ("fsincos" : "=t" (cos), "=u" (sin) : "0" (inp));
4387 @end smallexample
4388
4389 This asm takes two inputs, which are popped by the @code{fyl2xp1} opcode,
4390 and replaces them with one output. The user must code the @code{st(1)}
4391 clobber for reg-stack.c to know that @code{fyl2xp1} pops both inputs.
4392
4393 @smallexample
4394 asm ("fyl2xp1" : "=t" (result) : "0" (x), "u" (y) : "st(1)");
4395 @end smallexample
4396
4397 @include md.texi
4398
4399 @node Asm Labels
4400 @section Controlling Names Used in Assembler Code
4401 @cindex assembler names for identifiers
4402 @cindex names used in assembler code
4403 @cindex identifiers, names in assembler code
4404
4405 You can specify the name to be used in the assembler code for a C
4406 function or variable by writing the @code{asm} (or @code{__asm__})
4407 keyword after the declarator as follows:
4408
4409 @smallexample
4410 int foo asm ("myfoo") = 2;
4411 @end smallexample
4412
4413 @noindent
4414 This specifies that the name to be used for the variable @code{foo} in
4415 the assembler code should be @samp{myfoo} rather than the usual
4416 @samp{_foo}.
4417
4418 On systems where an underscore is normally prepended to the name of a C
4419 function or variable, this feature allows you to define names for the
4420 linker that do not start with an underscore.
4421
4422 It does not make sense to use this feature with a non-static local
4423 variable since such variables do not have assembler names. If you are
4424 trying to put the variable in a particular register, see @ref{Explicit
4425 Reg Vars}. GCC presently accepts such code with a warning, but will
4426 probably be changed to issue an error, rather than a warning, in the
4427 future.
4428
4429 You cannot use @code{asm} in this way in a function @emph{definition}; but
4430 you can get the same effect by writing a declaration for the function
4431 before its definition and putting @code{asm} there, like this:
4432
4433 @smallexample
4434 extern func () asm ("FUNC");
4435
4436 func (x, y)
4437 int x, y;
4438 /* @r{@dots{}} */
4439 @end smallexample
4440
4441 It is up to you to make sure that the assembler names you choose do not
4442 conflict with any other assembler symbols. Also, you must not use a
4443 register name; that would produce completely invalid assembler code. GCC
4444 does not as yet have the ability to store static variables in registers.
4445 Perhaps that will be added.
4446
4447 @node Explicit Reg Vars
4448 @section Variables in Specified Registers
4449 @cindex explicit register variables
4450 @cindex variables in specified registers
4451 @cindex specified registers
4452 @cindex registers, global allocation
4453
4454 GNU C allows you to put a few global variables into specified hardware
4455 registers. You can also specify the register in which an ordinary
4456 register variable should be allocated.
4457
4458 @itemize @bullet
4459 @item
4460 Global register variables reserve registers throughout the program.
4461 This may be useful in programs such as programming language
4462 interpreters which have a couple of global variables that are accessed
4463 very often.
4464
4465 @item
4466 Local register variables in specific registers do not reserve the
4467 registers, except at the point where they are used as input or output
4468 operands in an @code{asm} statement and the @code{asm} statement itself is
4469 not deleted. The compiler's data flow analysis is capable of determining
4470 where the specified registers contain live values, and where they are
4471 available for other uses. Stores into local register variables may be deleted
4472 when they appear to be dead according to dataflow analysis. References
4473 to local register variables may be deleted or moved or simplified.
4474
4475 These local variables are sometimes convenient for use with the extended
4476 @code{asm} feature (@pxref{Extended Asm}), if you want to write one
4477 output of the assembler instruction directly into a particular register.
4478 (This will work provided the register you specify fits the constraints
4479 specified for that operand in the @code{asm}.)
4480 @end itemize
4481
4482 @menu
4483 * Global Reg Vars::
4484 * Local Reg Vars::
4485 @end menu
4486
4487 @node Global Reg Vars
4488 @subsection Defining Global Register Variables
4489 @cindex global register variables
4490 @cindex registers, global variables in
4491
4492 You can define a global register variable in GNU C like this:
4493
4494 @smallexample
4495 register int *foo asm ("a5");
4496 @end smallexample
4497
4498 @noindent
4499 Here @code{a5} is the name of the register which should be used. Choose a
4500 register which is normally saved and restored by function calls on your
4501 machine, so that library routines will not clobber it.
4502
4503 Naturally the register name is cpu-dependent, so you would need to
4504 conditionalize your program according to cpu type. The register
4505 @code{a5} would be a good choice on a 68000 for a variable of pointer
4506 type. On machines with register windows, be sure to choose a ``global''
4507 register that is not affected magically by the function call mechanism.
4508
4509 In addition, operating systems on one type of cpu may differ in how they
4510 name the registers; then you would need additional conditionals. For
4511 example, some 68000 operating systems call this register @code{%a5}.
4512
4513 Eventually there may be a way of asking the compiler to choose a register
4514 automatically, but first we need to figure out how it should choose and
4515 how to enable you to guide the choice. No solution is evident.
4516
4517 Defining a global register variable in a certain register reserves that
4518 register entirely for this use, at least within the current compilation.
4519 The register will not be allocated for any other purpose in the functions
4520 in the current compilation. The register will not be saved and restored by
4521 these functions. Stores into this register are never deleted even if they
4522 would appear to be dead, but references may be deleted or moved or
4523 simplified.
4524
4525 It is not safe to access the global register variables from signal
4526 handlers, or from more than one thread of control, because the system
4527 library routines may temporarily use the register for other things (unless
4528 you recompile them specially for the task at hand).
4529
4530 @cindex @code{qsort}, and global register variables
4531 It is not safe for one function that uses a global register variable to
4532 call another such function @code{foo} by way of a third function
4533 @code{lose} that was compiled without knowledge of this variable (i.e.@: in a
4534 different source file in which the variable wasn't declared). This is
4535 because @code{lose} might save the register and put some other value there.
4536 For example, you can't expect a global register variable to be available in
4537 the comparison-function that you pass to @code{qsort}, since @code{qsort}
4538 might have put something else in that register. (If you are prepared to
4539 recompile @code{qsort} with the same global register variable, you can
4540 solve this problem.)
4541
4542 If you want to recompile @code{qsort} or other source files which do not
4543 actually use your global register variable, so that they will not use that
4544 register for any other purpose, then it suffices to specify the compiler
4545 option @option{-ffixed-@var{reg}}. You need not actually add a global
4546 register declaration to their source code.
4547
4548 A function which can alter the value of a global register variable cannot
4549 safely be called from a function compiled without this variable, because it
4550 could clobber the value the caller expects to find there on return.
4551 Therefore, the function which is the entry point into the part of the
4552 program that uses the global register variable must explicitly save and
4553 restore the value which belongs to its caller.
4554
4555 @cindex register variable after @code{longjmp}
4556 @cindex global register after @code{longjmp}
4557 @cindex value after @code{longjmp}
4558 @findex longjmp
4559 @findex setjmp
4560 On most machines, @code{longjmp} will restore to each global register
4561 variable the value it had at the time of the @code{setjmp}. On some
4562 machines, however, @code{longjmp} will not change the value of global
4563 register variables. To be portable, the function that called @code{setjmp}
4564 should make other arrangements to save the values of the global register
4565 variables, and to restore them in a @code{longjmp}. This way, the same
4566 thing will happen regardless of what @code{longjmp} does.
4567
4568 All global register variable declarations must precede all function
4569 definitions. If such a declaration could appear after function
4570 definitions, the declaration would be too late to prevent the register from
4571 being used for other purposes in the preceding functions.
4572
4573 Global register variables may not have initial values, because an
4574 executable file has no means to supply initial contents for a register.
4575
4576 On the SPARC, there are reports that g3 @dots{} g7 are suitable
4577 registers, but certain library functions, such as @code{getwd}, as well
4578 as the subroutines for division and remainder, modify g3 and g4. g1 and
4579 g2 are local temporaries.
4580
4581 On the 68000, a2 @dots{} a5 should be suitable, as should d2 @dots{} d7.
4582 Of course, it will not do to use more than a few of those.
4583
4584 @node Local Reg Vars
4585 @subsection Specifying Registers for Local Variables
4586 @cindex local variables, specifying registers
4587 @cindex specifying registers for local variables
4588 @cindex registers for local variables
4589
4590 You can define a local register variable with a specified register
4591 like this:
4592
4593 @smallexample
4594 register int *foo asm ("a5");
4595 @end smallexample
4596
4597 @noindent
4598 Here @code{a5} is the name of the register which should be used. Note
4599 that this is the same syntax used for defining global register
4600 variables, but for a local variable it would appear within a function.
4601
4602 Naturally the register name is cpu-dependent, but this is not a
4603 problem, since specific registers are most often useful with explicit
4604 assembler instructions (@pxref{Extended Asm}). Both of these things
4605 generally require that you conditionalize your program according to
4606 cpu type.
4607
4608 In addition, operating systems on one type of cpu may differ in how they
4609 name the registers; then you would need additional conditionals. For
4610 example, some 68000 operating systems call this register @code{%a5}.
4611
4612 Defining such a register variable does not reserve the register; it
4613 remains available for other uses in places where flow control determines
4614 the variable's value is not live.
4615
4616 This option does not guarantee that GCC will generate code that has
4617 this variable in the register you specify at all times. You may not
4618 code an explicit reference to this register in the @emph{assembler
4619 instruction template} part of an @code{asm} statement and assume it will
4620 always refer to this variable. However, using the variable as an
4621 @code{asm} @emph{operand} guarantees that the specified register is used
4622 for the operand.
4623
4624 Stores into local register variables may be deleted when they appear to be dead
4625 according to dataflow analysis. References to local register variables may
4626 be deleted or moved or simplified.
4627
4628 As for global register variables, it's recommended that you choose a
4629 register which is normally saved and restored by function calls on
4630 your machine, so that library routines will not clobber it. A common
4631 pitfall is to initialize multiple call-clobbered registers with
4632 arbitrary expressions, where a function call or library call for an
4633 arithmetic operator will overwrite a register value from a previous
4634 assignment, for example @code{r0} below:
4635 @smallexample
4636 register int *p1 asm ("r0") = @dots{};
4637 register int *p2 asm ("r1") = @dots{};
4638 @end smallexample
4639 In those cases, a solution is to use a temporary variable for
4640 each arbitrary expression. @xref{Example of asm with clobbered asm reg}.
4641
4642 @node Alternate Keywords
4643 @section Alternate Keywords
4644 @cindex alternate keywords
4645 @cindex keywords, alternate
4646
4647 @option{-ansi} and the various @option{-std} options disable certain
4648 keywords. This causes trouble when you want to use GNU C extensions, or
4649 a general-purpose header file that should be usable by all programs,
4650 including ISO C programs. The keywords @code{asm}, @code{typeof} and
4651 @code{inline} are not available in programs compiled with
4652 @option{-ansi} or @option{-std} (although @code{inline} can be used in a
4653 program compiled with @option{-std=c99}). The ISO C99 keyword
4654 @code{restrict} is only available when @option{-std=gnu99} (which will
4655 eventually be the default) or @option{-std=c99} (or the equivalent
4656 @option{-std=iso9899:1999}) is used.
4657
4658 The way to solve these problems is to put @samp{__} at the beginning and
4659 end of each problematical keyword. For example, use @code{__asm__}
4660 instead of @code{asm}, and @code{__inline__} instead of @code{inline}.
4661
4662 Other C compilers won't accept these alternative keywords; if you want to
4663 compile with another compiler, you can define the alternate keywords as
4664 macros to replace them with the customary keywords. It looks like this:
4665
4666 @smallexample
4667 #ifndef __GNUC__
4668 #define __asm__ asm
4669 #endif
4670 @end smallexample
4671
4672 @findex __extension__
4673 @opindex pedantic
4674 @option{-pedantic} and other options cause warnings for many GNU C extensions.
4675 You can
4676 prevent such warnings within one expression by writing
4677 @code{__extension__} before the expression. @code{__extension__} has no
4678 effect aside from this.
4679
4680 @node Incomplete Enums
4681 @section Incomplete @code{enum} Types
4682
4683 You can define an @code{enum} tag without specifying its possible values.
4684 This results in an incomplete type, much like what you get if you write
4685 @code{struct foo} without describing the elements. A later declaration
4686 which does specify the possible values completes the type.
4687
4688 You can't allocate variables or storage using the type while it is
4689 incomplete. However, you can work with pointers to that type.
4690
4691 This extension may not be very useful, but it makes the handling of
4692 @code{enum} more consistent with the way @code{struct} and @code{union}
4693 are handled.
4694
4695 This extension is not supported by GNU C++.
4696
4697 @node Function Names
4698 @section Function Names as Strings
4699 @cindex @code{__func__} identifier
4700 @cindex @code{__FUNCTION__} identifier
4701 @cindex @code{__PRETTY_FUNCTION__} identifier
4702
4703 GCC provides three magic variables which hold the name of the current
4704 function, as a string. The first of these is @code{__func__}, which
4705 is part of the C99 standard:
4706
4707 @display
4708 The identifier @code{__func__} is implicitly declared by the translator
4709 as if, immediately following the opening brace of each function
4710 definition, the declaration
4711
4712 @smallexample
4713 static const char __func__[] = "function-name";
4714 @end smallexample
4715
4716 appeared, where function-name is the name of the lexically-enclosing
4717 function. This name is the unadorned name of the function.
4718 @end display
4719
4720 @code{__FUNCTION__} is another name for @code{__func__}. Older
4721 versions of GCC recognize only this name. However, it is not
4722 standardized. For maximum portability, we recommend you use
4723 @code{__func__}, but provide a fallback definition with the
4724 preprocessor:
4725
4726 @smallexample
4727 #if __STDC_VERSION__ < 199901L
4728 # if __GNUC__ >= 2
4729 # define __func__ __FUNCTION__
4730 # else
4731 # define __func__ "<unknown>"
4732 # endif
4733 #endif
4734 @end smallexample
4735
4736 In C, @code{__PRETTY_FUNCTION__} is yet another name for
4737 @code{__func__}. However, in C++, @code{__PRETTY_FUNCTION__} contains
4738 the type signature of the function as well as its bare name. For
4739 example, this program:
4740
4741 @smallexample
4742 extern "C" @{
4743 extern int printf (char *, ...);
4744 @}
4745
4746 class a @{
4747 public:
4748 void sub (int i)
4749 @{
4750 printf ("__FUNCTION__ = %s\n", __FUNCTION__);
4751 printf ("__PRETTY_FUNCTION__ = %s\n", __PRETTY_FUNCTION__);
4752 @}
4753 @};
4754
4755 int
4756 main (void)
4757 @{
4758 a ax;
4759 ax.sub (0);
4760 return 0;
4761 @}
4762 @end smallexample
4763
4764 @noindent
4765 gives this output:
4766
4767 @smallexample
4768 __FUNCTION__ = sub
4769 __PRETTY_FUNCTION__ = void a::sub(int)
4770 @end smallexample
4771
4772 These identifiers are not preprocessor macros. In GCC 3.3 and
4773 earlier, in C only, @code{__FUNCTION__} and @code{__PRETTY_FUNCTION__}
4774 were treated as string literals; they could be used to initialize
4775 @code{char} arrays, and they could be concatenated with other string
4776 literals. GCC 3.4 and later treat them as variables, like
4777 @code{__func__}. In C++, @code{__FUNCTION__} and
4778 @code{__PRETTY_FUNCTION__} have always been variables.
4779
4780 @node Return Address
4781 @section Getting the Return or Frame Address of a Function
4782
4783 These functions may be used to get information about the callers of a
4784 function.
4785
4786 @deftypefn {Built-in Function} {void *} __builtin_return_address (unsigned int @var{level})
4787 This function returns the return address of the current function, or of
4788 one of its callers. The @var{level} argument is number of frames to
4789 scan up the call stack. A value of @code{0} yields the return address
4790 of the current function, a value of @code{1} yields the return address
4791 of the caller of the current function, and so forth. When inlining
4792 the expected behavior is that the function will return the address of
4793 the function that will be returned to. To work around this behavior use
4794 the @code{noinline} function attribute.
4795
4796 The @var{level} argument must be a constant integer.
4797
4798 On some machines it may be impossible to determine the return address of
4799 any function other than the current one; in such cases, or when the top
4800 of the stack has been reached, this function will return @code{0} or a
4801 random value. In addition, @code{__builtin_frame_address} may be used
4802 to determine if the top of the stack has been reached.
4803
4804 This function should only be used with a nonzero argument for debugging
4805 purposes.
4806 @end deftypefn
4807
4808 @deftypefn {Built-in Function} {void *} __builtin_frame_address (unsigned int @var{level})
4809 This function is similar to @code{__builtin_return_address}, but it
4810 returns the address of the function frame rather than the return address
4811 of the function. Calling @code{__builtin_frame_address} with a value of
4812 @code{0} yields the frame address of the current function, a value of
4813 @code{1} yields the frame address of the caller of the current function,
4814 and so forth.
4815
4816 The frame is the area on the stack which holds local variables and saved
4817 registers. The frame address is normally the address of the first word
4818 pushed on to the stack by the function. However, the exact definition
4819 depends upon the processor and the calling convention. If the processor
4820 has a dedicated frame pointer register, and the function has a frame,
4821 then @code{__builtin_frame_address} will return the value of the frame
4822 pointer register.
4823
4824 On some machines it may be impossible to determine the frame address of
4825 any function other than the current one; in such cases, or when the top
4826 of the stack has been reached, this function will return @code{0} if
4827 the first frame pointer is properly initialized by the startup code.
4828
4829 This function should only be used with a nonzero argument for debugging
4830 purposes.
4831 @end deftypefn
4832
4833 @node Vector Extensions
4834 @section Using vector instructions through built-in functions
4835
4836 On some targets, the instruction set contains SIMD vector instructions that
4837 operate on multiple values contained in one large register at the same time.
4838 For example, on the i386 the MMX, 3Dnow! and SSE extensions can be used
4839 this way.
4840
4841 The first step in using these extensions is to provide the necessary data
4842 types. This should be done using an appropriate @code{typedef}:
4843
4844 @smallexample
4845 typedef int v4si __attribute__ ((vector_size (16)));
4846 @end smallexample
4847
4848 The @code{int} type specifies the base type, while the attribute specifies
4849 the vector size for the variable, measured in bytes. For example, the
4850 declaration above causes the compiler to set the mode for the @code{v4si}
4851 type to be 16 bytes wide and divided into @code{int} sized units. For
4852 a 32-bit @code{int} this means a vector of 4 units of 4 bytes, and the
4853 corresponding mode of @code{foo} will be @acronym{V4SI}.
4854
4855 The @code{vector_size} attribute is only applicable to integral and
4856 float scalars, although arrays, pointers, and function return values
4857 are allowed in conjunction with this construct.
4858
4859 All the basic integer types can be used as base types, both as signed
4860 and as unsigned: @code{char}, @code{short}, @code{int}, @code{long},
4861 @code{long long}. In addition, @code{float} and @code{double} can be
4862 used to build floating-point vector types.
4863
4864 Specifying a combination that is not valid for the current architecture
4865 will cause GCC to synthesize the instructions using a narrower mode.
4866 For example, if you specify a variable of type @code{V4SI} and your
4867 architecture does not allow for this specific SIMD type, GCC will
4868 produce code that uses 4 @code{SIs}.
4869
4870 The types defined in this manner can be used with a subset of normal C
4871 operations. Currently, GCC will allow using the following operators
4872 on these types: @code{+, -, *, /, unary minus, ^, |, &, ~}@.
4873
4874 The operations behave like C++ @code{valarrays}. Addition is defined as
4875 the addition of the corresponding elements of the operands. For
4876 example, in the code below, each of the 4 elements in @var{a} will be
4877 added to the corresponding 4 elements in @var{b} and the resulting
4878 vector will be stored in @var{c}.
4879
4880 @smallexample
4881 typedef int v4si __attribute__ ((vector_size (16)));
4882
4883 v4si a, b, c;
4884
4885 c = a + b;
4886 @end smallexample
4887
4888 Subtraction, multiplication, division, and the logical operations
4889 operate in a similar manner. Likewise, the result of using the unary
4890 minus or complement operators on a vector type is a vector whose
4891 elements are the negative or complemented values of the corresponding
4892 elements in the operand.
4893
4894 You can declare variables and use them in function calls and returns, as
4895 well as in assignments and some casts. You can specify a vector type as
4896 a return type for a function. Vector types can also be used as function
4897 arguments. It is possible to cast from one vector type to another,
4898 provided they are of the same size (in fact, you can also cast vectors
4899 to and from other datatypes of the same size).
4900
4901 You cannot operate between vectors of different lengths or different
4902 signedness without a cast.
4903
4904 A port that supports hardware vector operations, usually provides a set
4905 of built-in functions that can be used to operate on vectors. For
4906 example, a function to add two vectors and multiply the result by a
4907 third could look like this:
4908
4909 @smallexample
4910 v4si f (v4si a, v4si b, v4si c)
4911 @{
4912 v4si tmp = __builtin_addv4si (a, b);
4913 return __builtin_mulv4si (tmp, c);
4914 @}
4915
4916 @end smallexample
4917
4918 @node Offsetof
4919 @section Offsetof
4920 @findex __builtin_offsetof
4921
4922 GCC implements for both C and C++ a syntactic extension to implement
4923 the @code{offsetof} macro.
4924
4925 @smallexample
4926 primary:
4927 "__builtin_offsetof" "(" @code{typename} "," offsetof_member_designator ")"
4928
4929 offsetof_member_designator:
4930 @code{identifier}
4931 | offsetof_member_designator "." @code{identifier}
4932 | offsetof_member_designator "[" @code{expr} "]"
4933 @end smallexample
4934
4935 This extension is sufficient such that
4936
4937 @smallexample
4938 #define offsetof(@var{type}, @var{member}) __builtin_offsetof (@var{type}, @var{member})
4939 @end smallexample
4940
4941 is a suitable definition of the @code{offsetof} macro. In C++, @var{type}
4942 may be dependent. In either case, @var{member} may consist of a single
4943 identifier, or a sequence of member accesses and array references.
4944
4945 @node Atomic Builtins
4946 @section Built-in functions for atomic memory access
4947
4948 The following builtins are intended to be compatible with those described
4949 in the @cite{Intel Itanium Processor-specific Application Binary Interface},
4950 section 7.4. As such, they depart from the normal GCC practice of using
4951 the ``__builtin_'' prefix, and further that they are overloaded such that
4952 they work on multiple types.
4953
4954 The definition given in the Intel documentation allows only for the use of
4955 the types @code{int}, @code{long}, @code{long long} as well as their unsigned
4956 counterparts. GCC will allow any integral scalar or pointer type that is
4957 1, 2, 4 or 8 bytes in length.
4958
4959 Not all operations are supported by all target processors. If a particular
4960 operation cannot be implemented on the target processor, a warning will be
4961 generated and a call an external function will be generated. The external
4962 function will carry the same name as the builtin, with an additional suffix
4963 @samp{_@var{n}} where @var{n} is the size of the data type.
4964
4965 @c ??? Should we have a mechanism to suppress this warning? This is almost
4966 @c useful for implementing the operation under the control of an external
4967 @c mutex.
4968
4969 In most cases, these builtins are considered a @dfn{full barrier}. That is,
4970 no memory operand will be moved across the operation, either forward or
4971 backward. Further, instructions will be issued as necessary to prevent the
4972 processor from speculating loads across the operation and from queuing stores
4973 after the operation.
4974
4975 All of the routines are are described in the Intel documentation to take
4976 ``an optional list of variables protected by the memory barrier''. It's
4977 not clear what is meant by that; it could mean that @emph{only} the
4978 following variables are protected, or it could mean that these variables
4979 should in addition be protected. At present GCC ignores this list and
4980 protects all variables which are globally accessible. If in the future
4981 we make some use of this list, an empty list will continue to mean all
4982 globally accessible variables.
4983
4984 @table @code
4985 @item @var{type} __sync_fetch_and_add (@var{type} *ptr, @var{type} value, ...)
4986 @itemx @var{type} __sync_fetch_and_sub (@var{type} *ptr, @var{type} value, ...)
4987 @itemx @var{type} __sync_fetch_and_or (@var{type} *ptr, @var{type} value, ...)
4988 @itemx @var{type} __sync_fetch_and_and (@var{type} *ptr, @var{type} value, ...)
4989 @itemx @var{type} __sync_fetch_and_xor (@var{type} *ptr, @var{type} value, ...)
4990 @itemx @var{type} __sync_fetch_and_nand (@var{type} *ptr, @var{type} value, ...)
4991 @findex __sync_fetch_and_add
4992 @findex __sync_fetch_and_sub
4993 @findex __sync_fetch_and_or
4994 @findex __sync_fetch_and_and
4995 @findex __sync_fetch_and_xor
4996 @findex __sync_fetch_and_nand
4997 These builtins perform the operation suggested by the name, and
4998 returns the value that had previously been in memory. That is,
4999
5000 @smallexample
5001 @{ tmp = *ptr; *ptr @var{op}= value; return tmp; @}
5002 @{ tmp = *ptr; *ptr = ~tmp & value; return tmp; @} // nand
5003 @end smallexample
5004
5005 @item @var{type} __sync_add_and_fetch (@var{type} *ptr, @var{type} value, ...)
5006 @itemx @var{type} __sync_sub_and_fetch (@var{type} *ptr, @var{type} value, ...)
5007 @itemx @var{type} __sync_or_and_fetch (@var{type} *ptr, @var{type} value, ...)
5008 @itemx @var{type} __sync_and_and_fetch (@var{type} *ptr, @var{type} value, ...)
5009 @itemx @var{type} __sync_xor_and_fetch (@var{type} *ptr, @var{type} value, ...)
5010 @itemx @var{type} __sync_nand_and_fetch (@var{type} *ptr, @var{type} value, ...)
5011 @findex __sync_add_and_fetch
5012 @findex __sync_sub_and_fetch
5013 @findex __sync_or_and_fetch
5014 @findex __sync_and_and_fetch
5015 @findex __sync_xor_and_fetch
5016 @findex __sync_nand_and_fetch
5017 These builtins perform the operation suggested by the name, and
5018 return the new value. That is,
5019
5020 @smallexample
5021 @{ *ptr @var{op}= value; return *ptr; @}
5022 @{ *ptr = ~*ptr & value; return *ptr; @} // nand
5023 @end smallexample
5024
5025 @item bool __sync_bool_compare_and_swap (@var{type} *ptr, @var{type} oldval @var{type} newval, ...)
5026 @itemx @var{type} __sync_val_compare_and_swap (@var{type} *ptr, @var{type} oldval @var{type} newval, ...)
5027 @findex __sync_bool_compare_and_swap
5028 @findex __sync_val_compare_and_swap
5029 These builtins perform an atomic compare and swap. That is, if the current
5030 value of @code{*@var{ptr}} is @var{oldval}, then write @var{newval} into
5031 @code{*@var{ptr}}.
5032
5033 The ``bool'' version returns true if the comparison is successful and
5034 @var{newval} was written. The ``val'' version returns the contents
5035 of @code{*@var{ptr}} before the operation.
5036
5037 @item __sync_synchronize (...)
5038 @findex __sync_synchronize
5039 This builtin issues a full memory barrier.
5040
5041 @item @var{type} __sync_lock_test_and_set (@var{type} *ptr, @var{type} value, ...)
5042 @findex __sync_lock_test_and_set
5043 This builtin, as described by Intel, is not a traditional test-and-set
5044 operation, but rather an atomic exchange operation. It writes @var{value}
5045 into @code{*@var{ptr}}, and returns the previous contents of
5046 @code{*@var{ptr}}.
5047
5048 Many targets have only minimal support for such locks, and do not support
5049 a full exchange operation. In this case, a target may support reduced
5050 functionality here by which the @emph{only} valid value to store is the
5051 immediate constant 1. The exact value actually stored in @code{*@var{ptr}}
5052 is implementation defined.
5053
5054 This builtin is not a full barrier, but rather an @dfn{acquire barrier}.
5055 This means that references after the builtin cannot move to (or be
5056 speculated to) before the builtin, but previous memory stores may not
5057 be globally visible yet, and previous memory loads may not yet be
5058 satisfied.
5059
5060 @item void __sync_lock_release (@var{type} *ptr, ...)
5061 @findex __sync_lock_release
5062 This builtin releases the lock acquired by @code{__sync_lock_test_and_set}.
5063 Normally this means writing the constant 0 to @code{*@var{ptr}}.
5064
5065 This builtin is not a full barrier, but rather a @dfn{release barrier}.
5066 This means that all previous memory stores are globally visible, and all
5067 previous memory loads have been satisfied, but following memory reads
5068 are not prevented from being speculated to before the barrier.
5069 @end table
5070
5071 @node Object Size Checking
5072 @section Object Size Checking Builtins
5073 @findex __builtin_object_size
5074 @findex __builtin___memcpy_chk
5075 @findex __builtin___mempcpy_chk
5076 @findex __builtin___memmove_chk
5077 @findex __builtin___memset_chk
5078 @findex __builtin___strcpy_chk
5079 @findex __builtin___stpcpy_chk
5080 @findex __builtin___strncpy_chk
5081 @findex __builtin___strcat_chk
5082 @findex __builtin___strncat_chk
5083 @findex __builtin___sprintf_chk
5084 @findex __builtin___snprintf_chk
5085 @findex __builtin___vsprintf_chk
5086 @findex __builtin___vsnprintf_chk
5087 @findex __builtin___printf_chk
5088 @findex __builtin___vprintf_chk
5089 @findex __builtin___fprintf_chk
5090 @findex __builtin___vfprintf_chk
5091
5092 GCC implements a limited buffer overflow protection mechanism
5093 that can prevent some buffer overflow attacks.
5094
5095 @deftypefn {Built-in Function} {size_t} __builtin_object_size (void * @var{ptr}, int @var{type})
5096 is a built-in construct that returns a constant number of bytes from
5097 @var{ptr} to the end of the object @var{ptr} pointer points to
5098 (if known at compile time). @code{__builtin_object_size} never evaluates
5099 its arguments for side-effects. If there are any side-effects in them, it
5100 returns @code{(size_t) -1} for @var{type} 0 or 1 and @code{(size_t) 0}
5101 for @var{type} 2 or 3. If there are multiple objects @var{ptr} can
5102 point to and all of them are known at compile time, the returned number
5103 is the maximum of remaining byte counts in those objects if @var{type} & 2 is
5104 0 and minimum if nonzero. If it is not possible to determine which objects
5105 @var{ptr} points to at compile time, @code{__builtin_object_size} should
5106 return @code{(size_t) -1} for @var{type} 0 or 1 and @code{(size_t) 0}
5107 for @var{type} 2 or 3.
5108
5109 @var{type} is an integer constant from 0 to 3. If the least significant
5110 bit is clear, objects are whole variables, if it is set, a closest
5111 surrounding subobject is considered the object a pointer points to.
5112 The second bit determines if maximum or minimum of remaining bytes
5113 is computed.
5114
5115 @smallexample
5116 struct V @{ char buf1[10]; int b; char buf2[10]; @} var;
5117 char *p = &var.buf1[1], *q = &var.b;
5118
5119 /* Here the object p points to is var. */
5120 assert (__builtin_object_size (p, 0) == sizeof (var) - 1);
5121 /* The subobject p points to is var.buf1. */
5122 assert (__builtin_object_size (p, 1) == sizeof (var.buf1) - 1);
5123 /* The object q points to is var. */
5124 assert (__builtin_object_size (q, 0)
5125 == (char *) (&var + 1) - (char *) &var.b);
5126 /* The subobject q points to is var.b. */
5127 assert (__builtin_object_size (q, 1) == sizeof (var.b));
5128 @end smallexample
5129 @end deftypefn
5130
5131 There are built-in functions added for many common string operation
5132 functions, e.g. for @code{memcpy} @code{__builtin___memcpy_chk}
5133 built-in is provided. This built-in has an additional last argument,
5134 which is the number of bytes remaining in object the @var{dest}
5135 argument points to or @code{(size_t) -1} if the size is not known.
5136
5137 The built-in functions are optimized into the normal string functions
5138 like @code{memcpy} if the last argument is @code{(size_t) -1} or if
5139 it is known at compile time that the destination object will not
5140 be overflown. If the compiler can determine at compile time the
5141 object will be always overflown, it issues a warning.
5142
5143 The intended use can be e.g.
5144
5145 @smallexample
5146 #undef memcpy
5147 #define bos0(dest) __builtin_object_size (dest, 0)
5148 #define memcpy(dest, src, n) \
5149 __builtin___memcpy_chk (dest, src, n, bos0 (dest))
5150
5151 char *volatile p;
5152 char buf[10];
5153 /* It is unknown what object p points to, so this is optimized
5154 into plain memcpy - no checking is possible. */
5155 memcpy (p, "abcde", n);
5156 /* Destination is known and length too. It is known at compile
5157 time there will be no overflow. */
5158 memcpy (&buf[5], "abcde", 5);
5159 /* Destination is known, but the length is not known at compile time.
5160 This will result in __memcpy_chk call that can check for overflow
5161 at runtime. */
5162 memcpy (&buf[5], "abcde", n);
5163 /* Destination is known and it is known at compile time there will
5164 be overflow. There will be a warning and __memcpy_chk call that
5165 will abort the program at runtime. */
5166 memcpy (&buf[6], "abcde", 5);
5167 @end smallexample
5168
5169 Such built-in functions are provided for @code{memcpy}, @code{mempcpy},
5170 @code{memmove}, @code{memset}, @code{strcpy}, @code{stpcpy}, @code{strncpy},
5171 @code{strcat} and @code{strncat}.
5172
5173 There are also checking built-in functions for formatted output functions.
5174 @smallexample
5175 int __builtin___sprintf_chk (char *s, int flag, size_t os, const char *fmt, ...);
5176 int __builtin___snprintf_chk (char *s, size_t maxlen, int flag, size_t os,
5177 const char *fmt, ...);
5178 int __builtin___vsprintf_chk (char *s, int flag, size_t os, const char *fmt,
5179 va_list ap);
5180 int __builtin___vsnprintf_chk (char *s, size_t maxlen, int flag, size_t os,
5181 const char *fmt, va_list ap);
5182 @end smallexample
5183
5184 The added @var{flag} argument is passed unchanged to @code{__sprintf_chk}
5185 etc. functions and can contain implementation specific flags on what
5186 additional security measures the checking function might take, such as
5187 handling @code{%n} differently.
5188
5189 The @var{os} argument is the object size @var{s} points to, like in the
5190 other built-in functions. There is a small difference in the behavior
5191 though, if @var{os} is @code{(size_t) -1}, the built-in functions are
5192 optimized into the non-checking functions only if @var{flag} is 0, otherwise
5193 the checking function is called with @var{os} argument set to
5194 @code{(size_t) -1}.
5195
5196 In addition to this, there are checking built-in functions
5197 @code{__builtin___printf_chk}, @code{__builtin___vprintf_chk},
5198 @code{__builtin___fprintf_chk} and @code{__builtin___vfprintf_chk}.
5199 These have just one additional argument, @var{flag}, right before
5200 format string @var{fmt}. If the compiler is able to optimize them to
5201 @code{fputc} etc. functions, it will, otherwise the checking function
5202 should be called and the @var{flag} argument passed to it.
5203
5204 @node Other Builtins
5205 @section Other built-in functions provided by GCC
5206 @cindex built-in functions
5207 @findex __builtin_isgreater
5208 @findex __builtin_isgreaterequal
5209 @findex __builtin_isless
5210 @findex __builtin_islessequal
5211 @findex __builtin_islessgreater
5212 @findex __builtin_isunordered
5213 @findex __builtin_powi
5214 @findex __builtin_powif
5215 @findex __builtin_powil
5216 @findex _Exit
5217 @findex _exit
5218 @findex abort
5219 @findex abs
5220 @findex acos
5221 @findex acosf
5222 @findex acosh
5223 @findex acoshf
5224 @findex acoshl
5225 @findex acosl
5226 @findex alloca
5227 @findex asin
5228 @findex asinf
5229 @findex asinh
5230 @findex asinhf
5231 @findex asinhl
5232 @findex asinl
5233 @findex atan
5234 @findex atan2
5235 @findex atan2f
5236 @findex atan2l
5237 @findex atanf
5238 @findex atanh
5239 @findex atanhf
5240 @findex atanhl
5241 @findex atanl
5242 @findex bcmp
5243 @findex bzero
5244 @findex cabs
5245 @findex cabsf
5246 @findex cabsl
5247 @findex cacos
5248 @findex cacosf
5249 @findex cacosh
5250 @findex cacoshf
5251 @findex cacoshl
5252 @findex cacosl
5253 @findex calloc
5254 @findex carg
5255 @findex cargf
5256 @findex cargl
5257 @findex casin
5258 @findex casinf
5259 @findex casinh
5260 @findex casinhf
5261 @findex casinhl
5262 @findex casinl
5263 @findex catan
5264 @findex catanf
5265 @findex catanh
5266 @findex catanhf
5267 @findex catanhl
5268 @findex catanl
5269 @findex cbrt
5270 @findex cbrtf
5271 @findex cbrtl
5272 @findex ccos
5273 @findex ccosf
5274 @findex ccosh
5275 @findex ccoshf
5276 @findex ccoshl
5277 @findex ccosl
5278 @findex ceil
5279 @findex ceilf
5280 @findex ceill
5281 @findex cexp
5282 @findex cexpf
5283 @findex cexpl
5284 @findex cimag
5285 @findex cimagf
5286 @findex cimagl
5287 @findex clog
5288 @findex clogf
5289 @findex clogl
5290 @findex conj
5291 @findex conjf
5292 @findex conjl
5293 @findex copysign
5294 @findex copysignf
5295 @findex copysignl
5296 @findex cos
5297 @findex cosf
5298 @findex cosh
5299 @findex coshf
5300 @findex coshl
5301 @findex cosl
5302 @findex cpow
5303 @findex cpowf
5304 @findex cpowl
5305 @findex cproj
5306 @findex cprojf
5307 @findex cprojl
5308 @findex creal
5309 @findex crealf
5310 @findex creall
5311 @findex csin
5312 @findex csinf
5313 @findex csinh
5314 @findex csinhf
5315 @findex csinhl
5316 @findex csinl
5317 @findex csqrt
5318 @findex csqrtf
5319 @findex csqrtl
5320 @findex ctan
5321 @findex ctanf
5322 @findex ctanh
5323 @findex ctanhf
5324 @findex ctanhl
5325 @findex ctanl
5326 @findex dcgettext
5327 @findex dgettext
5328 @findex drem
5329 @findex dremf
5330 @findex dreml
5331 @findex erf
5332 @findex erfc
5333 @findex erfcf
5334 @findex erfcl
5335 @findex erff
5336 @findex erfl
5337 @findex exit
5338 @findex exp
5339 @findex exp10
5340 @findex exp10f
5341 @findex exp10l
5342 @findex exp2
5343 @findex exp2f
5344 @findex exp2l
5345 @findex expf
5346 @findex expl
5347 @findex expm1
5348 @findex expm1f
5349 @findex expm1l
5350 @findex fabs
5351 @findex fabsf
5352 @findex fabsl
5353 @findex fdim
5354 @findex fdimf
5355 @findex fdiml
5356 @findex ffs
5357 @findex floor
5358 @findex floorf
5359 @findex floorl
5360 @findex fma
5361 @findex fmaf
5362 @findex fmal
5363 @findex fmax
5364 @findex fmaxf
5365 @findex fmaxl
5366 @findex fmin
5367 @findex fminf
5368 @findex fminl
5369 @findex fmod
5370 @findex fmodf
5371 @findex fmodl
5372 @findex fprintf
5373 @findex fprintf_unlocked
5374 @findex fputs
5375 @findex fputs_unlocked
5376 @findex frexp
5377 @findex frexpf
5378 @findex frexpl
5379 @findex fscanf
5380 @findex gamma
5381 @findex gammaf
5382 @findex gammal
5383 @findex gettext
5384 @findex hypot
5385 @findex hypotf
5386 @findex hypotl
5387 @findex ilogb
5388 @findex ilogbf
5389 @findex ilogbl
5390 @findex imaxabs
5391 @findex index
5392 @findex isalnum
5393 @findex isalpha
5394 @findex isascii
5395 @findex isblank
5396 @findex iscntrl
5397 @findex isdigit
5398 @findex isgraph
5399 @findex islower
5400 @findex isprint
5401 @findex ispunct
5402 @findex isspace
5403 @findex isupper
5404 @findex iswalnum
5405 @findex iswalpha
5406 @findex iswblank
5407 @findex iswcntrl
5408 @findex iswdigit
5409 @findex iswgraph
5410 @findex iswlower
5411 @findex iswprint
5412 @findex iswpunct
5413 @findex iswspace
5414 @findex iswupper
5415 @findex iswxdigit
5416 @findex isxdigit
5417 @findex j0
5418 @findex j0f
5419 @findex j0l
5420 @findex j1
5421 @findex j1f
5422 @findex j1l
5423 @findex jn
5424 @findex jnf
5425 @findex jnl
5426 @findex labs
5427 @findex ldexp
5428 @findex ldexpf
5429 @findex ldexpl
5430 @findex lgamma
5431 @findex lgammaf
5432 @findex lgammal
5433 @findex llabs
5434 @findex llrint
5435 @findex llrintf
5436 @findex llrintl
5437 @findex llround
5438 @findex llroundf
5439 @findex llroundl
5440 @findex log
5441 @findex log10
5442 @findex log10f
5443 @findex log10l
5444 @findex log1p
5445 @findex log1pf
5446 @findex log1pl
5447 @findex log2
5448 @findex log2f
5449 @findex log2l
5450 @findex logb
5451 @findex logbf
5452 @findex logbl
5453 @findex logf
5454 @findex logl
5455 @findex lrint
5456 @findex lrintf
5457 @findex lrintl
5458 @findex lround
5459 @findex lroundf
5460 @findex lroundl
5461 @findex malloc
5462 @findex memcmp
5463 @findex memcpy
5464 @findex mempcpy
5465 @findex memset
5466 @findex modf
5467 @findex modff
5468 @findex modfl
5469 @findex nearbyint
5470 @findex nearbyintf
5471 @findex nearbyintl
5472 @findex nextafter
5473 @findex nextafterf
5474 @findex nextafterl
5475 @findex nexttoward
5476 @findex nexttowardf
5477 @findex nexttowardl
5478 @findex pow
5479 @findex pow10
5480 @findex pow10f
5481 @findex pow10l
5482 @findex powf
5483 @findex powl
5484 @findex printf
5485 @findex printf_unlocked
5486 @findex putchar
5487 @findex puts
5488 @findex remainder
5489 @findex remainderf
5490 @findex remainderl
5491 @findex remquo
5492 @findex remquof
5493 @findex remquol
5494 @findex rindex
5495 @findex rint
5496 @findex rintf
5497 @findex rintl
5498 @findex round
5499 @findex roundf
5500 @findex roundl
5501 @findex scalb
5502 @findex scalbf
5503 @findex scalbl
5504 @findex scalbln
5505 @findex scalblnf
5506 @findex scalblnf
5507 @findex scalbn
5508 @findex scalbnf
5509 @findex scanfnl
5510 @findex signbit
5511 @findex signbitf
5512 @findex signbitl
5513 @findex significand
5514 @findex significandf
5515 @findex significandl
5516 @findex sin
5517 @findex sincos
5518 @findex sincosf
5519 @findex sincosl
5520 @findex sinf
5521 @findex sinh
5522 @findex sinhf
5523 @findex sinhl
5524 @findex sinl
5525 @findex snprintf
5526 @findex sprintf
5527 @findex sqrt
5528 @findex sqrtf
5529 @findex sqrtl
5530 @findex sscanf
5531 @findex stpcpy
5532 @findex stpncpy
5533 @findex strcasecmp
5534 @findex strcat
5535 @findex strchr
5536 @findex strcmp
5537 @findex strcpy
5538 @findex strcspn
5539 @findex strdup
5540 @findex strfmon
5541 @findex strftime
5542 @findex strlen
5543 @findex strncasecmp
5544 @findex strncat
5545 @findex strncmp
5546 @findex strncpy
5547 @findex strndup
5548 @findex strpbrk
5549 @findex strrchr
5550 @findex strspn
5551 @findex strstr
5552 @findex tan
5553 @findex tanf
5554 @findex tanh
5555 @findex tanhf
5556 @findex tanhl
5557 @findex tanl
5558 @findex tgamma
5559 @findex tgammaf
5560 @findex tgammal
5561 @findex toascii
5562 @findex tolower
5563 @findex toupper
5564 @findex towlower
5565 @findex towupper
5566 @findex trunc
5567 @findex truncf
5568 @findex truncl
5569 @findex vfprintf
5570 @findex vfscanf
5571 @findex vprintf
5572 @findex vscanf
5573 @findex vsnprintf
5574 @findex vsprintf
5575 @findex vsscanf
5576 @findex y0
5577 @findex y0f
5578 @findex y0l
5579 @findex y1
5580 @findex y1f
5581 @findex y1l
5582 @findex yn
5583 @findex ynf
5584 @findex ynl
5585
5586 GCC provides a large number of built-in functions other than the ones
5587 mentioned above. Some of these are for internal use in the processing
5588 of exceptions or variable-length argument lists and will not be
5589 documented here because they may change from time to time; we do not
5590 recommend general use of these functions.
5591
5592 The remaining functions are provided for optimization purposes.
5593
5594 @opindex fno-builtin
5595 GCC includes built-in versions of many of the functions in the standard
5596 C library. The versions prefixed with @code{__builtin_} will always be
5597 treated as having the same meaning as the C library function even if you
5598 specify the @option{-fno-builtin} option. (@pxref{C Dialect Options})
5599 Many of these functions are only optimized in certain cases; if they are
5600 not optimized in a particular case, a call to the library function will
5601 be emitted.
5602
5603 @opindex ansi
5604 @opindex std
5605 Outside strict ISO C mode (@option{-ansi}, @option{-std=c89} or
5606 @option{-std=c99}), the functions
5607 @code{_exit}, @code{alloca}, @code{bcmp}, @code{bzero},
5608 @code{dcgettext}, @code{dgettext}, @code{dremf}, @code{dreml},
5609 @code{drem}, @code{exp10f}, @code{exp10l}, @code{exp10}, @code{ffsll},
5610 @code{ffsl}, @code{ffs}, @code{fprintf_unlocked}, @code{fputs_unlocked},
5611 @code{gammaf}, @code{gammal}, @code{gamma}, @code{gettext},
5612 @code{index}, @code{isascii}, @code{j0f}, @code{j0l}, @code{j0},
5613 @code{j1f}, @code{j1l}, @code{j1}, @code{jnf}, @code{jnl}, @code{jn},
5614 @code{mempcpy}, @code{pow10f}, @code{pow10l}, @code{pow10},
5615 @code{printf_unlocked}, @code{rindex}, @code{scalbf}, @code{scalbl},
5616 @code{scalb}, @code{signbit}, @code{signbitf}, @code{signbitl},
5617 @code{significandf}, @code{significandl}, @code{significand},
5618 @code{sincosf}, @code{sincosl}, @code{sincos}, @code{stpcpy},
5619 @code{stpncpy}, @code{strcasecmp}, @code{strdup}, @code{strfmon},
5620 @code{strncasecmp}, @code{strndup}, @code{toascii}, @code{y0f},
5621 @code{y0l}, @code{y0}, @code{y1f}, @code{y1l}, @code{y1}, @code{ynf},
5622 @code{ynl} and @code{yn}
5623 may be handled as built-in functions.
5624 All these functions have corresponding versions
5625 prefixed with @code{__builtin_}, which may be used even in strict C89
5626 mode.
5627
5628 The ISO C99 functions
5629 @code{_Exit}, @code{acoshf}, @code{acoshl}, @code{acosh}, @code{asinhf},
5630 @code{asinhl}, @code{asinh}, @code{atanhf}, @code{atanhl}, @code{atanh},
5631 @code{cabsf}, @code{cabsl}, @code{cabs}, @code{cacosf}, @code{cacoshf},
5632 @code{cacoshl}, @code{cacosh}, @code{cacosl}, @code{cacos},
5633 @code{cargf}, @code{cargl}, @code{carg}, @code{casinf}, @code{casinhf},
5634 @code{casinhl}, @code{casinh}, @code{casinl}, @code{casin},
5635 @code{catanf}, @code{catanhf}, @code{catanhl}, @code{catanh},
5636 @code{catanl}, @code{catan}, @code{cbrtf}, @code{cbrtl}, @code{cbrt},
5637 @code{ccosf}, @code{ccoshf}, @code{ccoshl}, @code{ccosh}, @code{ccosl},
5638 @code{ccos}, @code{cexpf}, @code{cexpl}, @code{cexp}, @code{cimagf},
5639 @code{cimagl}, @code{cimag}, @code{clogf}, @code{clogl}, @code{clog},
5640 @code{conjf}, @code{conjl}, @code{conj}, @code{copysignf}, @code{copysignl},
5641 @code{copysign}, @code{cpowf}, @code{cpowl}, @code{cpow}, @code{cprojf},
5642 @code{cprojl}, @code{cproj}, @code{crealf}, @code{creall}, @code{creal},
5643 @code{csinf}, @code{csinhf}, @code{csinhl}, @code{csinh}, @code{csinl},
5644 @code{csin}, @code{csqrtf}, @code{csqrtl}, @code{csqrt}, @code{ctanf},
5645 @code{ctanhf}, @code{ctanhl}, @code{ctanh}, @code{ctanl}, @code{ctan},
5646 @code{erfcf}, @code{erfcl}, @code{erfc}, @code{erff}, @code{erfl},
5647 @code{erf}, @code{exp2f}, @code{exp2l}, @code{exp2}, @code{expm1f},
5648 @code{expm1l}, @code{expm1}, @code{fdimf}, @code{fdiml}, @code{fdim},
5649 @code{fmaf}, @code{fmal}, @code{fmaxf}, @code{fmaxl}, @code{fmax},
5650 @code{fma}, @code{fminf}, @code{fminl}, @code{fmin}, @code{hypotf},
5651 @code{hypotl}, @code{hypot}, @code{ilogbf}, @code{ilogbl}, @code{ilogb},
5652 @code{imaxabs}, @code{isblank}, @code{iswblank}, @code{lgammaf},
5653 @code{lgammal}, @code{lgamma}, @code{llabs}, @code{llrintf}, @code{llrintl},
5654 @code{llrint}, @code{llroundf}, @code{llroundl}, @code{llround},
5655 @code{log1pf}, @code{log1pl}, @code{log1p}, @code{log2f}, @code{log2l},
5656 @code{log2}, @code{logbf}, @code{logbl}, @code{logb}, @code{lrintf},
5657 @code{lrintl}, @code{lrint}, @code{lroundf}, @code{lroundl},
5658 @code{lround}, @code{nearbyintf}, @code{nearbyintl}, @code{nearbyint},
5659 @code{nextafterf}, @code{nextafterl}, @code{nextafter},
5660 @code{nexttowardf}, @code{nexttowardl}, @code{nexttoward},
5661 @code{remainderf}, @code{remainderl}, @code{remainder}, @code{remquof},
5662 @code{remquol}, @code{remquo}, @code{rintf}, @code{rintl}, @code{rint},
5663 @code{roundf}, @code{roundl}, @code{round}, @code{scalblnf},
5664 @code{scalblnl}, @code{scalbln}, @code{scalbnf}, @code{scalbnl},
5665 @code{scalbn}, @code{snprintf}, @code{tgammaf}, @code{tgammal},
5666 @code{tgamma}, @code{truncf}, @code{truncl}, @code{trunc},
5667 @code{vfscanf}, @code{vscanf}, @code{vsnprintf} and @code{vsscanf}
5668 are handled as built-in functions
5669 except in strict ISO C90 mode (@option{-ansi} or @option{-std=c89}).
5670
5671 There are also built-in versions of the ISO C99 functions
5672 @code{acosf}, @code{acosl}, @code{asinf}, @code{asinl}, @code{atan2f},
5673 @code{atan2l}, @code{atanf}, @code{atanl}, @code{ceilf}, @code{ceill},
5674 @code{cosf}, @code{coshf}, @code{coshl}, @code{cosl}, @code{expf},
5675 @code{expl}, @code{fabsf}, @code{fabsl}, @code{floorf}, @code{floorl},
5676 @code{fmodf}, @code{fmodl}, @code{frexpf}, @code{frexpl}, @code{ldexpf},
5677 @code{ldexpl}, @code{log10f}, @code{log10l}, @code{logf}, @code{logl},
5678 @code{modfl}, @code{modf}, @code{powf}, @code{powl}, @code{sinf},
5679 @code{sinhf}, @code{sinhl}, @code{sinl}, @code{sqrtf}, @code{sqrtl},
5680 @code{tanf}, @code{tanhf}, @code{tanhl} and @code{tanl}
5681 that are recognized in any mode since ISO C90 reserves these names for
5682 the purpose to which ISO C99 puts them. All these functions have
5683 corresponding versions prefixed with @code{__builtin_}.
5684
5685 The ISO C94 functions
5686 @code{iswalnum}, @code{iswalpha}, @code{iswcntrl}, @code{iswdigit},
5687 @code{iswgraph}, @code{iswlower}, @code{iswprint}, @code{iswpunct},
5688 @code{iswspace}, @code{iswupper}, @code{iswxdigit}, @code{towlower} and
5689 @code{towupper}
5690 are handled as built-in functions
5691 except in strict ISO C90 mode (@option{-ansi} or @option{-std=c89}).
5692
5693 The ISO C90 functions
5694 @code{abort}, @code{abs}, @code{acos}, @code{asin}, @code{atan2},
5695 @code{atan}, @code{calloc}, @code{ceil}, @code{cosh}, @code{cos},
5696 @code{exit}, @code{exp}, @code{fabs}, @code{floor}, @code{fmod},
5697 @code{fprintf}, @code{fputs}, @code{frexp}, @code{fscanf},
5698 @code{isalnum}, @code{isalpha}, @code{iscntrl}, @code{isdigit},
5699 @code{isgraph}, @code{islower}, @code{isprint}, @code{ispunct},
5700 @code{isspace}, @code{isupper}, @code{isxdigit}, @code{tolower},
5701 @code{toupper}, @code{labs}, @code{ldexp}, @code{log10}, @code{log},
5702 @code{malloc}, @code{memcmp}, @code{memcpy}, @code{memset}, @code{modf},
5703 @code{pow}, @code{printf}, @code{putchar}, @code{puts}, @code{scanf},
5704 @code{sinh}, @code{sin}, @code{snprintf}, @code{sprintf}, @code{sqrt},
5705 @code{sscanf}, @code{strcat}, @code{strchr}, @code{strcmp},
5706 @code{strcpy}, @code{strcspn}, @code{strlen}, @code{strncat},
5707 @code{strncmp}, @code{strncpy}, @code{strpbrk}, @code{strrchr},
5708 @code{strspn}, @code{strstr}, @code{tanh}, @code{tan}, @code{vfprintf},
5709 @code{vprintf} and @code{vsprintf}
5710 are all recognized as built-in functions unless
5711 @option{-fno-builtin} is specified (or @option{-fno-builtin-@var{function}}
5712 is specified for an individual function). All of these functions have
5713 corresponding versions prefixed with @code{__builtin_}.
5714
5715 GCC provides built-in versions of the ISO C99 floating point comparison
5716 macros that avoid raising exceptions for unordered operands. They have
5717 the same names as the standard macros ( @code{isgreater},
5718 @code{isgreaterequal}, @code{isless}, @code{islessequal},
5719 @code{islessgreater}, and @code{isunordered}) , with @code{__builtin_}
5720 prefixed. We intend for a library implementor to be able to simply
5721 @code{#define} each standard macro to its built-in equivalent.
5722
5723 @deftypefn {Built-in Function} int __builtin_types_compatible_p (@var{type1}, @var{type2})
5724
5725 You can use the built-in function @code{__builtin_types_compatible_p} to
5726 determine whether two types are the same.
5727
5728 This built-in function returns 1 if the unqualified versions of the
5729 types @var{type1} and @var{type2} (which are types, not expressions) are
5730 compatible, 0 otherwise. The result of this built-in function can be
5731 used in integer constant expressions.
5732
5733 This built-in function ignores top level qualifiers (e.g., @code{const},
5734 @code{volatile}). For example, @code{int} is equivalent to @code{const
5735 int}.
5736
5737 The type @code{int[]} and @code{int[5]} are compatible. On the other
5738 hand, @code{int} and @code{char *} are not compatible, even if the size
5739 of their types, on the particular architecture are the same. Also, the
5740 amount of pointer indirection is taken into account when determining
5741 similarity. Consequently, @code{short *} is not similar to
5742 @code{short **}. Furthermore, two types that are typedefed are
5743 considered compatible if their underlying types are compatible.
5744
5745 An @code{enum} type is not considered to be compatible with another
5746 @code{enum} type even if both are compatible with the same integer
5747 type; this is what the C standard specifies.
5748 For example, @code{enum @{foo, bar@}} is not similar to
5749 @code{enum @{hot, dog@}}.
5750
5751 You would typically use this function in code whose execution varies
5752 depending on the arguments' types. For example:
5753
5754 @smallexample
5755 #define foo(x) \
5756 (@{ \
5757 typeof (x) tmp = (x); \
5758 if (__builtin_types_compatible_p (typeof (x), long double)) \
5759 tmp = foo_long_double (tmp); \
5760 else if (__builtin_types_compatible_p (typeof (x), double)) \
5761 tmp = foo_double (tmp); \
5762 else if (__builtin_types_compatible_p (typeof (x), float)) \
5763 tmp = foo_float (tmp); \
5764 else \
5765 abort (); \
5766 tmp; \
5767 @})
5768 @end smallexample
5769
5770 @emph{Note:} This construct is only available for C@.
5771
5772 @end deftypefn
5773
5774 @deftypefn {Built-in Function} @var{type} __builtin_choose_expr (@var{const_exp}, @var{exp1}, @var{exp2})
5775
5776 You can use the built-in function @code{__builtin_choose_expr} to
5777 evaluate code depending on the value of a constant expression. This
5778 built-in function returns @var{exp1} if @var{const_exp}, which is a
5779 constant expression that must be able to be determined at compile time,
5780 is nonzero. Otherwise it returns 0.
5781
5782 This built-in function is analogous to the @samp{? :} operator in C,
5783 except that the expression returned has its type unaltered by promotion
5784 rules. Also, the built-in function does not evaluate the expression
5785 that was not chosen. For example, if @var{const_exp} evaluates to true,
5786 @var{exp2} is not evaluated even if it has side-effects.
5787
5788 This built-in function can return an lvalue if the chosen argument is an
5789 lvalue.
5790
5791 If @var{exp1} is returned, the return type is the same as @var{exp1}'s
5792 type. Similarly, if @var{exp2} is returned, its return type is the same
5793 as @var{exp2}.
5794
5795 Example:
5796
5797 @smallexample
5798 #define foo(x) \
5799 __builtin_choose_expr ( \
5800 __builtin_types_compatible_p (typeof (x), double), \
5801 foo_double (x), \
5802 __builtin_choose_expr ( \
5803 __builtin_types_compatible_p (typeof (x), float), \
5804 foo_float (x), \
5805 /* @r{The void expression results in a compile-time error} \
5806 @r{when assigning the result to something.} */ \
5807 (void)0))
5808 @end smallexample
5809
5810 @emph{Note:} This construct is only available for C@. Furthermore, the
5811 unused expression (@var{exp1} or @var{exp2} depending on the value of
5812 @var{const_exp}) may still generate syntax errors. This may change in
5813 future revisions.
5814
5815 @end deftypefn
5816
5817 @deftypefn {Built-in Function} int __builtin_constant_p (@var{exp})
5818 You can use the built-in function @code{__builtin_constant_p} to
5819 determine if a value is known to be constant at compile-time and hence
5820 that GCC can perform constant-folding on expressions involving that
5821 value. The argument of the function is the value to test. The function
5822 returns the integer 1 if the argument is known to be a compile-time
5823 constant and 0 if it is not known to be a compile-time constant. A
5824 return of 0 does not indicate that the value is @emph{not} a constant,
5825 but merely that GCC cannot prove it is a constant with the specified
5826 value of the @option{-O} option.
5827
5828 You would typically use this function in an embedded application where
5829 memory was a critical resource. If you have some complex calculation,
5830 you may want it to be folded if it involves constants, but need to call
5831 a function if it does not. For example:
5832
5833 @smallexample
5834 #define Scale_Value(X) \
5835 (__builtin_constant_p (X) \
5836 ? ((X) * SCALE + OFFSET) : Scale (X))
5837 @end smallexample
5838
5839 You may use this built-in function in either a macro or an inline
5840 function. However, if you use it in an inlined function and pass an
5841 argument of the function as the argument to the built-in, GCC will
5842 never return 1 when you call the inline function with a string constant
5843 or compound literal (@pxref{Compound Literals}) and will not return 1
5844 when you pass a constant numeric value to the inline function unless you
5845 specify the @option{-O} option.
5846
5847 You may also use @code{__builtin_constant_p} in initializers for static
5848 data. For instance, you can write
5849
5850 @smallexample
5851 static const int table[] = @{
5852 __builtin_constant_p (EXPRESSION) ? (EXPRESSION) : -1,
5853 /* @r{@dots{}} */
5854 @};
5855 @end smallexample
5856
5857 @noindent
5858 This is an acceptable initializer even if @var{EXPRESSION} is not a
5859 constant expression. GCC must be more conservative about evaluating the
5860 built-in in this case, because it has no opportunity to perform
5861 optimization.
5862
5863 Previous versions of GCC did not accept this built-in in data
5864 initializers. The earliest version where it is completely safe is
5865 3.0.1.
5866 @end deftypefn
5867
5868 @deftypefn {Built-in Function} long __builtin_expect (long @var{exp}, long @var{c})
5869 @opindex fprofile-arcs
5870 You may use @code{__builtin_expect} to provide the compiler with
5871 branch prediction information. In general, you should prefer to
5872 use actual profile feedback for this (@option{-fprofile-arcs}), as
5873 programmers are notoriously bad at predicting how their programs
5874 actually perform. However, there are applications in which this
5875 data is hard to collect.
5876
5877 The return value is the value of @var{exp}, which should be an
5878 integral expression. The value of @var{c} must be a compile-time
5879 constant. The semantics of the built-in are that it is expected
5880 that @var{exp} == @var{c}. For example:
5881
5882 @smallexample
5883 if (__builtin_expect (x, 0))
5884 foo ();
5885 @end smallexample
5886
5887 @noindent
5888 would indicate that we do not expect to call @code{foo}, since
5889 we expect @code{x} to be zero. Since you are limited to integral
5890 expressions for @var{exp}, you should use constructions such as
5891
5892 @smallexample
5893 if (__builtin_expect (ptr != NULL, 1))
5894 error ();
5895 @end smallexample
5896
5897 @noindent
5898 when testing pointer or floating-point values.
5899 @end deftypefn
5900
5901 @deftypefn {Built-in Function} void __builtin_prefetch (const void *@var{addr}, ...)
5902 This function is used to minimize cache-miss latency by moving data into
5903 a cache before it is accessed.
5904 You can insert calls to @code{__builtin_prefetch} into code for which
5905 you know addresses of data in memory that is likely to be accessed soon.
5906 If the target supports them, data prefetch instructions will be generated.
5907 If the prefetch is done early enough before the access then the data will
5908 be in the cache by the time it is accessed.
5909
5910 The value of @var{addr} is the address of the memory to prefetch.
5911 There are two optional arguments, @var{rw} and @var{locality}.
5912 The value of @var{rw} is a compile-time constant one or zero; one
5913 means that the prefetch is preparing for a write to the memory address
5914 and zero, the default, means that the prefetch is preparing for a read.
5915 The value @var{locality} must be a compile-time constant integer between
5916 zero and three. A value of zero means that the data has no temporal
5917 locality, so it need not be left in the cache after the access. A value
5918 of three means that the data has a high degree of temporal locality and
5919 should be left in all levels of cache possible. Values of one and two
5920 mean, respectively, a low or moderate degree of temporal locality. The
5921 default is three.
5922
5923 @smallexample
5924 for (i = 0; i < n; i++)
5925 @{
5926 a[i] = a[i] + b[i];
5927 __builtin_prefetch (&a[i+j], 1, 1);
5928 __builtin_prefetch (&b[i+j], 0, 1);
5929 /* @r{@dots{}} */
5930 @}
5931 @end smallexample
5932
5933 Data prefetch does not generate faults if @var{addr} is invalid, but
5934 the address expression itself must be valid. For example, a prefetch
5935 of @code{p->next} will not fault if @code{p->next} is not a valid
5936 address, but evaluation will fault if @code{p} is not a valid address.
5937
5938 If the target does not support data prefetch, the address expression
5939 is evaluated if it includes side effects but no other code is generated
5940 and GCC does not issue a warning.
5941 @end deftypefn
5942
5943 @deftypefn {Built-in Function} double __builtin_huge_val (void)
5944 Returns a positive infinity, if supported by the floating-point format,
5945 else @code{DBL_MAX}. This function is suitable for implementing the
5946 ISO C macro @code{HUGE_VAL}.
5947 @end deftypefn
5948
5949 @deftypefn {Built-in Function} float __builtin_huge_valf (void)
5950 Similar to @code{__builtin_huge_val}, except the return type is @code{float}.
5951 @end deftypefn
5952
5953 @deftypefn {Built-in Function} {long double} __builtin_huge_vall (void)
5954 Similar to @code{__builtin_huge_val}, except the return
5955 type is @code{long double}.
5956 @end deftypefn
5957
5958 @deftypefn {Built-in Function} double __builtin_inf (void)
5959 Similar to @code{__builtin_huge_val}, except a warning is generated
5960 if the target floating-point format does not support infinities.
5961 @end deftypefn
5962
5963 @deftypefn {Built-in Function} _Decimal32 __builtin_infd32 (void)
5964 Similar to @code{__builtin_inf}, except the return type is @code{_Decimal32}.
5965 @end deftypefn
5966
5967 @deftypefn {Built-in Function} _Decimal64 __builtin_infd64 (void)
5968 Similar to @code{__builtin_inf}, except the return type is @code{_Decimal64}.
5969 @end deftypefn
5970
5971 @deftypefn {Built-in Function} _Decimal128 __builtin_infd128 (void)
5972 Similar to @code{__builtin_inf}, except the return type is @code{_Decimal128}.
5973 @end deftypefn
5974
5975 @deftypefn {Built-in Function} float __builtin_inff (void)
5976 Similar to @code{__builtin_inf}, except the return type is @code{float}.
5977 This function is suitable for implementing the ISO C99 macro @code{INFINITY}.
5978 @end deftypefn
5979
5980 @deftypefn {Built-in Function} {long double} __builtin_infl (void)
5981 Similar to @code{__builtin_inf}, except the return
5982 type is @code{long double}.
5983 @end deftypefn
5984
5985 @deftypefn {Built-in Function} double __builtin_nan (const char *str)
5986 This is an implementation of the ISO C99 function @code{nan}.
5987
5988 Since ISO C99 defines this function in terms of @code{strtod}, which we
5989 do not implement, a description of the parsing is in order. The string
5990 is parsed as by @code{strtol}; that is, the base is recognized by
5991 leading @samp{0} or @samp{0x} prefixes. The number parsed is placed
5992 in the significand such that the least significant bit of the number
5993 is at the least significant bit of the significand. The number is
5994 truncated to fit the significand field provided. The significand is
5995 forced to be a quiet NaN@.
5996
5997 This function, if given a string literal all of which would have been
5998 consumed by strtol, is evaluated early enough that it is considered a
5999 compile-time constant.
6000 @end deftypefn
6001
6002 @deftypefn {Built-in Function} _Decimal32 __builtin_nand32 (const char *str)
6003 Similar to @code{__builtin_nan}, except the return type is @code{_Decimal32}.
6004 @end deftypefn
6005
6006 @deftypefn {Built-in Function} _Decimal64 __builtin_nand64 (const char *str)
6007 Similar to @code{__builtin_nan}, except the return type is @code{_Decimal64}.
6008 @end deftypefn
6009
6010 @deftypefn {Built-in Function} _Decimal128 __builtin_nand128 (const char *str)
6011 Similar to @code{__builtin_nan}, except the return type is @code{_Decimal128}.
6012 @end deftypefn
6013
6014 @deftypefn {Built-in Function} float __builtin_nanf (const char *str)
6015 Similar to @code{__builtin_nan}, except the return type is @code{float}.
6016 @end deftypefn
6017
6018 @deftypefn {Built-in Function} {long double} __builtin_nanl (const char *str)
6019 Similar to @code{__builtin_nan}, except the return type is @code{long double}.
6020 @end deftypefn
6021
6022 @deftypefn {Built-in Function} double __builtin_nans (const char *str)
6023 Similar to @code{__builtin_nan}, except the significand is forced
6024 to be a signaling NaN@. The @code{nans} function is proposed by
6025 @uref{http://www.open-std.org/jtc1/sc22/wg14/www/docs/n965.htm,,WG14 N965}.
6026 @end deftypefn
6027
6028 @deftypefn {Built-in Function} float __builtin_nansf (const char *str)
6029 Similar to @code{__builtin_nans}, except the return type is @code{float}.
6030 @end deftypefn
6031
6032 @deftypefn {Built-in Function} {long double} __builtin_nansl (const char *str)
6033 Similar to @code{__builtin_nans}, except the return type is @code{long double}.
6034 @end deftypefn
6035
6036 @deftypefn {Built-in Function} int __builtin_ffs (unsigned int x)
6037 Returns one plus the index of the least significant 1-bit of @var{x}, or
6038 if @var{x} is zero, returns zero.
6039 @end deftypefn
6040
6041 @deftypefn {Built-in Function} int __builtin_clz (unsigned int x)
6042 Returns the number of leading 0-bits in @var{x}, starting at the most
6043 significant bit position. If @var{x} is 0, the result is undefined.
6044 @end deftypefn
6045
6046 @deftypefn {Built-in Function} int __builtin_ctz (unsigned int x)
6047 Returns the number of trailing 0-bits in @var{x}, starting at the least
6048 significant bit position. If @var{x} is 0, the result is undefined.
6049 @end deftypefn
6050
6051 @deftypefn {Built-in Function} int __builtin_popcount (unsigned int x)
6052 Returns the number of 1-bits in @var{x}.
6053 @end deftypefn
6054
6055 @deftypefn {Built-in Function} int __builtin_parity (unsigned int x)
6056 Returns the parity of @var{x}, i.e.@: the number of 1-bits in @var{x}
6057 modulo 2.
6058 @end deftypefn
6059
6060 @deftypefn {Built-in Function} int __builtin_ffsl (unsigned long)
6061 Similar to @code{__builtin_ffs}, except the argument type is
6062 @code{unsigned long}.
6063 @end deftypefn
6064
6065 @deftypefn {Built-in Function} int __builtin_clzl (unsigned long)
6066 Similar to @code{__builtin_clz}, except the argument type is
6067 @code{unsigned long}.
6068 @end deftypefn
6069
6070 @deftypefn {Built-in Function} int __builtin_ctzl (unsigned long)
6071 Similar to @code{__builtin_ctz}, except the argument type is
6072 @code{unsigned long}.
6073 @end deftypefn
6074
6075 @deftypefn {Built-in Function} int __builtin_popcountl (unsigned long)
6076 Similar to @code{__builtin_popcount}, except the argument type is
6077 @code{unsigned long}.
6078 @end deftypefn
6079
6080 @deftypefn {Built-in Function} int __builtin_parityl (unsigned long)
6081 Similar to @code{__builtin_parity}, except the argument type is
6082 @code{unsigned long}.
6083 @end deftypefn
6084
6085 @deftypefn {Built-in Function} int __builtin_ffsll (unsigned long long)
6086 Similar to @code{__builtin_ffs}, except the argument type is
6087 @code{unsigned long long}.
6088 @end deftypefn
6089
6090 @deftypefn {Built-in Function} int __builtin_clzll (unsigned long long)
6091 Similar to @code{__builtin_clz}, except the argument type is
6092 @code{unsigned long long}.
6093 @end deftypefn
6094
6095 @deftypefn {Built-in Function} int __builtin_ctzll (unsigned long long)
6096 Similar to @code{__builtin_ctz}, except the argument type is
6097 @code{unsigned long long}.
6098 @end deftypefn
6099
6100 @deftypefn {Built-in Function} int __builtin_popcountll (unsigned long long)
6101 Similar to @code{__builtin_popcount}, except the argument type is
6102 @code{unsigned long long}.
6103 @end deftypefn
6104
6105 @deftypefn {Built-in Function} int __builtin_parityll (unsigned long long)
6106 Similar to @code{__builtin_parity}, except the argument type is
6107 @code{unsigned long long}.
6108 @end deftypefn
6109
6110 @deftypefn {Built-in Function} double __builtin_powi (double, int)
6111 Returns the first argument raised to the power of the second. Unlike the
6112 @code{pow} function no guarantees about precision and rounding are made.
6113 @end deftypefn
6114
6115 @deftypefn {Built-in Function} float __builtin_powif (float, int)
6116 Similar to @code{__builtin_powi}, except the argument and return types
6117 are @code{float}.
6118 @end deftypefn
6119
6120 @deftypefn {Built-in Function} {long double} __builtin_powil (long double, int)
6121 Similar to @code{__builtin_powi}, except the argument and return types
6122 are @code{long double}.
6123 @end deftypefn
6124
6125 @deftypefn {Built-in Function} int32_t __builtin_bswap32 (int32_t x)
6126 Returns @var{x} with the order of the bytes reversed; for example,
6127 @code{0xaabbccdd} becomes @code{0xddccbbaa}. Byte here always means
6128 exactly 8 bits.
6129 @end deftypefn
6130
6131 @deftypefn {Built-in Function} int64_t __builtin_bswap64 (int64_t x)
6132 Similar to @code{__builtin_bswap32}, except the argument and return types
6133 are 64-bit.
6134 @end deftypefn
6135
6136 @node Target Builtins
6137 @section Built-in Functions Specific to Particular Target Machines
6138
6139 On some target machines, GCC supports many built-in functions specific
6140 to those machines. Generally these generate calls to specific machine
6141 instructions, but allow the compiler to schedule those calls.
6142
6143 @menu
6144 * Alpha Built-in Functions::
6145 * ARM Built-in Functions::
6146 * Blackfin Built-in Functions::
6147 * FR-V Built-in Functions::
6148 * X86 Built-in Functions::
6149 * MIPS DSP Built-in Functions::
6150 * MIPS Paired-Single Support::
6151 * PowerPC AltiVec Built-in Functions::
6152 * SPARC VIS Built-in Functions::
6153 @end menu
6154
6155 @node Alpha Built-in Functions
6156 @subsection Alpha Built-in Functions
6157
6158 These built-in functions are available for the Alpha family of
6159 processors, depending on the command-line switches used.
6160
6161 The following built-in functions are always available. They
6162 all generate the machine instruction that is part of the name.
6163
6164 @smallexample
6165 long __builtin_alpha_implver (void)
6166 long __builtin_alpha_rpcc (void)
6167 long __builtin_alpha_amask (long)
6168 long __builtin_alpha_cmpbge (long, long)
6169 long __builtin_alpha_extbl (long, long)
6170 long __builtin_alpha_extwl (long, long)
6171 long __builtin_alpha_extll (long, long)
6172 long __builtin_alpha_extql (long, long)
6173 long __builtin_alpha_extwh (long, long)
6174 long __builtin_alpha_extlh (long, long)
6175 long __builtin_alpha_extqh (long, long)
6176 long __builtin_alpha_insbl (long, long)
6177 long __builtin_alpha_inswl (long, long)
6178 long __builtin_alpha_insll (long, long)
6179 long __builtin_alpha_insql (long, long)
6180 long __builtin_alpha_inswh (long, long)
6181 long __builtin_alpha_inslh (long, long)
6182 long __builtin_alpha_insqh (long, long)
6183 long __builtin_alpha_mskbl (long, long)
6184 long __builtin_alpha_mskwl (long, long)
6185 long __builtin_alpha_mskll (long, long)
6186 long __builtin_alpha_mskql (long, long)
6187 long __builtin_alpha_mskwh (long, long)
6188 long __builtin_alpha_msklh (long, long)
6189 long __builtin_alpha_mskqh (long, long)
6190 long __builtin_alpha_umulh (long, long)
6191 long __builtin_alpha_zap (long, long)
6192 long __builtin_alpha_zapnot (long, long)
6193 @end smallexample
6194
6195 The following built-in functions are always with @option{-mmax}
6196 or @option{-mcpu=@var{cpu}} where @var{cpu} is @code{pca56} or
6197 later. They all generate the machine instruction that is part
6198 of the name.
6199
6200 @smallexample
6201 long __builtin_alpha_pklb (long)
6202 long __builtin_alpha_pkwb (long)
6203 long __builtin_alpha_unpkbl (long)
6204 long __builtin_alpha_unpkbw (long)
6205 long __builtin_alpha_minub8 (long, long)
6206 long __builtin_alpha_minsb8 (long, long)
6207 long __builtin_alpha_minuw4 (long, long)
6208 long __builtin_alpha_minsw4 (long, long)
6209 long __builtin_alpha_maxub8 (long, long)
6210 long __builtin_alpha_maxsb8 (long, long)
6211 long __builtin_alpha_maxuw4 (long, long)
6212 long __builtin_alpha_maxsw4 (long, long)
6213 long __builtin_alpha_perr (long, long)
6214 @end smallexample
6215
6216 The following built-in functions are always with @option{-mcix}
6217 or @option{-mcpu=@var{cpu}} where @var{cpu} is @code{ev67} or
6218 later. They all generate the machine instruction that is part
6219 of the name.
6220
6221 @smallexample
6222 long __builtin_alpha_cttz (long)
6223 long __builtin_alpha_ctlz (long)
6224 long __builtin_alpha_ctpop (long)
6225 @end smallexample
6226
6227 The following builtins are available on systems that use the OSF/1
6228 PALcode. Normally they invoke the @code{rduniq} and @code{wruniq}
6229 PAL calls, but when invoked with @option{-mtls-kernel}, they invoke
6230 @code{rdval} and @code{wrval}.
6231
6232 @smallexample
6233 void *__builtin_thread_pointer (void)
6234 void __builtin_set_thread_pointer (void *)
6235 @end smallexample
6236
6237 @node ARM Built-in Functions
6238 @subsection ARM Built-in Functions
6239
6240 These built-in functions are available for the ARM family of
6241 processors, when the @option{-mcpu=iwmmxt} switch is used:
6242
6243 @smallexample
6244 typedef int v2si __attribute__ ((vector_size (8)));
6245 typedef short v4hi __attribute__ ((vector_size (8)));
6246 typedef char v8qi __attribute__ ((vector_size (8)));
6247
6248 int __builtin_arm_getwcx (int)
6249 void __builtin_arm_setwcx (int, int)
6250 int __builtin_arm_textrmsb (v8qi, int)
6251 int __builtin_arm_textrmsh (v4hi, int)
6252 int __builtin_arm_textrmsw (v2si, int)
6253 int __builtin_arm_textrmub (v8qi, int)
6254 int __builtin_arm_textrmuh (v4hi, int)
6255 int __builtin_arm_textrmuw (v2si, int)
6256 v8qi __builtin_arm_tinsrb (v8qi, int)
6257 v4hi __builtin_arm_tinsrh (v4hi, int)
6258 v2si __builtin_arm_tinsrw (v2si, int)
6259 long long __builtin_arm_tmia (long long, int, int)
6260 long long __builtin_arm_tmiabb (long long, int, int)
6261 long long __builtin_arm_tmiabt (long long, int, int)
6262 long long __builtin_arm_tmiaph (long long, int, int)
6263 long long __builtin_arm_tmiatb (long long, int, int)
6264 long long __builtin_arm_tmiatt (long long, int, int)
6265 int __builtin_arm_tmovmskb (v8qi)
6266 int __builtin_arm_tmovmskh (v4hi)
6267 int __builtin_arm_tmovmskw (v2si)
6268 long long __builtin_arm_waccb (v8qi)
6269 long long __builtin_arm_wacch (v4hi)
6270 long long __builtin_arm_waccw (v2si)
6271 v8qi __builtin_arm_waddb (v8qi, v8qi)
6272 v8qi __builtin_arm_waddbss (v8qi, v8qi)
6273 v8qi __builtin_arm_waddbus (v8qi, v8qi)
6274 v4hi __builtin_arm_waddh (v4hi, v4hi)
6275 v4hi __builtin_arm_waddhss (v4hi, v4hi)
6276 v4hi __builtin_arm_waddhus (v4hi, v4hi)
6277 v2si __builtin_arm_waddw (v2si, v2si)
6278 v2si __builtin_arm_waddwss (v2si, v2si)
6279 v2si __builtin_arm_waddwus (v2si, v2si)
6280 v8qi __builtin_arm_walign (v8qi, v8qi, int)
6281 long long __builtin_arm_wand(long long, long long)
6282 long long __builtin_arm_wandn (long long, long long)
6283 v8qi __builtin_arm_wavg2b (v8qi, v8qi)
6284 v8qi __builtin_arm_wavg2br (v8qi, v8qi)
6285 v4hi __builtin_arm_wavg2h (v4hi, v4hi)
6286 v4hi __builtin_arm_wavg2hr (v4hi, v4hi)
6287 v8qi __builtin_arm_wcmpeqb (v8qi, v8qi)
6288 v4hi __builtin_arm_wcmpeqh (v4hi, v4hi)
6289 v2si __builtin_arm_wcmpeqw (v2si, v2si)
6290 v8qi __builtin_arm_wcmpgtsb (v8qi, v8qi)
6291 v4hi __builtin_arm_wcmpgtsh (v4hi, v4hi)
6292 v2si __builtin_arm_wcmpgtsw (v2si, v2si)
6293 v8qi __builtin_arm_wcmpgtub (v8qi, v8qi)
6294 v4hi __builtin_arm_wcmpgtuh (v4hi, v4hi)
6295 v2si __builtin_arm_wcmpgtuw (v2si, v2si)
6296 long long __builtin_arm_wmacs (long long, v4hi, v4hi)
6297 long long __builtin_arm_wmacsz (v4hi, v4hi)
6298 long long __builtin_arm_wmacu (long long, v4hi, v4hi)
6299 long long __builtin_arm_wmacuz (v4hi, v4hi)
6300 v4hi __builtin_arm_wmadds (v4hi, v4hi)
6301 v4hi __builtin_arm_wmaddu (v4hi, v4hi)
6302 v8qi __builtin_arm_wmaxsb (v8qi, v8qi)
6303 v4hi __builtin_arm_wmaxsh (v4hi, v4hi)
6304 v2si __builtin_arm_wmaxsw (v2si, v2si)
6305 v8qi __builtin_arm_wmaxub (v8qi, v8qi)
6306 v4hi __builtin_arm_wmaxuh (v4hi, v4hi)
6307 v2si __builtin_arm_wmaxuw (v2si, v2si)
6308 v8qi __builtin_arm_wminsb (v8qi, v8qi)
6309 v4hi __builtin_arm_wminsh (v4hi, v4hi)
6310 v2si __builtin_arm_wminsw (v2si, v2si)
6311 v8qi __builtin_arm_wminub (v8qi, v8qi)
6312 v4hi __builtin_arm_wminuh (v4hi, v4hi)
6313 v2si __builtin_arm_wminuw (v2si, v2si)
6314 v4hi __builtin_arm_wmulsm (v4hi, v4hi)
6315 v4hi __builtin_arm_wmulul (v4hi, v4hi)
6316 v4hi __builtin_arm_wmulum (v4hi, v4hi)
6317 long long __builtin_arm_wor (long long, long long)
6318 v2si __builtin_arm_wpackdss (long long, long long)
6319 v2si __builtin_arm_wpackdus (long long, long long)
6320 v8qi __builtin_arm_wpackhss (v4hi, v4hi)
6321 v8qi __builtin_arm_wpackhus (v4hi, v4hi)
6322 v4hi __builtin_arm_wpackwss (v2si, v2si)
6323 v4hi __builtin_arm_wpackwus (v2si, v2si)
6324 long long __builtin_arm_wrord (long long, long long)
6325 long long __builtin_arm_wrordi (long long, int)
6326 v4hi __builtin_arm_wrorh (v4hi, long long)
6327 v4hi __builtin_arm_wrorhi (v4hi, int)
6328 v2si __builtin_arm_wrorw (v2si, long long)
6329 v2si __builtin_arm_wrorwi (v2si, int)
6330 v2si __builtin_arm_wsadb (v8qi, v8qi)
6331 v2si __builtin_arm_wsadbz (v8qi, v8qi)
6332 v2si __builtin_arm_wsadh (v4hi, v4hi)
6333 v2si __builtin_arm_wsadhz (v4hi, v4hi)
6334 v4hi __builtin_arm_wshufh (v4hi, int)
6335 long long __builtin_arm_wslld (long long, long long)
6336 long long __builtin_arm_wslldi (long long, int)
6337 v4hi __builtin_arm_wsllh (v4hi, long long)
6338 v4hi __builtin_arm_wsllhi (v4hi, int)
6339 v2si __builtin_arm_wsllw (v2si, long long)
6340 v2si __builtin_arm_wsllwi (v2si, int)
6341 long long __builtin_arm_wsrad (long long, long long)
6342 long long __builtin_arm_wsradi (long long, int)
6343 v4hi __builtin_arm_wsrah (v4hi, long long)
6344 v4hi __builtin_arm_wsrahi (v4hi, int)
6345 v2si __builtin_arm_wsraw (v2si, long long)
6346 v2si __builtin_arm_wsrawi (v2si, int)
6347 long long __builtin_arm_wsrld (long long, long long)
6348 long long __builtin_arm_wsrldi (long long, int)
6349 v4hi __builtin_arm_wsrlh (v4hi, long long)
6350 v4hi __builtin_arm_wsrlhi (v4hi, int)
6351 v2si __builtin_arm_wsrlw (v2si, long long)
6352 v2si __builtin_arm_wsrlwi (v2si, int)
6353 v8qi __builtin_arm_wsubb (v8qi, v8qi)
6354 v8qi __builtin_arm_wsubbss (v8qi, v8qi)
6355 v8qi __builtin_arm_wsubbus (v8qi, v8qi)
6356 v4hi __builtin_arm_wsubh (v4hi, v4hi)
6357 v4hi __builtin_arm_wsubhss (v4hi, v4hi)
6358 v4hi __builtin_arm_wsubhus (v4hi, v4hi)
6359 v2si __builtin_arm_wsubw (v2si, v2si)
6360 v2si __builtin_arm_wsubwss (v2si, v2si)
6361 v2si __builtin_arm_wsubwus (v2si, v2si)
6362 v4hi __builtin_arm_wunpckehsb (v8qi)
6363 v2si __builtin_arm_wunpckehsh (v4hi)
6364 long long __builtin_arm_wunpckehsw (v2si)
6365 v4hi __builtin_arm_wunpckehub (v8qi)
6366 v2si __builtin_arm_wunpckehuh (v4hi)
6367 long long __builtin_arm_wunpckehuw (v2si)
6368 v4hi __builtin_arm_wunpckelsb (v8qi)
6369 v2si __builtin_arm_wunpckelsh (v4hi)
6370 long long __builtin_arm_wunpckelsw (v2si)
6371 v4hi __builtin_arm_wunpckelub (v8qi)
6372 v2si __builtin_arm_wunpckeluh (v4hi)
6373 long long __builtin_arm_wunpckeluw (v2si)
6374 v8qi __builtin_arm_wunpckihb (v8qi, v8qi)
6375 v4hi __builtin_arm_wunpckihh (v4hi, v4hi)
6376 v2si __builtin_arm_wunpckihw (v2si, v2si)
6377 v8qi __builtin_arm_wunpckilb (v8qi, v8qi)
6378 v4hi __builtin_arm_wunpckilh (v4hi, v4hi)
6379 v2si __builtin_arm_wunpckilw (v2si, v2si)
6380 long long __builtin_arm_wxor (long long, long long)
6381 long long __builtin_arm_wzero ()
6382 @end smallexample
6383
6384 @node Blackfin Built-in Functions
6385 @subsection Blackfin Built-in Functions
6386
6387 Currently, there are two Blackfin-specific built-in functions. These are
6388 used for generating @code{CSYNC} and @code{SSYNC} machine insns without
6389 using inline assembly; by using these built-in functions the compiler can
6390 automatically add workarounds for hardware errata involving these
6391 instructions. These functions are named as follows:
6392
6393 @smallexample
6394 void __builtin_bfin_csync (void)
6395 void __builtin_bfin_ssync (void)
6396 @end smallexample
6397
6398 @node FR-V Built-in Functions
6399 @subsection FR-V Built-in Functions
6400
6401 GCC provides many FR-V-specific built-in functions. In general,
6402 these functions are intended to be compatible with those described
6403 by @cite{FR-V Family, Softune C/C++ Compiler Manual (V6), Fujitsu
6404 Semiconductor}. The two exceptions are @code{__MDUNPACKH} and
6405 @code{__MBTOHE}, the gcc forms of which pass 128-bit values by
6406 pointer rather than by value.
6407
6408 Most of the functions are named after specific FR-V instructions.
6409 Such functions are said to be ``directly mapped'' and are summarized
6410 here in tabular form.
6411
6412 @menu
6413 * Argument Types::
6414 * Directly-mapped Integer Functions::
6415 * Directly-mapped Media Functions::
6416 * Raw read/write Functions::
6417 * Other Built-in Functions::
6418 @end menu
6419
6420 @node Argument Types
6421 @subsubsection Argument Types
6422
6423 The arguments to the built-in functions can be divided into three groups:
6424 register numbers, compile-time constants and run-time values. In order
6425 to make this classification clear at a glance, the arguments and return
6426 values are given the following pseudo types:
6427
6428 @multitable @columnfractions .20 .30 .15 .35
6429 @item Pseudo type @tab Real C type @tab Constant? @tab Description
6430 @item @code{uh} @tab @code{unsigned short} @tab No @tab an unsigned halfword
6431 @item @code{uw1} @tab @code{unsigned int} @tab No @tab an unsigned word
6432 @item @code{sw1} @tab @code{int} @tab No @tab a signed word
6433 @item @code{uw2} @tab @code{unsigned long long} @tab No
6434 @tab an unsigned doubleword
6435 @item @code{sw2} @tab @code{long long} @tab No @tab a signed doubleword
6436 @item @code{const} @tab @code{int} @tab Yes @tab an integer constant
6437 @item @code{acc} @tab @code{int} @tab Yes @tab an ACC register number
6438 @item @code{iacc} @tab @code{int} @tab Yes @tab an IACC register number
6439 @end multitable
6440
6441 These pseudo types are not defined by GCC, they are simply a notational
6442 convenience used in this manual.
6443
6444 Arguments of type @code{uh}, @code{uw1}, @code{sw1}, @code{uw2}
6445 and @code{sw2} are evaluated at run time. They correspond to
6446 register operands in the underlying FR-V instructions.
6447
6448 @code{const} arguments represent immediate operands in the underlying
6449 FR-V instructions. They must be compile-time constants.
6450
6451 @code{acc} arguments are evaluated at compile time and specify the number
6452 of an accumulator register. For example, an @code{acc} argument of 2
6453 will select the ACC2 register.
6454
6455 @code{iacc} arguments are similar to @code{acc} arguments but specify the
6456 number of an IACC register. See @pxref{Other Built-in Functions}
6457 for more details.
6458
6459 @node Directly-mapped Integer Functions
6460 @subsubsection Directly-mapped Integer Functions
6461
6462 The functions listed below map directly to FR-V I-type instructions.
6463
6464 @multitable @columnfractions .45 .32 .23
6465 @item Function prototype @tab Example usage @tab Assembly output
6466 @item @code{sw1 __ADDSS (sw1, sw1)}
6467 @tab @code{@var{c} = __ADDSS (@var{a}, @var{b})}
6468 @tab @code{ADDSS @var{a},@var{b},@var{c}}
6469 @item @code{sw1 __SCAN (sw1, sw1)}
6470 @tab @code{@var{c} = __SCAN (@var{a}, @var{b})}
6471 @tab @code{SCAN @var{a},@var{b},@var{c}}
6472 @item @code{sw1 __SCUTSS (sw1)}
6473 @tab @code{@var{b} = __SCUTSS (@var{a})}
6474 @tab @code{SCUTSS @var{a},@var{b}}
6475 @item @code{sw1 __SLASS (sw1, sw1)}
6476 @tab @code{@var{c} = __SLASS (@var{a}, @var{b})}
6477 @tab @code{SLASS @var{a},@var{b},@var{c}}
6478 @item @code{void __SMASS (sw1, sw1)}
6479 @tab @code{__SMASS (@var{a}, @var{b})}
6480 @tab @code{SMASS @var{a},@var{b}}
6481 @item @code{void __SMSSS (sw1, sw1)}
6482 @tab @code{__SMSSS (@var{a}, @var{b})}
6483 @tab @code{SMSSS @var{a},@var{b}}
6484 @item @code{void __SMU (sw1, sw1)}
6485 @tab @code{__SMU (@var{a}, @var{b})}
6486 @tab @code{SMU @var{a},@var{b}}
6487 @item @code{sw2 __SMUL (sw1, sw1)}
6488 @tab @code{@var{c} = __SMUL (@var{a}, @var{b})}
6489 @tab @code{SMUL @var{a},@var{b},@var{c}}
6490 @item @code{sw1 __SUBSS (sw1, sw1)}
6491 @tab @code{@var{c} = __SUBSS (@var{a}, @var{b})}
6492 @tab @code{SUBSS @var{a},@var{b},@var{c}}
6493 @item @code{uw2 __UMUL (uw1, uw1)}
6494 @tab @code{@var{c} = __UMUL (@var{a}, @var{b})}
6495 @tab @code{UMUL @var{a},@var{b},@var{c}}
6496 @end multitable
6497
6498 @node Directly-mapped Media Functions
6499 @subsubsection Directly-mapped Media Functions
6500
6501 The functions listed below map directly to FR-V M-type instructions.
6502
6503 @multitable @columnfractions .45 .32 .23
6504 @item Function prototype @tab Example usage @tab Assembly output
6505 @item @code{uw1 __MABSHS (sw1)}
6506 @tab @code{@var{b} = __MABSHS (@var{a})}
6507 @tab @code{MABSHS @var{a},@var{b}}
6508 @item @code{void __MADDACCS (acc, acc)}
6509 @tab @code{__MADDACCS (@var{b}, @var{a})}
6510 @tab @code{MADDACCS @var{a},@var{b}}
6511 @item @code{sw1 __MADDHSS (sw1, sw1)}
6512 @tab @code{@var{c} = __MADDHSS (@var{a}, @var{b})}
6513 @tab @code{MADDHSS @var{a},@var{b},@var{c}}
6514 @item @code{uw1 __MADDHUS (uw1, uw1)}
6515 @tab @code{@var{c} = __MADDHUS (@var{a}, @var{b})}
6516 @tab @code{MADDHUS @var{a},@var{b},@var{c}}
6517 @item @code{uw1 __MAND (uw1, uw1)}
6518 @tab @code{@var{c} = __MAND (@var{a}, @var{b})}
6519 @tab @code{MAND @var{a},@var{b},@var{c}}
6520 @item @code{void __MASACCS (acc, acc)}
6521 @tab @code{__MASACCS (@var{b}, @var{a})}
6522 @tab @code{MASACCS @var{a},@var{b}}
6523 @item @code{uw1 __MAVEH (uw1, uw1)}
6524 @tab @code{@var{c} = __MAVEH (@var{a}, @var{b})}
6525 @tab @code{MAVEH @var{a},@var{b},@var{c}}
6526 @item @code{uw2 __MBTOH (uw1)}
6527 @tab @code{@var{b} = __MBTOH (@var{a})}
6528 @tab @code{MBTOH @var{a},@var{b}}
6529 @item @code{void __MBTOHE (uw1 *, uw1)}
6530 @tab @code{__MBTOHE (&@var{b}, @var{a})}
6531 @tab @code{MBTOHE @var{a},@var{b}}
6532 @item @code{void __MCLRACC (acc)}
6533 @tab @code{__MCLRACC (@var{a})}
6534 @tab @code{MCLRACC @var{a}}
6535 @item @code{void __MCLRACCA (void)}
6536 @tab @code{__MCLRACCA ()}
6537 @tab @code{MCLRACCA}
6538 @item @code{uw1 __Mcop1 (uw1, uw1)}
6539 @tab @code{@var{c} = __Mcop1 (@var{a}, @var{b})}
6540 @tab @code{Mcop1 @var{a},@var{b},@var{c}}
6541 @item @code{uw1 __Mcop2 (uw1, uw1)}
6542 @tab @code{@var{c} = __Mcop2 (@var{a}, @var{b})}
6543 @tab @code{Mcop2 @var{a},@var{b},@var{c}}
6544 @item @code{uw1 __MCPLHI (uw2, const)}
6545 @tab @code{@var{c} = __MCPLHI (@var{a}, @var{b})}
6546 @tab @code{MCPLHI @var{a},#@var{b},@var{c}}
6547 @item @code{uw1 __MCPLI (uw2, const)}
6548 @tab @code{@var{c} = __MCPLI (@var{a}, @var{b})}
6549 @tab @code{MCPLI @var{a},#@var{b},@var{c}}
6550 @item @code{void __MCPXIS (acc, sw1, sw1)}
6551 @tab @code{__MCPXIS (@var{c}, @var{a}, @var{b})}
6552 @tab @code{MCPXIS @var{a},@var{b},@var{c}}
6553 @item @code{void __MCPXIU (acc, uw1, uw1)}
6554 @tab @code{__MCPXIU (@var{c}, @var{a}, @var{b})}
6555 @tab @code{MCPXIU @var{a},@var{b},@var{c}}
6556 @item @code{void __MCPXRS (acc, sw1, sw1)}
6557 @tab @code{__MCPXRS (@var{c}, @var{a}, @var{b})}
6558 @tab @code{MCPXRS @var{a},@var{b},@var{c}}
6559 @item @code{void __MCPXRU (acc, uw1, uw1)}
6560 @tab @code{__MCPXRU (@var{c}, @var{a}, @var{b})}
6561 @tab @code{MCPXRU @var{a},@var{b},@var{c}}
6562 @item @code{uw1 __MCUT (acc, uw1)}
6563 @tab @code{@var{c} = __MCUT (@var{a}, @var{b})}
6564 @tab @code{MCUT @var{a},@var{b},@var{c}}
6565 @item @code{uw1 __MCUTSS (acc, sw1)}
6566 @tab @code{@var{c} = __MCUTSS (@var{a}, @var{b})}
6567 @tab @code{MCUTSS @var{a},@var{b},@var{c}}
6568 @item @code{void __MDADDACCS (acc, acc)}
6569 @tab @code{__MDADDACCS (@var{b}, @var{a})}
6570 @tab @code{MDADDACCS @var{a},@var{b}}
6571 @item @code{void __MDASACCS (acc, acc)}
6572 @tab @code{__MDASACCS (@var{b}, @var{a})}
6573 @tab @code{MDASACCS @var{a},@var{b}}
6574 @item @code{uw2 __MDCUTSSI (acc, const)}
6575 @tab @code{@var{c} = __MDCUTSSI (@var{a}, @var{b})}
6576 @tab @code{MDCUTSSI @var{a},#@var{b},@var{c}}
6577 @item @code{uw2 __MDPACKH (uw2, uw2)}
6578 @tab @code{@var{c} = __MDPACKH (@var{a}, @var{b})}
6579 @tab @code{MDPACKH @var{a},@var{b},@var{c}}
6580 @item @code{uw2 __MDROTLI (uw2, const)}
6581 @tab @code{@var{c} = __MDROTLI (@var{a}, @var{b})}
6582 @tab @code{MDROTLI @var{a},#@var{b},@var{c}}
6583 @item @code{void __MDSUBACCS (acc, acc)}
6584 @tab @code{__MDSUBACCS (@var{b}, @var{a})}
6585 @tab @code{MDSUBACCS @var{a},@var{b}}
6586 @item @code{void __MDUNPACKH (uw1 *, uw2)}
6587 @tab @code{__MDUNPACKH (&@var{b}, @var{a})}
6588 @tab @code{MDUNPACKH @var{a},@var{b}}
6589 @item @code{uw2 __MEXPDHD (uw1, const)}
6590 @tab @code{@var{c} = __MEXPDHD (@var{a}, @var{b})}
6591 @tab @code{MEXPDHD @var{a},#@var{b},@var{c}}
6592 @item @code{uw1 __MEXPDHW (uw1, const)}
6593 @tab @code{@var{c} = __MEXPDHW (@var{a}, @var{b})}
6594 @tab @code{MEXPDHW @var{a},#@var{b},@var{c}}
6595 @item @code{uw1 __MHDSETH (uw1, const)}
6596 @tab @code{@var{c} = __MHDSETH (@var{a}, @var{b})}
6597 @tab @code{MHDSETH @var{a},#@var{b},@var{c}}
6598 @item @code{sw1 __MHDSETS (const)}
6599 @tab @code{@var{b} = __MHDSETS (@var{a})}
6600 @tab @code{MHDSETS #@var{a},@var{b}}
6601 @item @code{uw1 __MHSETHIH (uw1, const)}
6602 @tab @code{@var{b} = __MHSETHIH (@var{b}, @var{a})}
6603 @tab @code{MHSETHIH #@var{a},@var{b}}
6604 @item @code{sw1 __MHSETHIS (sw1, const)}
6605 @tab @code{@var{b} = __MHSETHIS (@var{b}, @var{a})}
6606 @tab @code{MHSETHIS #@var{a},@var{b}}
6607 @item @code{uw1 __MHSETLOH (uw1, const)}
6608 @tab @code{@var{b} = __MHSETLOH (@var{b}, @var{a})}
6609 @tab @code{MHSETLOH #@var{a},@var{b}}
6610 @item @code{sw1 __MHSETLOS (sw1, const)}
6611 @tab @code{@var{b} = __MHSETLOS (@var{b}, @var{a})}
6612 @tab @code{MHSETLOS #@var{a},@var{b}}
6613 @item @code{uw1 __MHTOB (uw2)}
6614 @tab @code{@var{b} = __MHTOB (@var{a})}
6615 @tab @code{MHTOB @var{a},@var{b}}
6616 @item @code{void __MMACHS (acc, sw1, sw1)}
6617 @tab @code{__MMACHS (@var{c}, @var{a}, @var{b})}
6618 @tab @code{MMACHS @var{a},@var{b},@var{c}}
6619 @item @code{void __MMACHU (acc, uw1, uw1)}
6620 @tab @code{__MMACHU (@var{c}, @var{a}, @var{b})}
6621 @tab @code{MMACHU @var{a},@var{b},@var{c}}
6622 @item @code{void __MMRDHS (acc, sw1, sw1)}
6623 @tab @code{__MMRDHS (@var{c}, @var{a}, @var{b})}
6624 @tab @code{MMRDHS @var{a},@var{b},@var{c}}
6625 @item @code{void __MMRDHU (acc, uw1, uw1)}
6626 @tab @code{__MMRDHU (@var{c}, @var{a}, @var{b})}
6627 @tab @code{MMRDHU @var{a},@var{b},@var{c}}
6628 @item @code{void __MMULHS (acc, sw1, sw1)}
6629 @tab @code{__MMULHS (@var{c}, @var{a}, @var{b})}
6630 @tab @code{MMULHS @var{a},@var{b},@var{c}}
6631 @item @code{void __MMULHU (acc, uw1, uw1)}
6632 @tab @code{__MMULHU (@var{c}, @var{a}, @var{b})}
6633 @tab @code{MMULHU @var{a},@var{b},@var{c}}
6634 @item @code{void __MMULXHS (acc, sw1, sw1)}
6635 @tab @code{__MMULXHS (@var{c}, @var{a}, @var{b})}
6636 @tab @code{MMULXHS @var{a},@var{b},@var{c}}
6637 @item @code{void __MMULXHU (acc, uw1, uw1)}
6638 @tab @code{__MMULXHU (@var{c}, @var{a}, @var{b})}
6639 @tab @code{MMULXHU @var{a},@var{b},@var{c}}
6640 @item @code{uw1 __MNOT (uw1)}
6641 @tab @code{@var{b} = __MNOT (@var{a})}
6642 @tab @code{MNOT @var{a},@var{b}}
6643 @item @code{uw1 __MOR (uw1, uw1)}
6644 @tab @code{@var{c} = __MOR (@var{a}, @var{b})}
6645 @tab @code{MOR @var{a},@var{b},@var{c}}
6646 @item @code{uw1 __MPACKH (uh, uh)}
6647 @tab @code{@var{c} = __MPACKH (@var{a}, @var{b})}
6648 @tab @code{MPACKH @var{a},@var{b},@var{c}}
6649 @item @code{sw2 __MQADDHSS (sw2, sw2)}
6650 @tab @code{@var{c} = __MQADDHSS (@var{a}, @var{b})}
6651 @tab @code{MQADDHSS @var{a},@var{b},@var{c}}
6652 @item @code{uw2 __MQADDHUS (uw2, uw2)}
6653 @tab @code{@var{c} = __MQADDHUS (@var{a}, @var{b})}
6654 @tab @code{MQADDHUS @var{a},@var{b},@var{c}}
6655 @item @code{void __MQCPXIS (acc, sw2, sw2)}
6656 @tab @code{__MQCPXIS (@var{c}, @var{a}, @var{b})}
6657 @tab @code{MQCPXIS @var{a},@var{b},@var{c}}
6658 @item @code{void __MQCPXIU (acc, uw2, uw2)}
6659 @tab @code{__MQCPXIU (@var{c}, @var{a}, @var{b})}
6660 @tab @code{MQCPXIU @var{a},@var{b},@var{c}}
6661 @item @code{void __MQCPXRS (acc, sw2, sw2)}
6662 @tab @code{__MQCPXRS (@var{c}, @var{a}, @var{b})}
6663 @tab @code{MQCPXRS @var{a},@var{b},@var{c}}
6664 @item @code{void __MQCPXRU (acc, uw2, uw2)}
6665 @tab @code{__MQCPXRU (@var{c}, @var{a}, @var{b})}
6666 @tab @code{MQCPXRU @var{a},@var{b},@var{c}}
6667 @item @code{sw2 __MQLCLRHS (sw2, sw2)}
6668 @tab @code{@var{c} = __MQLCLRHS (@var{a}, @var{b})}
6669 @tab @code{MQLCLRHS @var{a},@var{b},@var{c}}
6670 @item @code{sw2 __MQLMTHS (sw2, sw2)}
6671 @tab @code{@var{c} = __MQLMTHS (@var{a}, @var{b})}
6672 @tab @code{MQLMTHS @var{a},@var{b},@var{c}}
6673 @item @code{void __MQMACHS (acc, sw2, sw2)}
6674 @tab @code{__MQMACHS (@var{c}, @var{a}, @var{b})}
6675 @tab @code{MQMACHS @var{a},@var{b},@var{c}}
6676 @item @code{void __MQMACHU (acc, uw2, uw2)}
6677 @tab @code{__MQMACHU (@var{c}, @var{a}, @var{b})}
6678 @tab @code{MQMACHU @var{a},@var{b},@var{c}}
6679 @item @code{void __MQMACXHS (acc, sw2, sw2)}
6680 @tab @code{__MQMACXHS (@var{c}, @var{a}, @var{b})}
6681 @tab @code{MQMACXHS @var{a},@var{b},@var{c}}
6682 @item @code{void __MQMULHS (acc, sw2, sw2)}
6683 @tab @code{__MQMULHS (@var{c}, @var{a}, @var{b})}
6684 @tab @code{MQMULHS @var{a},@var{b},@var{c}}
6685 @item @code{void __MQMULHU (acc, uw2, uw2)}
6686 @tab @code{__MQMULHU (@var{c}, @var{a}, @var{b})}
6687 @tab @code{MQMULHU @var{a},@var{b},@var{c}}
6688 @item @code{void __MQMULXHS (acc, sw2, sw2)}
6689 @tab @code{__MQMULXHS (@var{c}, @var{a}, @var{b})}
6690 @tab @code{MQMULXHS @var{a},@var{b},@var{c}}
6691 @item @code{void __MQMULXHU (acc, uw2, uw2)}
6692 @tab @code{__MQMULXHU (@var{c}, @var{a}, @var{b})}
6693 @tab @code{MQMULXHU @var{a},@var{b},@var{c}}
6694 @item @code{sw2 __MQSATHS (sw2, sw2)}
6695 @tab @code{@var{c} = __MQSATHS (@var{a}, @var{b})}
6696 @tab @code{MQSATHS @var{a},@var{b},@var{c}}
6697 @item @code{uw2 __MQSLLHI (uw2, int)}
6698 @tab @code{@var{c} = __MQSLLHI (@var{a}, @var{b})}
6699 @tab @code{MQSLLHI @var{a},@var{b},@var{c}}
6700 @item @code{sw2 __MQSRAHI (sw2, int)}
6701 @tab @code{@var{c} = __MQSRAHI (@var{a}, @var{b})}
6702 @tab @code{MQSRAHI @var{a},@var{b},@var{c}}
6703 @item @code{sw2 __MQSUBHSS (sw2, sw2)}
6704 @tab @code{@var{c} = __MQSUBHSS (@var{a}, @var{b})}
6705 @tab @code{MQSUBHSS @var{a},@var{b},@var{c}}
6706 @item @code{uw2 __MQSUBHUS (uw2, uw2)}
6707 @tab @code{@var{c} = __MQSUBHUS (@var{a}, @var{b})}
6708 @tab @code{MQSUBHUS @var{a},@var{b},@var{c}}
6709 @item @code{void __MQXMACHS (acc, sw2, sw2)}
6710 @tab @code{__MQXMACHS (@var{c}, @var{a}, @var{b})}
6711 @tab @code{MQXMACHS @var{a},@var{b},@var{c}}
6712 @item @code{void __MQXMACXHS (acc, sw2, sw2)}
6713 @tab @code{__MQXMACXHS (@var{c}, @var{a}, @var{b})}
6714 @tab @code{MQXMACXHS @var{a},@var{b},@var{c}}
6715 @item @code{uw1 __MRDACC (acc)}
6716 @tab @code{@var{b} = __MRDACC (@var{a})}
6717 @tab @code{MRDACC @var{a},@var{b}}
6718 @item @code{uw1 __MRDACCG (acc)}
6719 @tab @code{@var{b} = __MRDACCG (@var{a})}
6720 @tab @code{MRDACCG @var{a},@var{b}}
6721 @item @code{uw1 __MROTLI (uw1, const)}
6722 @tab @code{@var{c} = __MROTLI (@var{a}, @var{b})}
6723 @tab @code{MROTLI @var{a},#@var{b},@var{c}}
6724 @item @code{uw1 __MROTRI (uw1, const)}
6725 @tab @code{@var{c} = __MROTRI (@var{a}, @var{b})}
6726 @tab @code{MROTRI @var{a},#@var{b},@var{c}}
6727 @item @code{sw1 __MSATHS (sw1, sw1)}
6728 @tab @code{@var{c} = __MSATHS (@var{a}, @var{b})}
6729 @tab @code{MSATHS @var{a},@var{b},@var{c}}
6730 @item @code{uw1 __MSATHU (uw1, uw1)}
6731 @tab @code{@var{c} = __MSATHU (@var{a}, @var{b})}
6732 @tab @code{MSATHU @var{a},@var{b},@var{c}}
6733 @item @code{uw1 __MSLLHI (uw1, const)}
6734 @tab @code{@var{c} = __MSLLHI (@var{a}, @var{b})}
6735 @tab @code{MSLLHI @var{a},#@var{b},@var{c}}
6736 @item @code{sw1 __MSRAHI (sw1, const)}
6737 @tab @code{@var{c} = __MSRAHI (@var{a}, @var{b})}
6738 @tab @code{MSRAHI @var{a},#@var{b},@var{c}}
6739 @item @code{uw1 __MSRLHI (uw1, const)}
6740 @tab @code{@var{c} = __MSRLHI (@var{a}, @var{b})}
6741 @tab @code{MSRLHI @var{a},#@var{b},@var{c}}
6742 @item @code{void __MSUBACCS (acc, acc)}
6743 @tab @code{__MSUBACCS (@var{b}, @var{a})}
6744 @tab @code{MSUBACCS @var{a},@var{b}}
6745 @item @code{sw1 __MSUBHSS (sw1, sw1)}
6746 @tab @code{@var{c} = __MSUBHSS (@var{a}, @var{b})}
6747 @tab @code{MSUBHSS @var{a},@var{b},@var{c}}
6748 @item @code{uw1 __MSUBHUS (uw1, uw1)}
6749 @tab @code{@var{c} = __MSUBHUS (@var{a}, @var{b})}
6750 @tab @code{MSUBHUS @var{a},@var{b},@var{c}}
6751 @item @code{void __MTRAP (void)}
6752 @tab @code{__MTRAP ()}
6753 @tab @code{MTRAP}
6754 @item @code{uw2 __MUNPACKH (uw1)}
6755 @tab @code{@var{b} = __MUNPACKH (@var{a})}
6756 @tab @code{MUNPACKH @var{a},@var{b}}
6757 @item @code{uw1 __MWCUT (uw2, uw1)}
6758 @tab @code{@var{c} = __MWCUT (@var{a}, @var{b})}
6759 @tab @code{MWCUT @var{a},@var{b},@var{c}}
6760 @item @code{void __MWTACC (acc, uw1)}
6761 @tab @code{__MWTACC (@var{b}, @var{a})}
6762 @tab @code{MWTACC @var{a},@var{b}}
6763 @item @code{void __MWTACCG (acc, uw1)}
6764 @tab @code{__MWTACCG (@var{b}, @var{a})}
6765 @tab @code{MWTACCG @var{a},@var{b}}
6766 @item @code{uw1 __MXOR (uw1, uw1)}
6767 @tab @code{@var{c} = __MXOR (@var{a}, @var{b})}
6768 @tab @code{MXOR @var{a},@var{b},@var{c}}
6769 @end multitable
6770
6771 @node Raw read/write Functions
6772 @subsubsection Raw read/write Functions
6773
6774 This sections describes built-in functions related to read and write
6775 instructions to access memory. These functions generate
6776 @code{membar} instructions to flush the I/O load and stores where
6777 appropriate, as described in Fujitsu's manual described above.
6778
6779 @table @code
6780
6781 @item unsigned char __builtin_read8 (void *@var{data})
6782 @item unsigned short __builtin_read16 (void *@var{data})
6783 @item unsigned long __builtin_read32 (void *@var{data})
6784 @item unsigned long long __builtin_read64 (void *@var{data})
6785
6786 @item void __builtin_write8 (void *@var{data}, unsigned char @var{datum})
6787 @item void __builtin_write16 (void *@var{data}, unsigned short @var{datum})
6788 @item void __builtin_write32 (void *@var{data}, unsigned long @var{datum})
6789 @item void __builtin_write64 (void *@var{data}, unsigned long long @var{datum})
6790 @end table
6791
6792 @node Other Built-in Functions
6793 @subsubsection Other Built-in Functions
6794
6795 This section describes built-in functions that are not named after
6796 a specific FR-V instruction.
6797
6798 @table @code
6799 @item sw2 __IACCreadll (iacc @var{reg})
6800 Return the full 64-bit value of IACC0@. The @var{reg} argument is reserved
6801 for future expansion and must be 0.
6802
6803 @item sw1 __IACCreadl (iacc @var{reg})
6804 Return the value of IACC0H if @var{reg} is 0 and IACC0L if @var{reg} is 1.
6805 Other values of @var{reg} are rejected as invalid.
6806
6807 @item void __IACCsetll (iacc @var{reg}, sw2 @var{x})
6808 Set the full 64-bit value of IACC0 to @var{x}. The @var{reg} argument
6809 is reserved for future expansion and must be 0.
6810
6811 @item void __IACCsetl (iacc @var{reg}, sw1 @var{x})
6812 Set IACC0H to @var{x} if @var{reg} is 0 and IACC0L to @var{x} if @var{reg}
6813 is 1. Other values of @var{reg} are rejected as invalid.
6814
6815 @item void __data_prefetch0 (const void *@var{x})
6816 Use the @code{dcpl} instruction to load the contents of address @var{x}
6817 into the data cache.
6818
6819 @item void __data_prefetch (const void *@var{x})
6820 Use the @code{nldub} instruction to load the contents of address @var{x}
6821 into the data cache. The instruction will be issued in slot I1@.
6822 @end table
6823
6824 @node X86 Built-in Functions
6825 @subsection X86 Built-in Functions
6826
6827 These built-in functions are available for the i386 and x86-64 family
6828 of computers, depending on the command-line switches used.
6829
6830 Note that, if you specify command-line switches such as @option{-msse},
6831 the compiler could use the extended instruction sets even if the built-ins
6832 are not used explicitly in the program. For this reason, applications
6833 which perform runtime CPU detection must compile separate files for each
6834 supported architecture, using the appropriate flags. In particular,
6835 the file containing the CPU detection code should be compiled without
6836 these options.
6837
6838 The following machine modes are available for use with MMX built-in functions
6839 (@pxref{Vector Extensions}): @code{V2SI} for a vector of two 32-bit integers,
6840 @code{V4HI} for a vector of four 16-bit integers, and @code{V8QI} for a
6841 vector of eight 8-bit integers. Some of the built-in functions operate on
6842 MMX registers as a whole 64-bit entity, these use @code{DI} as their mode.
6843
6844 If 3Dnow extensions are enabled, @code{V2SF} is used as a mode for a vector
6845 of two 32-bit floating point values.
6846
6847 If SSE extensions are enabled, @code{V4SF} is used for a vector of four 32-bit
6848 floating point values. Some instructions use a vector of four 32-bit
6849 integers, these use @code{V4SI}. Finally, some instructions operate on an
6850 entire vector register, interpreting it as a 128-bit integer, these use mode
6851 @code{TI}.
6852
6853 The following built-in functions are made available by @option{-mmmx}.
6854 All of them generate the machine instruction that is part of the name.
6855
6856 @smallexample
6857 v8qi __builtin_ia32_paddb (v8qi, v8qi)
6858 v4hi __builtin_ia32_paddw (v4hi, v4hi)
6859 v2si __builtin_ia32_paddd (v2si, v2si)
6860 v8qi __builtin_ia32_psubb (v8qi, v8qi)
6861 v4hi __builtin_ia32_psubw (v4hi, v4hi)
6862 v2si __builtin_ia32_psubd (v2si, v2si)
6863 v8qi __builtin_ia32_paddsb (v8qi, v8qi)
6864 v4hi __builtin_ia32_paddsw (v4hi, v4hi)
6865 v8qi __builtin_ia32_psubsb (v8qi, v8qi)
6866 v4hi __builtin_ia32_psubsw (v4hi, v4hi)
6867 v8qi __builtin_ia32_paddusb (v8qi, v8qi)
6868 v4hi __builtin_ia32_paddusw (v4hi, v4hi)
6869 v8qi __builtin_ia32_psubusb (v8qi, v8qi)
6870 v4hi __builtin_ia32_psubusw (v4hi, v4hi)
6871 v4hi __builtin_ia32_pmullw (v4hi, v4hi)
6872 v4hi __builtin_ia32_pmulhw (v4hi, v4hi)
6873 di __builtin_ia32_pand (di, di)
6874 di __builtin_ia32_pandn (di,di)
6875 di __builtin_ia32_por (di, di)
6876 di __builtin_ia32_pxor (di, di)
6877 v8qi __builtin_ia32_pcmpeqb (v8qi, v8qi)
6878 v4hi __builtin_ia32_pcmpeqw (v4hi, v4hi)
6879 v2si __builtin_ia32_pcmpeqd (v2si, v2si)
6880 v8qi __builtin_ia32_pcmpgtb (v8qi, v8qi)
6881 v4hi __builtin_ia32_pcmpgtw (v4hi, v4hi)
6882 v2si __builtin_ia32_pcmpgtd (v2si, v2si)
6883 v8qi __builtin_ia32_punpckhbw (v8qi, v8qi)
6884 v4hi __builtin_ia32_punpckhwd (v4hi, v4hi)
6885 v2si __builtin_ia32_punpckhdq (v2si, v2si)
6886 v8qi __builtin_ia32_punpcklbw (v8qi, v8qi)
6887 v4hi __builtin_ia32_punpcklwd (v4hi, v4hi)
6888 v2si __builtin_ia32_punpckldq (v2si, v2si)
6889 v8qi __builtin_ia32_packsswb (v4hi, v4hi)
6890 v4hi __builtin_ia32_packssdw (v2si, v2si)
6891 v8qi __builtin_ia32_packuswb (v4hi, v4hi)
6892 @end smallexample
6893
6894 The following built-in functions are made available either with
6895 @option{-msse}, or with a combination of @option{-m3dnow} and
6896 @option{-march=athlon}. All of them generate the machine
6897 instruction that is part of the name.
6898
6899 @smallexample
6900 v4hi __builtin_ia32_pmulhuw (v4hi, v4hi)
6901 v8qi __builtin_ia32_pavgb (v8qi, v8qi)
6902 v4hi __builtin_ia32_pavgw (v4hi, v4hi)
6903 v4hi __builtin_ia32_psadbw (v8qi, v8qi)
6904 v8qi __builtin_ia32_pmaxub (v8qi, v8qi)
6905 v4hi __builtin_ia32_pmaxsw (v4hi, v4hi)
6906 v8qi __builtin_ia32_pminub (v8qi, v8qi)
6907 v4hi __builtin_ia32_pminsw (v4hi, v4hi)
6908 int __builtin_ia32_pextrw (v4hi, int)
6909 v4hi __builtin_ia32_pinsrw (v4hi, int, int)
6910 int __builtin_ia32_pmovmskb (v8qi)
6911 void __builtin_ia32_maskmovq (v8qi, v8qi, char *)
6912 void __builtin_ia32_movntq (di *, di)
6913 void __builtin_ia32_sfence (void)
6914 @end smallexample
6915
6916 The following built-in functions are available when @option{-msse} is used.
6917 All of them generate the machine instruction that is part of the name.
6918
6919 @smallexample
6920 int __builtin_ia32_comieq (v4sf, v4sf)
6921 int __builtin_ia32_comineq (v4sf, v4sf)
6922 int __builtin_ia32_comilt (v4sf, v4sf)
6923 int __builtin_ia32_comile (v4sf, v4sf)
6924 int __builtin_ia32_comigt (v4sf, v4sf)
6925 int __builtin_ia32_comige (v4sf, v4sf)
6926 int __builtin_ia32_ucomieq (v4sf, v4sf)
6927 int __builtin_ia32_ucomineq (v4sf, v4sf)
6928 int __builtin_ia32_ucomilt (v4sf, v4sf)
6929 int __builtin_ia32_ucomile (v4sf, v4sf)
6930 int __builtin_ia32_ucomigt (v4sf, v4sf)
6931 int __builtin_ia32_ucomige (v4sf, v4sf)
6932 v4sf __builtin_ia32_addps (v4sf, v4sf)
6933 v4sf __builtin_ia32_subps (v4sf, v4sf)
6934 v4sf __builtin_ia32_mulps (v4sf, v4sf)
6935 v4sf __builtin_ia32_divps (v4sf, v4sf)
6936 v4sf __builtin_ia32_addss (v4sf, v4sf)
6937 v4sf __builtin_ia32_subss (v4sf, v4sf)
6938 v4sf __builtin_ia32_mulss (v4sf, v4sf)
6939 v4sf __builtin_ia32_divss (v4sf, v4sf)
6940 v4si __builtin_ia32_cmpeqps (v4sf, v4sf)
6941 v4si __builtin_ia32_cmpltps (v4sf, v4sf)
6942 v4si __builtin_ia32_cmpleps (v4sf, v4sf)
6943 v4si __builtin_ia32_cmpgtps (v4sf, v4sf)
6944 v4si __builtin_ia32_cmpgeps (v4sf, v4sf)
6945 v4si __builtin_ia32_cmpunordps (v4sf, v4sf)
6946 v4si __builtin_ia32_cmpneqps (v4sf, v4sf)
6947 v4si __builtin_ia32_cmpnltps (v4sf, v4sf)
6948 v4si __builtin_ia32_cmpnleps (v4sf, v4sf)
6949 v4si __builtin_ia32_cmpngtps (v4sf, v4sf)
6950 v4si __builtin_ia32_cmpngeps (v4sf, v4sf)
6951 v4si __builtin_ia32_cmpordps (v4sf, v4sf)
6952 v4si __builtin_ia32_cmpeqss (v4sf, v4sf)
6953 v4si __builtin_ia32_cmpltss (v4sf, v4sf)
6954 v4si __builtin_ia32_cmpless (v4sf, v4sf)
6955 v4si __builtin_ia32_cmpunordss (v4sf, v4sf)
6956 v4si __builtin_ia32_cmpneqss (v4sf, v4sf)
6957 v4si __builtin_ia32_cmpnlts (v4sf, v4sf)
6958 v4si __builtin_ia32_cmpnless (v4sf, v4sf)
6959 v4si __builtin_ia32_cmpordss (v4sf, v4sf)
6960 v4sf __builtin_ia32_maxps (v4sf, v4sf)
6961 v4sf __builtin_ia32_maxss (v4sf, v4sf)
6962 v4sf __builtin_ia32_minps (v4sf, v4sf)
6963 v4sf __builtin_ia32_minss (v4sf, v4sf)
6964 v4sf __builtin_ia32_andps (v4sf, v4sf)
6965 v4sf __builtin_ia32_andnps (v4sf, v4sf)
6966 v4sf __builtin_ia32_orps (v4sf, v4sf)
6967 v4sf __builtin_ia32_xorps (v4sf, v4sf)
6968 v4sf __builtin_ia32_movss (v4sf, v4sf)
6969 v4sf __builtin_ia32_movhlps (v4sf, v4sf)
6970 v4sf __builtin_ia32_movlhps (v4sf, v4sf)
6971 v4sf __builtin_ia32_unpckhps (v4sf, v4sf)
6972 v4sf __builtin_ia32_unpcklps (v4sf, v4sf)
6973 v4sf __builtin_ia32_cvtpi2ps (v4sf, v2si)
6974 v4sf __builtin_ia32_cvtsi2ss (v4sf, int)
6975 v2si __builtin_ia32_cvtps2pi (v4sf)
6976 int __builtin_ia32_cvtss2si (v4sf)
6977 v2si __builtin_ia32_cvttps2pi (v4sf)
6978 int __builtin_ia32_cvttss2si (v4sf)
6979 v4sf __builtin_ia32_rcpps (v4sf)
6980 v4sf __builtin_ia32_rsqrtps (v4sf)
6981 v4sf __builtin_ia32_sqrtps (v4sf)
6982 v4sf __builtin_ia32_rcpss (v4sf)
6983 v4sf __builtin_ia32_rsqrtss (v4sf)
6984 v4sf __builtin_ia32_sqrtss (v4sf)
6985 v4sf __builtin_ia32_shufps (v4sf, v4sf, int)
6986 void __builtin_ia32_movntps (float *, v4sf)
6987 int __builtin_ia32_movmskps (v4sf)
6988 @end smallexample
6989
6990 The following built-in functions are available when @option{-msse} is used.
6991
6992 @table @code
6993 @item v4sf __builtin_ia32_loadaps (float *)
6994 Generates the @code{movaps} machine instruction as a load from memory.
6995 @item void __builtin_ia32_storeaps (float *, v4sf)
6996 Generates the @code{movaps} machine instruction as a store to memory.
6997 @item v4sf __builtin_ia32_loadups (float *)
6998 Generates the @code{movups} machine instruction as a load from memory.
6999 @item void __builtin_ia32_storeups (float *, v4sf)
7000 Generates the @code{movups} machine instruction as a store to memory.
7001 @item v4sf __builtin_ia32_loadsss (float *)
7002 Generates the @code{movss} machine instruction as a load from memory.
7003 @item void __builtin_ia32_storess (float *, v4sf)
7004 Generates the @code{movss} machine instruction as a store to memory.
7005 @item v4sf __builtin_ia32_loadhps (v4sf, v2si *)
7006 Generates the @code{movhps} machine instruction as a load from memory.
7007 @item v4sf __builtin_ia32_loadlps (v4sf, v2si *)
7008 Generates the @code{movlps} machine instruction as a load from memory
7009 @item void __builtin_ia32_storehps (v4sf, v2si *)
7010 Generates the @code{movhps} machine instruction as a store to memory.
7011 @item void __builtin_ia32_storelps (v4sf, v2si *)
7012 Generates the @code{movlps} machine instruction as a store to memory.
7013 @end table
7014
7015 The following built-in functions are available when @option{-msse2} is used.
7016 All of them generate the machine instruction that is part of the name.
7017
7018 @smallexample
7019 int __builtin_ia32_comisdeq (v2df, v2df)
7020 int __builtin_ia32_comisdlt (v2df, v2df)
7021 int __builtin_ia32_comisdle (v2df, v2df)
7022 int __builtin_ia32_comisdgt (v2df, v2df)
7023 int __builtin_ia32_comisdge (v2df, v2df)
7024 int __builtin_ia32_comisdneq (v2df, v2df)
7025 int __builtin_ia32_ucomisdeq (v2df, v2df)
7026 int __builtin_ia32_ucomisdlt (v2df, v2df)
7027 int __builtin_ia32_ucomisdle (v2df, v2df)
7028 int __builtin_ia32_ucomisdgt (v2df, v2df)
7029 int __builtin_ia32_ucomisdge (v2df, v2df)
7030 int __builtin_ia32_ucomisdneq (v2df, v2df)
7031 v2df __builtin_ia32_cmpeqpd (v2df, v2df)
7032 v2df __builtin_ia32_cmpltpd (v2df, v2df)
7033 v2df __builtin_ia32_cmplepd (v2df, v2df)
7034 v2df __builtin_ia32_cmpgtpd (v2df, v2df)
7035 v2df __builtin_ia32_cmpgepd (v2df, v2df)
7036 v2df __builtin_ia32_cmpunordpd (v2df, v2df)
7037 v2df __builtin_ia32_cmpneqpd (v2df, v2df)
7038 v2df __builtin_ia32_cmpnltpd (v2df, v2df)
7039 v2df __builtin_ia32_cmpnlepd (v2df, v2df)
7040 v2df __builtin_ia32_cmpngtpd (v2df, v2df)
7041 v2df __builtin_ia32_cmpngepd (v2df, v2df)
7042 v2df __builtin_ia32_cmpordpd (v2df, v2df)
7043 v2df __builtin_ia32_cmpeqsd (v2df, v2df)
7044 v2df __builtin_ia32_cmpltsd (v2df, v2df)
7045 v2df __builtin_ia32_cmplesd (v2df, v2df)
7046 v2df __builtin_ia32_cmpunordsd (v2df, v2df)
7047 v2df __builtin_ia32_cmpneqsd (v2df, v2df)
7048 v2df __builtin_ia32_cmpnltsd (v2df, v2df)
7049 v2df __builtin_ia32_cmpnlesd (v2df, v2df)
7050 v2df __builtin_ia32_cmpordsd (v2df, v2df)
7051 v2di __builtin_ia32_paddq (v2di, v2di)
7052 v2di __builtin_ia32_psubq (v2di, v2di)
7053 v2df __builtin_ia32_addpd (v2df, v2df)
7054 v2df __builtin_ia32_subpd (v2df, v2df)
7055 v2df __builtin_ia32_mulpd (v2df, v2df)
7056 v2df __builtin_ia32_divpd (v2df, v2df)
7057 v2df __builtin_ia32_addsd (v2df, v2df)
7058 v2df __builtin_ia32_subsd (v2df, v2df)
7059 v2df __builtin_ia32_mulsd (v2df, v2df)
7060 v2df __builtin_ia32_divsd (v2df, v2df)
7061 v2df __builtin_ia32_minpd (v2df, v2df)
7062 v2df __builtin_ia32_maxpd (v2df, v2df)
7063 v2df __builtin_ia32_minsd (v2df, v2df)
7064 v2df __builtin_ia32_maxsd (v2df, v2df)
7065 v2df __builtin_ia32_andpd (v2df, v2df)
7066 v2df __builtin_ia32_andnpd (v2df, v2df)
7067 v2df __builtin_ia32_orpd (v2df, v2df)
7068 v2df __builtin_ia32_xorpd (v2df, v2df)
7069 v2df __builtin_ia32_movsd (v2df, v2df)
7070 v2df __builtin_ia32_unpckhpd (v2df, v2df)
7071 v2df __builtin_ia32_unpcklpd (v2df, v2df)
7072 v16qi __builtin_ia32_paddb128 (v16qi, v16qi)
7073 v8hi __builtin_ia32_paddw128 (v8hi, v8hi)
7074 v4si __builtin_ia32_paddd128 (v4si, v4si)
7075 v2di __builtin_ia32_paddq128 (v2di, v2di)
7076 v16qi __builtin_ia32_psubb128 (v16qi, v16qi)
7077 v8hi __builtin_ia32_psubw128 (v8hi, v8hi)
7078 v4si __builtin_ia32_psubd128 (v4si, v4si)
7079 v2di __builtin_ia32_psubq128 (v2di, v2di)
7080 v8hi __builtin_ia32_pmullw128 (v8hi, v8hi)
7081 v8hi __builtin_ia32_pmulhw128 (v8hi, v8hi)
7082 v2di __builtin_ia32_pand128 (v2di, v2di)
7083 v2di __builtin_ia32_pandn128 (v2di, v2di)
7084 v2di __builtin_ia32_por128 (v2di, v2di)
7085 v2di __builtin_ia32_pxor128 (v2di, v2di)
7086 v16qi __builtin_ia32_pavgb128 (v16qi, v16qi)
7087 v8hi __builtin_ia32_pavgw128 (v8hi, v8hi)
7088 v16qi __builtin_ia32_pcmpeqb128 (v16qi, v16qi)
7089 v8hi __builtin_ia32_pcmpeqw128 (v8hi, v8hi)
7090 v4si __builtin_ia32_pcmpeqd128 (v4si, v4si)
7091 v16qi __builtin_ia32_pcmpgtb128 (v16qi, v16qi)
7092 v8hi __builtin_ia32_pcmpgtw128 (v8hi, v8hi)
7093 v4si __builtin_ia32_pcmpgtd128 (v4si, v4si)
7094 v16qi __builtin_ia32_pmaxub128 (v16qi, v16qi)
7095 v8hi __builtin_ia32_pmaxsw128 (v8hi, v8hi)
7096 v16qi __builtin_ia32_pminub128 (v16qi, v16qi)
7097 v8hi __builtin_ia32_pminsw128 (v8hi, v8hi)
7098 v16qi __builtin_ia32_punpckhbw128 (v16qi, v16qi)
7099 v8hi __builtin_ia32_punpckhwd128 (v8hi, v8hi)
7100 v4si __builtin_ia32_punpckhdq128 (v4si, v4si)
7101 v2di __builtin_ia32_punpckhqdq128 (v2di, v2di)
7102 v16qi __builtin_ia32_punpcklbw128 (v16qi, v16qi)
7103 v8hi __builtin_ia32_punpcklwd128 (v8hi, v8hi)
7104 v4si __builtin_ia32_punpckldq128 (v4si, v4si)
7105 v2di __builtin_ia32_punpcklqdq128 (v2di, v2di)
7106 v16qi __builtin_ia32_packsswb128 (v16qi, v16qi)
7107 v8hi __builtin_ia32_packssdw128 (v8hi, v8hi)
7108 v16qi __builtin_ia32_packuswb128 (v16qi, v16qi)
7109 v8hi __builtin_ia32_pmulhuw128 (v8hi, v8hi)
7110 void __builtin_ia32_maskmovdqu (v16qi, v16qi)
7111 v2df __builtin_ia32_loadupd (double *)
7112 void __builtin_ia32_storeupd (double *, v2df)
7113 v2df __builtin_ia32_loadhpd (v2df, double *)
7114 v2df __builtin_ia32_loadlpd (v2df, double *)
7115 int __builtin_ia32_movmskpd (v2df)
7116 int __builtin_ia32_pmovmskb128 (v16qi)
7117 void __builtin_ia32_movnti (int *, int)
7118 void __builtin_ia32_movntpd (double *, v2df)
7119 void __builtin_ia32_movntdq (v2df *, v2df)
7120 v4si __builtin_ia32_pshufd (v4si, int)
7121 v8hi __builtin_ia32_pshuflw (v8hi, int)
7122 v8hi __builtin_ia32_pshufhw (v8hi, int)
7123 v2di __builtin_ia32_psadbw128 (v16qi, v16qi)
7124 v2df __builtin_ia32_sqrtpd (v2df)
7125 v2df __builtin_ia32_sqrtsd (v2df)
7126 v2df __builtin_ia32_shufpd (v2df, v2df, int)
7127 v2df __builtin_ia32_cvtdq2pd (v4si)
7128 v4sf __builtin_ia32_cvtdq2ps (v4si)
7129 v4si __builtin_ia32_cvtpd2dq (v2df)
7130 v2si __builtin_ia32_cvtpd2pi (v2df)
7131 v4sf __builtin_ia32_cvtpd2ps (v2df)
7132 v4si __builtin_ia32_cvttpd2dq (v2df)
7133 v2si __builtin_ia32_cvttpd2pi (v2df)
7134 v2df __builtin_ia32_cvtpi2pd (v2si)
7135 int __builtin_ia32_cvtsd2si (v2df)
7136 int __builtin_ia32_cvttsd2si (v2df)
7137 long long __builtin_ia32_cvtsd2si64 (v2df)
7138 long long __builtin_ia32_cvttsd2si64 (v2df)
7139 v4si __builtin_ia32_cvtps2dq (v4sf)
7140 v2df __builtin_ia32_cvtps2pd (v4sf)
7141 v4si __builtin_ia32_cvttps2dq (v4sf)
7142 v2df __builtin_ia32_cvtsi2sd (v2df, int)
7143 v2df __builtin_ia32_cvtsi642sd (v2df, long long)
7144 v4sf __builtin_ia32_cvtsd2ss (v4sf, v2df)
7145 v2df __builtin_ia32_cvtss2sd (v2df, v4sf)
7146 void __builtin_ia32_clflush (const void *)
7147 void __builtin_ia32_lfence (void)
7148 void __builtin_ia32_mfence (void)
7149 v16qi __builtin_ia32_loaddqu (const char *)
7150 void __builtin_ia32_storedqu (char *, v16qi)
7151 unsigned long long __builtin_ia32_pmuludq (v2si, v2si)
7152 v2di __builtin_ia32_pmuludq128 (v4si, v4si)
7153 v8hi __builtin_ia32_psllw128 (v8hi, v2di)
7154 v4si __builtin_ia32_pslld128 (v4si, v2di)
7155 v2di __builtin_ia32_psllq128 (v4si, v2di)
7156 v8hi __builtin_ia32_psrlw128 (v8hi, v2di)
7157 v4si __builtin_ia32_psrld128 (v4si, v2di)
7158 v2di __builtin_ia32_psrlq128 (v2di, v2di)
7159 v8hi __builtin_ia32_psraw128 (v8hi, v2di)
7160 v4si __builtin_ia32_psrad128 (v4si, v2di)
7161 v2di __builtin_ia32_pslldqi128 (v2di, int)
7162 v8hi __builtin_ia32_psllwi128 (v8hi, int)
7163 v4si __builtin_ia32_pslldi128 (v4si, int)
7164 v2di __builtin_ia32_psllqi128 (v2di, int)
7165 v2di __builtin_ia32_psrldqi128 (v2di, int)
7166 v8hi __builtin_ia32_psrlwi128 (v8hi, int)
7167 v4si __builtin_ia32_psrldi128 (v4si, int)
7168 v2di __builtin_ia32_psrlqi128 (v2di, int)
7169 v8hi __builtin_ia32_psrawi128 (v8hi, int)
7170 v4si __builtin_ia32_psradi128 (v4si, int)
7171 v4si __builtin_ia32_pmaddwd128 (v8hi, v8hi)
7172 @end smallexample
7173
7174 The following built-in functions are available when @option{-msse3} is used.
7175 All of them generate the machine instruction that is part of the name.
7176
7177 @smallexample
7178 v2df __builtin_ia32_addsubpd (v2df, v2df)
7179 v4sf __builtin_ia32_addsubps (v4sf, v4sf)
7180 v2df __builtin_ia32_haddpd (v2df, v2df)
7181 v4sf __builtin_ia32_haddps (v4sf, v4sf)
7182 v2df __builtin_ia32_hsubpd (v2df, v2df)
7183 v4sf __builtin_ia32_hsubps (v4sf, v4sf)
7184 v16qi __builtin_ia32_lddqu (char const *)
7185 void __builtin_ia32_monitor (void *, unsigned int, unsigned int)
7186 v2df __builtin_ia32_movddup (v2df)
7187 v4sf __builtin_ia32_movshdup (v4sf)
7188 v4sf __builtin_ia32_movsldup (v4sf)
7189 void __builtin_ia32_mwait (unsigned int, unsigned int)
7190 @end smallexample
7191
7192 The following built-in functions are available when @option{-msse3} is used.
7193
7194 @table @code
7195 @item v2df __builtin_ia32_loadddup (double const *)
7196 Generates the @code{movddup} machine instruction as a load from memory.
7197 @end table
7198
7199 The following built-in functions are available when @option{-mssse3} is used.
7200 All of them generate the machine instruction that is part of the name
7201 with MMX registers.
7202
7203 @smallexample
7204 v2si __builtin_ia32_phaddd (v2si, v2si)
7205 v4hi __builtin_ia32_phaddw (v4hi, v4hi)
7206 v4hi __builtin_ia32_phaddsw (v4hi, v4hi)
7207 v2si __builtin_ia32_phsubd (v2si, v2si)
7208 v4hi __builtin_ia32_phsubw (v4hi, v4hi)
7209 v4hi __builtin_ia32_phsubsw (v4hi, v4hi)
7210 v8qi __builtin_ia32_pmaddubsw (v8qi, v8qi)
7211 v4hi __builtin_ia32_pmulhrsw (v4hi, v4hi)
7212 v8qi __builtin_ia32_pshufb (v8qi, v8qi)
7213 v8qi __builtin_ia32_psignb (v8qi, v8qi)
7214 v2si __builtin_ia32_psignd (v2si, v2si)
7215 v4hi __builtin_ia32_psignw (v4hi, v4hi)
7216 long long __builtin_ia32_palignr (long long, long long, int)
7217 v8qi __builtin_ia32_pabsb (v8qi)
7218 v2si __builtin_ia32_pabsd (v2si)
7219 v4hi __builtin_ia32_pabsw (v4hi)
7220 @end smallexample
7221
7222 The following built-in functions are available when @option{-mssse3} is used.
7223 All of them generate the machine instruction that is part of the name
7224 with SSE registers.
7225
7226 @smallexample
7227 v4si __builtin_ia32_phaddd128 (v4si, v4si)
7228 v8hi __builtin_ia32_phaddw128 (v8hi, v8hi)
7229 v8hi __builtin_ia32_phaddsw128 (v8hi, v8hi)
7230 v4si __builtin_ia32_phsubd128 (v4si, v4si)
7231 v8hi __builtin_ia32_phsubw128 (v8hi, v8hi)
7232 v8hi __builtin_ia32_phsubsw128 (v8hi, v8hi)
7233 v16qi __builtin_ia32_pmaddubsw128 (v16qi, v16qi)
7234 v8hi __builtin_ia32_pmulhrsw128 (v8hi, v8hi)
7235 v16qi __builtin_ia32_pshufb128 (v16qi, v16qi)
7236 v16qi __builtin_ia32_psignb128 (v16qi, v16qi)
7237 v4si __builtin_ia32_psignd128 (v4si, v4si)
7238 v8hi __builtin_ia32_psignw128 (v8hi, v8hi)
7239 v2di __builtin_ia32_palignr (v2di, v2di, int)
7240 v16qi __builtin_ia32_pabsb128 (v16qi)
7241 v4si __builtin_ia32_pabsd128 (v4si)
7242 v8hi __builtin_ia32_pabsw128 (v8hi)
7243 @end smallexample
7244
7245 The following built-in functions are available when @option{-m3dnow} is used.
7246 All of them generate the machine instruction that is part of the name.
7247
7248 @smallexample
7249 void __builtin_ia32_femms (void)
7250 v8qi __builtin_ia32_pavgusb (v8qi, v8qi)
7251 v2si __builtin_ia32_pf2id (v2sf)
7252 v2sf __builtin_ia32_pfacc (v2sf, v2sf)
7253 v2sf __builtin_ia32_pfadd (v2sf, v2sf)
7254 v2si __builtin_ia32_pfcmpeq (v2sf, v2sf)
7255 v2si __builtin_ia32_pfcmpge (v2sf, v2sf)
7256 v2si __builtin_ia32_pfcmpgt (v2sf, v2sf)
7257 v2sf __builtin_ia32_pfmax (v2sf, v2sf)
7258 v2sf __builtin_ia32_pfmin (v2sf, v2sf)
7259 v2sf __builtin_ia32_pfmul (v2sf, v2sf)
7260 v2sf __builtin_ia32_pfrcp (v2sf)
7261 v2sf __builtin_ia32_pfrcpit1 (v2sf, v2sf)
7262 v2sf __builtin_ia32_pfrcpit2 (v2sf, v2sf)
7263 v2sf __builtin_ia32_pfrsqrt (v2sf)
7264 v2sf __builtin_ia32_pfrsqrtit1 (v2sf, v2sf)
7265 v2sf __builtin_ia32_pfsub (v2sf, v2sf)
7266 v2sf __builtin_ia32_pfsubr (v2sf, v2sf)
7267 v2sf __builtin_ia32_pi2fd (v2si)
7268 v4hi __builtin_ia32_pmulhrw (v4hi, v4hi)
7269 @end smallexample
7270
7271 The following built-in functions are available when both @option{-m3dnow}
7272 and @option{-march=athlon} are used. All of them generate the machine
7273 instruction that is part of the name.
7274
7275 @smallexample
7276 v2si __builtin_ia32_pf2iw (v2sf)
7277 v2sf __builtin_ia32_pfnacc (v2sf, v2sf)
7278 v2sf __builtin_ia32_pfpnacc (v2sf, v2sf)
7279 v2sf __builtin_ia32_pi2fw (v2si)
7280 v2sf __builtin_ia32_pswapdsf (v2sf)
7281 v2si __builtin_ia32_pswapdsi (v2si)
7282 @end smallexample
7283
7284 @node MIPS DSP Built-in Functions
7285 @subsection MIPS DSP Built-in Functions
7286
7287 The MIPS DSP Application-Specific Extension (ASE) includes new
7288 instructions that are designed to improve the performance of DSP and
7289 media applications. It provides instructions that operate on packed
7290 8-bit integer data, Q15 fractional data and Q31 fractional data.
7291
7292 GCC supports MIPS DSP operations using both the generic
7293 vector extensions (@pxref{Vector Extensions}) and a collection of
7294 MIPS-specific built-in functions. Both kinds of support are
7295 enabled by the @option{-mdsp} command-line option.
7296
7297 At present, GCC only provides support for operations on 32-bit
7298 vectors. The vector type associated with 8-bit integer data is
7299 usually called @code{v4i8} and the vector type associated with Q15 is
7300 usually called @code{v2q15}. They can be defined in C as follows:
7301
7302 @smallexample
7303 typedef char v4i8 __attribute__ ((vector_size(4)));
7304 typedef short v2q15 __attribute__ ((vector_size(4)));
7305 @end smallexample
7306
7307 @code{v4i8} and @code{v2q15} values are initialized in the same way as
7308 aggregates. For example:
7309
7310 @smallexample
7311 v4i8 a = @{1, 2, 3, 4@};
7312 v4i8 b;
7313 b = (v4i8) @{5, 6, 7, 8@};
7314
7315 v2q15 c = @{0x0fcb, 0x3a75@};
7316 v2q15 d;
7317 d = (v2q15) @{0.1234 * 0x1.0p15, 0.4567 * 0x1.0p15@};
7318 @end smallexample
7319
7320 @emph{Note:} The CPU's endianness determines the order in which values
7321 are packed. On little-endian targets, the first value is the least
7322 significant and the last value is the most significant. The opposite
7323 order applies to big-endian targets. For example, the code above will
7324 set the lowest byte of @code{a} to @code{1} on little-endian targets
7325 and @code{4} on big-endian targets.
7326
7327 @emph{Note:} Q15 and Q31 values must be initialized with their integer
7328 representation. As shown in this example, the integer representation
7329 of a Q15 value can be obtained by multiplying the fractional value by
7330 @code{0x1.0p15}. The equivalent for Q31 values is to multiply by
7331 @code{0x1.0p31}.
7332
7333 The table below lists the @code{v4i8} and @code{v2q15} operations for which
7334 hardware support exists. @code{a} and @code{b} are @code{v4i8} values,
7335 and @code{c} and @code{d} are @code{v2q15} values.
7336
7337 @multitable @columnfractions .50 .50
7338 @item C code @tab MIPS instruction
7339 @item @code{a + b} @tab @code{addu.qb}
7340 @item @code{c + d} @tab @code{addq.ph}
7341 @item @code{a - b} @tab @code{subu.qb}
7342 @item @code{c - d} @tab @code{subq.ph}
7343 @end multitable
7344
7345 It is easier to describe the DSP built-in functions if we first define
7346 the following types:
7347
7348 @smallexample
7349 typedef int q31;
7350 typedef int i32;
7351 typedef long long a64;
7352 @end smallexample
7353
7354 @code{q31} and @code{i32} are actually the same as @code{int}, but we
7355 use @code{q31} to indicate a Q31 fractional value and @code{i32} to
7356 indicate a 32-bit integer value. Similarly, @code{a64} is the same as
7357 @code{long long}, but we use @code{a64} to indicate values that will
7358 be placed in one of the four DSP accumulators (@code{$ac0},
7359 @code{$ac1}, @code{$ac2} or @code{$ac3}).
7360
7361 Also, some built-in functions prefer or require immediate numbers as
7362 parameters, because the corresponding DSP instructions accept both immediate
7363 numbers and register operands, or accept immediate numbers only. The
7364 immediate parameters are listed as follows.
7365
7366 @smallexample
7367 imm0_7: 0 to 7.
7368 imm0_15: 0 to 15.
7369 imm0_31: 0 to 31.
7370 imm0_63: 0 to 63.
7371 imm0_255: 0 to 255.
7372 imm_n32_31: -32 to 31.
7373 imm_n512_511: -512 to 511.
7374 @end smallexample
7375
7376 The following built-in functions map directly to a particular MIPS DSP
7377 instruction. Please refer to the architecture specification
7378 for details on what each instruction does.
7379
7380 @smallexample
7381 v2q15 __builtin_mips_addq_ph (v2q15, v2q15)
7382 v2q15 __builtin_mips_addq_s_ph (v2q15, v2q15)
7383 q31 __builtin_mips_addq_s_w (q31, q31)
7384 v4i8 __builtin_mips_addu_qb (v4i8, v4i8)
7385 v4i8 __builtin_mips_addu_s_qb (v4i8, v4i8)
7386 v2q15 __builtin_mips_subq_ph (v2q15, v2q15)
7387 v2q15 __builtin_mips_subq_s_ph (v2q15, v2q15)
7388 q31 __builtin_mips_subq_s_w (q31, q31)
7389 v4i8 __builtin_mips_subu_qb (v4i8, v4i8)
7390 v4i8 __builtin_mips_subu_s_qb (v4i8, v4i8)
7391 i32 __builtin_mips_addsc (i32, i32)
7392 i32 __builtin_mips_addwc (i32, i32)
7393 i32 __builtin_mips_modsub (i32, i32)
7394 i32 __builtin_mips_raddu_w_qb (v4i8)
7395 v2q15 __builtin_mips_absq_s_ph (v2q15)
7396 q31 __builtin_mips_absq_s_w (q31)
7397 v4i8 __builtin_mips_precrq_qb_ph (v2q15, v2q15)
7398 v2q15 __builtin_mips_precrq_ph_w (q31, q31)
7399 v2q15 __builtin_mips_precrq_rs_ph_w (q31, q31)
7400 v4i8 __builtin_mips_precrqu_s_qb_ph (v2q15, v2q15)
7401 q31 __builtin_mips_preceq_w_phl (v2q15)
7402 q31 __builtin_mips_preceq_w_phr (v2q15)
7403 v2q15 __builtin_mips_precequ_ph_qbl (v4i8)
7404 v2q15 __builtin_mips_precequ_ph_qbr (v4i8)
7405 v2q15 __builtin_mips_precequ_ph_qbla (v4i8)
7406 v2q15 __builtin_mips_precequ_ph_qbra (v4i8)
7407 v2q15 __builtin_mips_preceu_ph_qbl (v4i8)
7408 v2q15 __builtin_mips_preceu_ph_qbr (v4i8)
7409 v2q15 __builtin_mips_preceu_ph_qbla (v4i8)
7410 v2q15 __builtin_mips_preceu_ph_qbra (v4i8)
7411 v4i8 __builtin_mips_shll_qb (v4i8, imm0_7)
7412 v4i8 __builtin_mips_shll_qb (v4i8, i32)
7413 v2q15 __builtin_mips_shll_ph (v2q15, imm0_15)
7414 v2q15 __builtin_mips_shll_ph (v2q15, i32)
7415 v2q15 __builtin_mips_shll_s_ph (v2q15, imm0_15)
7416 v2q15 __builtin_mips_shll_s_ph (v2q15, i32)
7417 q31 __builtin_mips_shll_s_w (q31, imm0_31)
7418 q31 __builtin_mips_shll_s_w (q31, i32)
7419 v4i8 __builtin_mips_shrl_qb (v4i8, imm0_7)
7420 v4i8 __builtin_mips_shrl_qb (v4i8, i32)
7421 v2q15 __builtin_mips_shra_ph (v2q15, imm0_15)
7422 v2q15 __builtin_mips_shra_ph (v2q15, i32)
7423 v2q15 __builtin_mips_shra_r_ph (v2q15, imm0_15)
7424 v2q15 __builtin_mips_shra_r_ph (v2q15, i32)
7425 q31 __builtin_mips_shra_r_w (q31, imm0_31)
7426 q31 __builtin_mips_shra_r_w (q31, i32)
7427 v2q15 __builtin_mips_muleu_s_ph_qbl (v4i8, v2q15)
7428 v2q15 __builtin_mips_muleu_s_ph_qbr (v4i8, v2q15)
7429 v2q15 __builtin_mips_mulq_rs_ph (v2q15, v2q15)
7430 q31 __builtin_mips_muleq_s_w_phl (v2q15, v2q15)
7431 q31 __builtin_mips_muleq_s_w_phr (v2q15, v2q15)
7432 a64 __builtin_mips_dpau_h_qbl (a64, v4i8, v4i8)
7433 a64 __builtin_mips_dpau_h_qbr (a64, v4i8, v4i8)
7434 a64 __builtin_mips_dpsu_h_qbl (a64, v4i8, v4i8)
7435 a64 __builtin_mips_dpsu_h_qbr (a64, v4i8, v4i8)
7436 a64 __builtin_mips_dpaq_s_w_ph (a64, v2q15, v2q15)
7437 a64 __builtin_mips_dpaq_sa_l_w (a64, q31, q31)
7438 a64 __builtin_mips_dpsq_s_w_ph (a64, v2q15, v2q15)
7439 a64 __builtin_mips_dpsq_sa_l_w (a64, q31, q31)
7440 a64 __builtin_mips_mulsaq_s_w_ph (a64, v2q15, v2q15)
7441 a64 __builtin_mips_maq_s_w_phl (a64, v2q15, v2q15)
7442 a64 __builtin_mips_maq_s_w_phr (a64, v2q15, v2q15)
7443 a64 __builtin_mips_maq_sa_w_phl (a64, v2q15, v2q15)
7444 a64 __builtin_mips_maq_sa_w_phr (a64, v2q15, v2q15)
7445 i32 __builtin_mips_bitrev (i32)
7446 i32 __builtin_mips_insv (i32, i32)
7447 v4i8 __builtin_mips_repl_qb (imm0_255)
7448 v4i8 __builtin_mips_repl_qb (i32)
7449 v2q15 __builtin_mips_repl_ph (imm_n512_511)
7450 v2q15 __builtin_mips_repl_ph (i32)
7451 void __builtin_mips_cmpu_eq_qb (v4i8, v4i8)
7452 void __builtin_mips_cmpu_lt_qb (v4i8, v4i8)
7453 void __builtin_mips_cmpu_le_qb (v4i8, v4i8)
7454 i32 __builtin_mips_cmpgu_eq_qb (v4i8, v4i8)
7455 i32 __builtin_mips_cmpgu_lt_qb (v4i8, v4i8)
7456 i32 __builtin_mips_cmpgu_le_qb (v4i8, v4i8)
7457 void __builtin_mips_cmp_eq_ph (v2q15, v2q15)
7458 void __builtin_mips_cmp_lt_ph (v2q15, v2q15)
7459 void __builtin_mips_cmp_le_ph (v2q15, v2q15)
7460 v4i8 __builtin_mips_pick_qb (v4i8, v4i8)
7461 v2q15 __builtin_mips_pick_ph (v2q15, v2q15)
7462 v2q15 __builtin_mips_packrl_ph (v2q15, v2q15)
7463 i32 __builtin_mips_extr_w (a64, imm0_31)
7464 i32 __builtin_mips_extr_w (a64, i32)
7465 i32 __builtin_mips_extr_r_w (a64, imm0_31)
7466 i32 __builtin_mips_extr_s_h (a64, i32)
7467 i32 __builtin_mips_extr_rs_w (a64, imm0_31)
7468 i32 __builtin_mips_extr_rs_w (a64, i32)
7469 i32 __builtin_mips_extr_s_h (a64, imm0_31)
7470 i32 __builtin_mips_extr_r_w (a64, i32)
7471 i32 __builtin_mips_extp (a64, imm0_31)
7472 i32 __builtin_mips_extp (a64, i32)
7473 i32 __builtin_mips_extpdp (a64, imm0_31)
7474 i32 __builtin_mips_extpdp (a64, i32)
7475 a64 __builtin_mips_shilo (a64, imm_n32_31)
7476 a64 __builtin_mips_shilo (a64, i32)
7477 a64 __builtin_mips_mthlip (a64, i32)
7478 void __builtin_mips_wrdsp (i32, imm0_63)
7479 i32 __builtin_mips_rddsp (imm0_63)
7480 i32 __builtin_mips_lbux (void *, i32)
7481 i32 __builtin_mips_lhx (void *, i32)
7482 i32 __builtin_mips_lwx (void *, i32)
7483 i32 __builtin_mips_bposge32 (void)
7484 @end smallexample
7485
7486 @node MIPS Paired-Single Support
7487 @subsection MIPS Paired-Single Support
7488
7489 The MIPS64 architecture includes a number of instructions that
7490 operate on pairs of single-precision floating-point values.
7491 Each pair is packed into a 64-bit floating-point register,
7492 with one element being designated the ``upper half'' and
7493 the other being designated the ``lower half''.
7494
7495 GCC supports paired-single operations using both the generic
7496 vector extensions (@pxref{Vector Extensions}) and a collection of
7497 MIPS-specific built-in functions. Both kinds of support are
7498 enabled by the @option{-mpaired-single} command-line option.
7499
7500 The vector type associated with paired-single values is usually
7501 called @code{v2sf}. It can be defined in C as follows:
7502
7503 @smallexample
7504 typedef float v2sf __attribute__ ((vector_size (8)));
7505 @end smallexample
7506
7507 @code{v2sf} values are initialized in the same way as aggregates.
7508 For example:
7509
7510 @smallexample
7511 v2sf a = @{1.5, 9.1@};
7512 v2sf b;
7513 float e, f;
7514 b = (v2sf) @{e, f@};
7515 @end smallexample
7516
7517 @emph{Note:} The CPU's endianness determines which value is stored in
7518 the upper half of a register and which value is stored in the lower half.
7519 On little-endian targets, the first value is the lower one and the second
7520 value is the upper one. The opposite order applies to big-endian targets.
7521 For example, the code above will set the lower half of @code{a} to
7522 @code{1.5} on little-endian targets and @code{9.1} on big-endian targets.
7523
7524 @menu
7525 * Paired-Single Arithmetic::
7526 * Paired-Single Built-in Functions::
7527 * MIPS-3D Built-in Functions::
7528 @end menu
7529
7530 @node Paired-Single Arithmetic
7531 @subsubsection Paired-Single Arithmetic
7532
7533 The table below lists the @code{v2sf} operations for which hardware
7534 support exists. @code{a}, @code{b} and @code{c} are @code{v2sf}
7535 values and @code{x} is an integral value.
7536
7537 @multitable @columnfractions .50 .50
7538 @item C code @tab MIPS instruction
7539 @item @code{a + b} @tab @code{add.ps}
7540 @item @code{a - b} @tab @code{sub.ps}
7541 @item @code{-a} @tab @code{neg.ps}
7542 @item @code{a * b} @tab @code{mul.ps}
7543 @item @code{a * b + c} @tab @code{madd.ps}
7544 @item @code{a * b - c} @tab @code{msub.ps}
7545 @item @code{-(a * b + c)} @tab @code{nmadd.ps}
7546 @item @code{-(a * b - c)} @tab @code{nmsub.ps}
7547 @item @code{x ? a : b} @tab @code{movn.ps}/@code{movz.ps}
7548 @end multitable
7549
7550 Note that the multiply-accumulate instructions can be disabled
7551 using the command-line option @code{-mno-fused-madd}.
7552
7553 @node Paired-Single Built-in Functions
7554 @subsubsection Paired-Single Built-in Functions
7555
7556 The following paired-single functions map directly to a particular
7557 MIPS instruction. Please refer to the architecture specification
7558 for details on what each instruction does.
7559
7560 @table @code
7561 @item v2sf __builtin_mips_pll_ps (v2sf, v2sf)
7562 Pair lower lower (@code{pll.ps}).
7563
7564 @item v2sf __builtin_mips_pul_ps (v2sf, v2sf)
7565 Pair upper lower (@code{pul.ps}).
7566
7567 @item v2sf __builtin_mips_plu_ps (v2sf, v2sf)
7568 Pair lower upper (@code{plu.ps}).
7569
7570 @item v2sf __builtin_mips_puu_ps (v2sf, v2sf)
7571 Pair upper upper (@code{puu.ps}).
7572
7573 @item v2sf __builtin_mips_cvt_ps_s (float, float)
7574 Convert pair to paired single (@code{cvt.ps.s}).
7575
7576 @item float __builtin_mips_cvt_s_pl (v2sf)
7577 Convert pair lower to single (@code{cvt.s.pl}).
7578
7579 @item float __builtin_mips_cvt_s_pu (v2sf)
7580 Convert pair upper to single (@code{cvt.s.pu}).
7581
7582 @item v2sf __builtin_mips_abs_ps (v2sf)
7583 Absolute value (@code{abs.ps}).
7584
7585 @item v2sf __builtin_mips_alnv_ps (v2sf, v2sf, int)
7586 Align variable (@code{alnv.ps}).
7587
7588 @emph{Note:} The value of the third parameter must be 0 or 4
7589 modulo 8, otherwise the result will be unpredictable. Please read the
7590 instruction description for details.
7591 @end table
7592
7593 The following multi-instruction functions are also available.
7594 In each case, @var{cond} can be any of the 16 floating-point conditions:
7595 @code{f}, @code{un}, @code{eq}, @code{ueq}, @code{olt}, @code{ult},
7596 @code{ole}, @code{ule}, @code{sf}, @code{ngle}, @code{seq}, @code{ngl},
7597 @code{lt}, @code{nge}, @code{le} or @code{ngt}.
7598
7599 @table @code
7600 @item v2sf __builtin_mips_movt_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
7601 @itemx v2sf __builtin_mips_movf_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
7602 Conditional move based on floating point comparison (@code{c.@var{cond}.ps},
7603 @code{movt.ps}/@code{movf.ps}).
7604
7605 The @code{movt} functions return the value @var{x} computed by:
7606
7607 @smallexample
7608 c.@var{cond}.ps @var{cc},@var{a},@var{b}
7609 mov.ps @var{x},@var{c}
7610 movt.ps @var{x},@var{d},@var{cc}
7611 @end smallexample
7612
7613 The @code{movf} functions are similar but use @code{movf.ps} instead
7614 of @code{movt.ps}.
7615
7616 @item int __builtin_mips_upper_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
7617 @itemx int __builtin_mips_lower_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
7618 Comparison of two paired-single values (@code{c.@var{cond}.ps},
7619 @code{bc1t}/@code{bc1f}).
7620
7621 These functions compare @var{a} and @var{b} using @code{c.@var{cond}.ps}
7622 and return either the upper or lower half of the result. For example:
7623
7624 @smallexample
7625 v2sf a, b;
7626 if (__builtin_mips_upper_c_eq_ps (a, b))
7627 upper_halves_are_equal ();
7628 else
7629 upper_halves_are_unequal ();
7630
7631 if (__builtin_mips_lower_c_eq_ps (a, b))
7632 lower_halves_are_equal ();
7633 else
7634 lower_halves_are_unequal ();
7635 @end smallexample
7636 @end table
7637
7638 @node MIPS-3D Built-in Functions
7639 @subsubsection MIPS-3D Built-in Functions
7640
7641 The MIPS-3D Application-Specific Extension (ASE) includes additional
7642 paired-single instructions that are designed to improve the performance
7643 of 3D graphics operations. Support for these instructions is controlled
7644 by the @option{-mips3d} command-line option.
7645
7646 The functions listed below map directly to a particular MIPS-3D
7647 instruction. Please refer to the architecture specification for
7648 more details on what each instruction does.
7649
7650 @table @code
7651 @item v2sf __builtin_mips_addr_ps (v2sf, v2sf)
7652 Reduction add (@code{addr.ps}).
7653
7654 @item v2sf __builtin_mips_mulr_ps (v2sf, v2sf)
7655 Reduction multiply (@code{mulr.ps}).
7656
7657 @item v2sf __builtin_mips_cvt_pw_ps (v2sf)
7658 Convert paired single to paired word (@code{cvt.pw.ps}).
7659
7660 @item v2sf __builtin_mips_cvt_ps_pw (v2sf)
7661 Convert paired word to paired single (@code{cvt.ps.pw}).
7662
7663 @item float __builtin_mips_recip1_s (float)
7664 @itemx double __builtin_mips_recip1_d (double)
7665 @itemx v2sf __builtin_mips_recip1_ps (v2sf)
7666 Reduced precision reciprocal (sequence step 1) (@code{recip1.@var{fmt}}).
7667
7668 @item float __builtin_mips_recip2_s (float, float)
7669 @itemx double __builtin_mips_recip2_d (double, double)
7670 @itemx v2sf __builtin_mips_recip2_ps (v2sf, v2sf)
7671 Reduced precision reciprocal (sequence step 2) (@code{recip2.@var{fmt}}).
7672
7673 @item float __builtin_mips_rsqrt1_s (float)
7674 @itemx double __builtin_mips_rsqrt1_d (double)
7675 @itemx v2sf __builtin_mips_rsqrt1_ps (v2sf)
7676 Reduced precision reciprocal square root (sequence step 1)
7677 (@code{rsqrt1.@var{fmt}}).
7678
7679 @item float __builtin_mips_rsqrt2_s (float, float)
7680 @itemx double __builtin_mips_rsqrt2_d (double, double)
7681 @itemx v2sf __builtin_mips_rsqrt2_ps (v2sf, v2sf)
7682 Reduced precision reciprocal square root (sequence step 2)
7683 (@code{rsqrt2.@var{fmt}}).
7684 @end table
7685
7686 The following multi-instruction functions are also available.
7687 In each case, @var{cond} can be any of the 16 floating-point conditions:
7688 @code{f}, @code{un}, @code{eq}, @code{ueq}, @code{olt}, @code{ult},
7689 @code{ole}, @code{ule}, @code{sf}, @code{ngle}, @code{seq},
7690 @code{ngl}, @code{lt}, @code{nge}, @code{le} or @code{ngt}.
7691
7692 @table @code
7693 @item int __builtin_mips_cabs_@var{cond}_s (float @var{a}, float @var{b})
7694 @itemx int __builtin_mips_cabs_@var{cond}_d (double @var{a}, double @var{b})
7695 Absolute comparison of two scalar values (@code{cabs.@var{cond}.@var{fmt}},
7696 @code{bc1t}/@code{bc1f}).
7697
7698 These functions compare @var{a} and @var{b} using @code{cabs.@var{cond}.s}
7699 or @code{cabs.@var{cond}.d} and return the result as a boolean value.
7700 For example:
7701
7702 @smallexample
7703 float a, b;
7704 if (__builtin_mips_cabs_eq_s (a, b))
7705 true ();
7706 else
7707 false ();
7708 @end smallexample
7709
7710 @item int __builtin_mips_upper_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
7711 @itemx int __builtin_mips_lower_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
7712 Absolute comparison of two paired-single values (@code{cabs.@var{cond}.ps},
7713 @code{bc1t}/@code{bc1f}).
7714
7715 These functions compare @var{a} and @var{b} using @code{cabs.@var{cond}.ps}
7716 and return either the upper or lower half of the result. For example:
7717
7718 @smallexample
7719 v2sf a, b;
7720 if (__builtin_mips_upper_cabs_eq_ps (a, b))
7721 upper_halves_are_equal ();
7722 else
7723 upper_halves_are_unequal ();
7724
7725 if (__builtin_mips_lower_cabs_eq_ps (a, b))
7726 lower_halves_are_equal ();
7727 else
7728 lower_halves_are_unequal ();
7729 @end smallexample
7730
7731 @item v2sf __builtin_mips_movt_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
7732 @itemx v2sf __builtin_mips_movf_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
7733 Conditional move based on absolute comparison (@code{cabs.@var{cond}.ps},
7734 @code{movt.ps}/@code{movf.ps}).
7735
7736 The @code{movt} functions return the value @var{x} computed by:
7737
7738 @smallexample
7739 cabs.@var{cond}.ps @var{cc},@var{a},@var{b}
7740 mov.ps @var{x},@var{c}
7741 movt.ps @var{x},@var{d},@var{cc}
7742 @end smallexample
7743
7744 The @code{movf} functions are similar but use @code{movf.ps} instead
7745 of @code{movt.ps}.
7746
7747 @item int __builtin_mips_any_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
7748 @itemx int __builtin_mips_all_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
7749 @itemx int __builtin_mips_any_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
7750 @itemx int __builtin_mips_all_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
7751 Comparison of two paired-single values
7752 (@code{c.@var{cond}.ps}/@code{cabs.@var{cond}.ps},
7753 @code{bc1any2t}/@code{bc1any2f}).
7754
7755 These functions compare @var{a} and @var{b} using @code{c.@var{cond}.ps}
7756 or @code{cabs.@var{cond}.ps}. The @code{any} forms return true if either
7757 result is true and the @code{all} forms return true if both results are true.
7758 For example:
7759
7760 @smallexample
7761 v2sf a, b;
7762 if (__builtin_mips_any_c_eq_ps (a, b))
7763 one_is_true ();
7764 else
7765 both_are_false ();
7766
7767 if (__builtin_mips_all_c_eq_ps (a, b))
7768 both_are_true ();
7769 else
7770 one_is_false ();
7771 @end smallexample
7772
7773 @item int __builtin_mips_any_c_@var{cond}_4s (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
7774 @itemx int __builtin_mips_all_c_@var{cond}_4s (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
7775 @itemx int __builtin_mips_any_cabs_@var{cond}_4s (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
7776 @itemx int __builtin_mips_all_cabs_@var{cond}_4s (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
7777 Comparison of four paired-single values
7778 (@code{c.@var{cond}.ps}/@code{cabs.@var{cond}.ps},
7779 @code{bc1any4t}/@code{bc1any4f}).
7780
7781 These functions use @code{c.@var{cond}.ps} or @code{cabs.@var{cond}.ps}
7782 to compare @var{a} with @var{b} and to compare @var{c} with @var{d}.
7783 The @code{any} forms return true if any of the four results are true
7784 and the @code{all} forms return true if all four results are true.
7785 For example:
7786
7787 @smallexample
7788 v2sf a, b, c, d;
7789 if (__builtin_mips_any_c_eq_4s (a, b, c, d))
7790 some_are_true ();
7791 else
7792 all_are_false ();
7793
7794 if (__builtin_mips_all_c_eq_4s (a, b, c, d))
7795 all_are_true ();
7796 else
7797 some_are_false ();
7798 @end smallexample
7799 @end table
7800
7801 @node PowerPC AltiVec Built-in Functions
7802 @subsection PowerPC AltiVec Built-in Functions
7803
7804 GCC provides an interface for the PowerPC family of processors to access
7805 the AltiVec operations described in Motorola's AltiVec Programming
7806 Interface Manual. The interface is made available by including
7807 @code{<altivec.h>} and using @option{-maltivec} and
7808 @option{-mabi=altivec}. The interface supports the following vector
7809 types.
7810
7811 @smallexample
7812 vector unsigned char
7813 vector signed char
7814 vector bool char
7815
7816 vector unsigned short
7817 vector signed short
7818 vector bool short
7819 vector pixel
7820
7821 vector unsigned int
7822 vector signed int
7823 vector bool int
7824 vector float
7825 @end smallexample
7826
7827 GCC's implementation of the high-level language interface available from
7828 C and C++ code differs from Motorola's documentation in several ways.
7829
7830 @itemize @bullet
7831
7832 @item
7833 A vector constant is a list of constant expressions within curly braces.
7834
7835 @item
7836 A vector initializer requires no cast if the vector constant is of the
7837 same type as the variable it is initializing.
7838
7839 @item
7840 If @code{signed} or @code{unsigned} is omitted, the signedness of the
7841 vector type is the default signedness of the base type. The default
7842 varies depending on the operating system, so a portable program should
7843 always specify the signedness.
7844
7845 @item
7846 Compiling with @option{-maltivec} adds keywords @code{__vector},
7847 @code{__pixel}, and @code{__bool}. Macros @option{vector},
7848 @code{pixel}, and @code{bool} are defined in @code{<altivec.h>} and can
7849 be undefined.
7850
7851 @item
7852 GCC allows using a @code{typedef} name as the type specifier for a
7853 vector type.
7854
7855 @item
7856 For C, overloaded functions are implemented with macros so the following
7857 does not work:
7858
7859 @smallexample
7860 vec_add ((vector signed int)@{1, 2, 3, 4@}, foo);
7861 @end smallexample
7862
7863 Since @code{vec_add} is a macro, the vector constant in the example
7864 is treated as four separate arguments. Wrap the entire argument in
7865 parentheses for this to work.
7866 @end itemize
7867
7868 @emph{Note:} Only the @code{<altivec.h>} interface is supported.
7869 Internally, GCC uses built-in functions to achieve the functionality in
7870 the aforementioned header file, but they are not supported and are
7871 subject to change without notice.
7872
7873 The following interfaces are supported for the generic and specific
7874 AltiVec operations and the AltiVec predicates. In cases where there
7875 is a direct mapping between generic and specific operations, only the
7876 generic names are shown here, although the specific operations can also
7877 be used.
7878
7879 Arguments that are documented as @code{const int} require literal
7880 integral values within the range required for that operation.
7881
7882 @smallexample
7883 vector signed char vec_abs (vector signed char);
7884 vector signed short vec_abs (vector signed short);
7885 vector signed int vec_abs (vector signed int);
7886 vector float vec_abs (vector float);
7887
7888 vector signed char vec_abss (vector signed char);
7889 vector signed short vec_abss (vector signed short);
7890 vector signed int vec_abss (vector signed int);
7891
7892 vector signed char vec_add (vector bool char, vector signed char);
7893 vector signed char vec_add (vector signed char, vector bool char);
7894 vector signed char vec_add (vector signed char, vector signed char);
7895 vector unsigned char vec_add (vector bool char, vector unsigned char);
7896 vector unsigned char vec_add (vector unsigned char, vector bool char);
7897 vector unsigned char vec_add (vector unsigned char,
7898 vector unsigned char);
7899 vector signed short vec_add (vector bool short, vector signed short);
7900 vector signed short vec_add (vector signed short, vector bool short);
7901 vector signed short vec_add (vector signed short, vector signed short);
7902 vector unsigned short vec_add (vector bool short,
7903 vector unsigned short);
7904 vector unsigned short vec_add (vector unsigned short,
7905 vector bool short);
7906 vector unsigned short vec_add (vector unsigned short,
7907 vector unsigned short);
7908 vector signed int vec_add (vector bool int, vector signed int);
7909 vector signed int vec_add (vector signed int, vector bool int);
7910 vector signed int vec_add (vector signed int, vector signed int);
7911 vector unsigned int vec_add (vector bool int, vector unsigned int);
7912 vector unsigned int vec_add (vector unsigned int, vector bool int);
7913 vector unsigned int vec_add (vector unsigned int, vector unsigned int);
7914 vector float vec_add (vector float, vector float);
7915
7916 vector float vec_vaddfp (vector float, vector float);
7917
7918 vector signed int vec_vadduwm (vector bool int, vector signed int);
7919 vector signed int vec_vadduwm (vector signed int, vector bool int);
7920 vector signed int vec_vadduwm (vector signed int, vector signed int);
7921 vector unsigned int vec_vadduwm (vector bool int, vector unsigned int);
7922 vector unsigned int vec_vadduwm (vector unsigned int, vector bool int);
7923 vector unsigned int vec_vadduwm (vector unsigned int,
7924 vector unsigned int);
7925
7926 vector signed short vec_vadduhm (vector bool short,
7927 vector signed short);
7928 vector signed short vec_vadduhm (vector signed short,
7929 vector bool short);
7930 vector signed short vec_vadduhm (vector signed short,
7931 vector signed short);
7932 vector unsigned short vec_vadduhm (vector bool short,
7933 vector unsigned short);
7934 vector unsigned short vec_vadduhm (vector unsigned short,
7935 vector bool short);
7936 vector unsigned short vec_vadduhm (vector unsigned short,
7937 vector unsigned short);
7938
7939 vector signed char vec_vaddubm (vector bool char, vector signed char);
7940 vector signed char vec_vaddubm (vector signed char, vector bool char);
7941 vector signed char vec_vaddubm (vector signed char, vector signed char);
7942 vector unsigned char vec_vaddubm (vector bool char,
7943 vector unsigned char);
7944 vector unsigned char vec_vaddubm (vector unsigned char,
7945 vector bool char);
7946 vector unsigned char vec_vaddubm (vector unsigned char,
7947 vector unsigned char);
7948
7949 vector unsigned int vec_addc (vector unsigned int, vector unsigned int);
7950
7951 vector unsigned char vec_adds (vector bool char, vector unsigned char);
7952 vector unsigned char vec_adds (vector unsigned char, vector bool char);
7953 vector unsigned char vec_adds (vector unsigned char,
7954 vector unsigned char);
7955 vector signed char vec_adds (vector bool char, vector signed char);
7956 vector signed char vec_adds (vector signed char, vector bool char);
7957 vector signed char vec_adds (vector signed char, vector signed char);
7958 vector unsigned short vec_adds (vector bool short,
7959 vector unsigned short);
7960 vector unsigned short vec_adds (vector unsigned short,
7961 vector bool short);
7962 vector unsigned short vec_adds (vector unsigned short,
7963 vector unsigned short);
7964 vector signed short vec_adds (vector bool short, vector signed short);
7965 vector signed short vec_adds (vector signed short, vector bool short);
7966 vector signed short vec_adds (vector signed short, vector signed short);
7967 vector unsigned int vec_adds (vector bool int, vector unsigned int);
7968 vector unsigned int vec_adds (vector unsigned int, vector bool int);
7969 vector unsigned int vec_adds (vector unsigned int, vector unsigned int);
7970 vector signed int vec_adds (vector bool int, vector signed int);
7971 vector signed int vec_adds (vector signed int, vector bool int);
7972 vector signed int vec_adds (vector signed int, vector signed int);
7973
7974 vector signed int vec_vaddsws (vector bool int, vector signed int);
7975 vector signed int vec_vaddsws (vector signed int, vector bool int);
7976 vector signed int vec_vaddsws (vector signed int, vector signed int);
7977
7978 vector unsigned int vec_vadduws (vector bool int, vector unsigned int);
7979 vector unsigned int vec_vadduws (vector unsigned int, vector bool int);
7980 vector unsigned int vec_vadduws (vector unsigned int,
7981 vector unsigned int);
7982
7983 vector signed short vec_vaddshs (vector bool short,
7984 vector signed short);
7985 vector signed short vec_vaddshs (vector signed short,
7986 vector bool short);
7987 vector signed short vec_vaddshs (vector signed short,
7988 vector signed short);
7989
7990 vector unsigned short vec_vadduhs (vector bool short,
7991 vector unsigned short);
7992 vector unsigned short vec_vadduhs (vector unsigned short,
7993 vector bool short);
7994 vector unsigned short vec_vadduhs (vector unsigned short,
7995 vector unsigned short);
7996
7997 vector signed char vec_vaddsbs (vector bool char, vector signed char);
7998 vector signed char vec_vaddsbs (vector signed char, vector bool char);
7999 vector signed char vec_vaddsbs (vector signed char, vector signed char);
8000
8001 vector unsigned char vec_vaddubs (vector bool char,
8002 vector unsigned char);
8003 vector unsigned char vec_vaddubs (vector unsigned char,
8004 vector bool char);
8005 vector unsigned char vec_vaddubs (vector unsigned char,
8006 vector unsigned char);
8007
8008 vector float vec_and (vector float, vector float);
8009 vector float vec_and (vector float, vector bool int);
8010 vector float vec_and (vector bool int, vector float);
8011 vector bool int vec_and (vector bool int, vector bool int);
8012 vector signed int vec_and (vector bool int, vector signed int);
8013 vector signed int vec_and (vector signed int, vector bool int);
8014 vector signed int vec_and (vector signed int, vector signed int);
8015 vector unsigned int vec_and (vector bool int, vector unsigned int);
8016 vector unsigned int vec_and (vector unsigned int, vector bool int);
8017 vector unsigned int vec_and (vector unsigned int, vector unsigned int);
8018 vector bool short vec_and (vector bool short, vector bool short);
8019 vector signed short vec_and (vector bool short, vector signed short);
8020 vector signed short vec_and (vector signed short, vector bool short);
8021 vector signed short vec_and (vector signed short, vector signed short);
8022 vector unsigned short vec_and (vector bool short,
8023 vector unsigned short);
8024 vector unsigned short vec_and (vector unsigned short,
8025 vector bool short);
8026 vector unsigned short vec_and (vector unsigned short,
8027 vector unsigned short);
8028 vector signed char vec_and (vector bool char, vector signed char);
8029 vector bool char vec_and (vector bool char, vector bool char);
8030 vector signed char vec_and (vector signed char, vector bool char);
8031 vector signed char vec_and (vector signed char, vector signed char);
8032 vector unsigned char vec_and (vector bool char, vector unsigned char);
8033 vector unsigned char vec_and (vector unsigned char, vector bool char);
8034 vector unsigned char vec_and (vector unsigned char,
8035 vector unsigned char);
8036
8037 vector float vec_andc (vector float, vector float);
8038 vector float vec_andc (vector float, vector bool int);
8039 vector float vec_andc (vector bool int, vector float);
8040 vector bool int vec_andc (vector bool int, vector bool int);
8041 vector signed int vec_andc (vector bool int, vector signed int);
8042 vector signed int vec_andc (vector signed int, vector bool int);
8043 vector signed int vec_andc (vector signed int, vector signed int);
8044 vector unsigned int vec_andc (vector bool int, vector unsigned int);
8045 vector unsigned int vec_andc (vector unsigned int, vector bool int);
8046 vector unsigned int vec_andc (vector unsigned int, vector unsigned int);
8047 vector bool short vec_andc (vector bool short, vector bool short);
8048 vector signed short vec_andc (vector bool short, vector signed short);
8049 vector signed short vec_andc (vector signed short, vector bool short);
8050 vector signed short vec_andc (vector signed short, vector signed short);
8051 vector unsigned short vec_andc (vector bool short,
8052 vector unsigned short);
8053 vector unsigned short vec_andc (vector unsigned short,
8054 vector bool short);
8055 vector unsigned short vec_andc (vector unsigned short,
8056 vector unsigned short);
8057 vector signed char vec_andc (vector bool char, vector signed char);
8058 vector bool char vec_andc (vector bool char, vector bool char);
8059 vector signed char vec_andc (vector signed char, vector bool char);
8060 vector signed char vec_andc (vector signed char, vector signed char);
8061 vector unsigned char vec_andc (vector bool char, vector unsigned char);
8062 vector unsigned char vec_andc (vector unsigned char, vector bool char);
8063 vector unsigned char vec_andc (vector unsigned char,
8064 vector unsigned char);
8065
8066 vector unsigned char vec_avg (vector unsigned char,
8067 vector unsigned char);
8068 vector signed char vec_avg (vector signed char, vector signed char);
8069 vector unsigned short vec_avg (vector unsigned short,
8070 vector unsigned short);
8071 vector signed short vec_avg (vector signed short, vector signed short);
8072 vector unsigned int vec_avg (vector unsigned int, vector unsigned int);
8073 vector signed int vec_avg (vector signed int, vector signed int);
8074
8075 vector signed int vec_vavgsw (vector signed int, vector signed int);
8076
8077 vector unsigned int vec_vavguw (vector unsigned int,
8078 vector unsigned int);
8079
8080 vector signed short vec_vavgsh (vector signed short,
8081 vector signed short);
8082
8083 vector unsigned short vec_vavguh (vector unsigned short,
8084 vector unsigned short);
8085
8086 vector signed char vec_vavgsb (vector signed char, vector signed char);
8087
8088 vector unsigned char vec_vavgub (vector unsigned char,
8089 vector unsigned char);
8090
8091 vector float vec_ceil (vector float);
8092
8093 vector signed int vec_cmpb (vector float, vector float);
8094
8095 vector bool char vec_cmpeq (vector signed char, vector signed char);
8096 vector bool char vec_cmpeq (vector unsigned char, vector unsigned char);
8097 vector bool short vec_cmpeq (vector signed short, vector signed short);
8098 vector bool short vec_cmpeq (vector unsigned short,
8099 vector unsigned short);
8100 vector bool int vec_cmpeq (vector signed int, vector signed int);
8101 vector bool int vec_cmpeq (vector unsigned int, vector unsigned int);
8102 vector bool int vec_cmpeq (vector float, vector float);
8103
8104 vector bool int vec_vcmpeqfp (vector float, vector float);
8105
8106 vector bool int vec_vcmpequw (vector signed int, vector signed int);
8107 vector bool int vec_vcmpequw (vector unsigned int, vector unsigned int);
8108
8109 vector bool short vec_vcmpequh (vector signed short,
8110 vector signed short);
8111 vector bool short vec_vcmpequh (vector unsigned short,
8112 vector unsigned short);
8113
8114 vector bool char vec_vcmpequb (vector signed char, vector signed char);
8115 vector bool char vec_vcmpequb (vector unsigned char,
8116 vector unsigned char);
8117
8118 vector bool int vec_cmpge (vector float, vector float);
8119
8120 vector bool char vec_cmpgt (vector unsigned char, vector unsigned char);
8121 vector bool char vec_cmpgt (vector signed char, vector signed char);
8122 vector bool short vec_cmpgt (vector unsigned short,
8123 vector unsigned short);
8124 vector bool short vec_cmpgt (vector signed short, vector signed short);
8125 vector bool int vec_cmpgt (vector unsigned int, vector unsigned int);
8126 vector bool int vec_cmpgt (vector signed int, vector signed int);
8127 vector bool int vec_cmpgt (vector float, vector float);
8128
8129 vector bool int vec_vcmpgtfp (vector float, vector float);
8130
8131 vector bool int vec_vcmpgtsw (vector signed int, vector signed int);
8132
8133 vector bool int vec_vcmpgtuw (vector unsigned int, vector unsigned int);
8134
8135 vector bool short vec_vcmpgtsh (vector signed short,
8136 vector signed short);
8137
8138 vector bool short vec_vcmpgtuh (vector unsigned short,
8139 vector unsigned short);
8140
8141 vector bool char vec_vcmpgtsb (vector signed char, vector signed char);
8142
8143 vector bool char vec_vcmpgtub (vector unsigned char,
8144 vector unsigned char);
8145
8146 vector bool int vec_cmple (vector float, vector float);
8147
8148 vector bool char vec_cmplt (vector unsigned char, vector unsigned char);
8149 vector bool char vec_cmplt (vector signed char, vector signed char);
8150 vector bool short vec_cmplt (vector unsigned short,
8151 vector unsigned short);
8152 vector bool short vec_cmplt (vector signed short, vector signed short);
8153 vector bool int vec_cmplt (vector unsigned int, vector unsigned int);
8154 vector bool int vec_cmplt (vector signed int, vector signed int);
8155 vector bool int vec_cmplt (vector float, vector float);
8156
8157 vector float vec_ctf (vector unsigned int, const int);
8158 vector float vec_ctf (vector signed int, const int);
8159
8160 vector float vec_vcfsx (vector signed int, const int);
8161
8162 vector float vec_vcfux (vector unsigned int, const int);
8163
8164 vector signed int vec_cts (vector float, const int);
8165
8166 vector unsigned int vec_ctu (vector float, const int);
8167
8168 void vec_dss (const int);
8169
8170 void vec_dssall (void);
8171
8172 void vec_dst (const vector unsigned char *, int, const int);
8173 void vec_dst (const vector signed char *, int, const int);
8174 void vec_dst (const vector bool char *, int, const int);
8175 void vec_dst (const vector unsigned short *, int, const int);
8176 void vec_dst (const vector signed short *, int, const int);
8177 void vec_dst (const vector bool short *, int, const int);
8178 void vec_dst (const vector pixel *, int, const int);
8179 void vec_dst (const vector unsigned int *, int, const int);
8180 void vec_dst (const vector signed int *, int, const int);
8181 void vec_dst (const vector bool int *, int, const int);
8182 void vec_dst (const vector float *, int, const int);
8183 void vec_dst (const unsigned char *, int, const int);
8184 void vec_dst (const signed char *, int, const int);
8185 void vec_dst (const unsigned short *, int, const int);
8186 void vec_dst (const short *, int, const int);
8187 void vec_dst (const unsigned int *, int, const int);
8188 void vec_dst (const int *, int, const int);
8189 void vec_dst (const unsigned long *, int, const int);
8190 void vec_dst (const long *, int, const int);
8191 void vec_dst (const float *, int, const int);
8192
8193 void vec_dstst (const vector unsigned char *, int, const int);
8194 void vec_dstst (const vector signed char *, int, const int);
8195 void vec_dstst (const vector bool char *, int, const int);
8196 void vec_dstst (const vector unsigned short *, int, const int);
8197 void vec_dstst (const vector signed short *, int, const int);
8198 void vec_dstst (const vector bool short *, int, const int);
8199 void vec_dstst (const vector pixel *, int, const int);
8200 void vec_dstst (const vector unsigned int *, int, const int);
8201 void vec_dstst (const vector signed int *, int, const int);
8202 void vec_dstst (const vector bool int *, int, const int);
8203 void vec_dstst (const vector float *, int, const int);
8204 void vec_dstst (const unsigned char *, int, const int);
8205 void vec_dstst (const signed char *, int, const int);
8206 void vec_dstst (const unsigned short *, int, const int);
8207 void vec_dstst (const short *, int, const int);
8208 void vec_dstst (const unsigned int *, int, const int);
8209 void vec_dstst (const int *, int, const int);
8210 void vec_dstst (const unsigned long *, int, const int);
8211 void vec_dstst (const long *, int, const int);
8212 void vec_dstst (const float *, int, const int);
8213
8214 void vec_dststt (const vector unsigned char *, int, const int);
8215 void vec_dststt (const vector signed char *, int, const int);
8216 void vec_dststt (const vector bool char *, int, const int);
8217 void vec_dststt (const vector unsigned short *, int, const int);
8218 void vec_dststt (const vector signed short *, int, const int);
8219 void vec_dststt (const vector bool short *, int, const int);
8220 void vec_dststt (const vector pixel *, int, const int);
8221 void vec_dststt (const vector unsigned int *, int, const int);
8222 void vec_dststt (const vector signed int *, int, const int);
8223 void vec_dststt (const vector bool int *, int, const int);
8224 void vec_dststt (const vector float *, int, const int);
8225 void vec_dststt (const unsigned char *, int, const int);
8226 void vec_dststt (const signed char *, int, const int);
8227 void vec_dststt (const unsigned short *, int, const int);
8228 void vec_dststt (const short *, int, const int);
8229 void vec_dststt (const unsigned int *, int, const int);
8230 void vec_dststt (const int *, int, const int);
8231 void vec_dststt (const unsigned long *, int, const int);
8232 void vec_dststt (const long *, int, const int);
8233 void vec_dststt (const float *, int, const int);
8234
8235 void vec_dstt (const vector unsigned char *, int, const int);
8236 void vec_dstt (const vector signed char *, int, const int);
8237 void vec_dstt (const vector bool char *, int, const int);
8238 void vec_dstt (const vector unsigned short *, int, const int);
8239 void vec_dstt (const vector signed short *, int, const int);
8240 void vec_dstt (const vector bool short *, int, const int);
8241 void vec_dstt (const vector pixel *, int, const int);
8242 void vec_dstt (const vector unsigned int *, int, const int);
8243 void vec_dstt (const vector signed int *, int, const int);
8244 void vec_dstt (const vector bool int *, int, const int);
8245 void vec_dstt (const vector float *, int, const int);
8246 void vec_dstt (const unsigned char *, int, const int);
8247 void vec_dstt (const signed char *, int, const int);
8248 void vec_dstt (const unsigned short *, int, const int);
8249 void vec_dstt (const short *, int, const int);
8250 void vec_dstt (const unsigned int *, int, const int);
8251 void vec_dstt (const int *, int, const int);
8252 void vec_dstt (const unsigned long *, int, const int);
8253 void vec_dstt (const long *, int, const int);
8254 void vec_dstt (const float *, int, const int);
8255
8256 vector float vec_expte (vector float);
8257
8258 vector float vec_floor (vector float);
8259
8260 vector float vec_ld (int, const vector float *);
8261 vector float vec_ld (int, const float *);
8262 vector bool int vec_ld (int, const vector bool int *);
8263 vector signed int vec_ld (int, const vector signed int *);
8264 vector signed int vec_ld (int, const int *);
8265 vector signed int vec_ld (int, const long *);
8266 vector unsigned int vec_ld (int, const vector unsigned int *);
8267 vector unsigned int vec_ld (int, const unsigned int *);
8268 vector unsigned int vec_ld (int, const unsigned long *);
8269 vector bool short vec_ld (int, const vector bool short *);
8270 vector pixel vec_ld (int, const vector pixel *);
8271 vector signed short vec_ld (int, const vector signed short *);
8272 vector signed short vec_ld (int, const short *);
8273 vector unsigned short vec_ld (int, const vector unsigned short *);
8274 vector unsigned short vec_ld (int, const unsigned short *);
8275 vector bool char vec_ld (int, const vector bool char *);
8276 vector signed char vec_ld (int, const vector signed char *);
8277 vector signed char vec_ld (int, const signed char *);
8278 vector unsigned char vec_ld (int, const vector unsigned char *);
8279 vector unsigned char vec_ld (int, const unsigned char *);
8280
8281 vector signed char vec_lde (int, const signed char *);
8282 vector unsigned char vec_lde (int, const unsigned char *);
8283 vector signed short vec_lde (int, const short *);
8284 vector unsigned short vec_lde (int, const unsigned short *);
8285 vector float vec_lde (int, const float *);
8286 vector signed int vec_lde (int, const int *);
8287 vector unsigned int vec_lde (int, const unsigned int *);
8288 vector signed int vec_lde (int, const long *);
8289 vector unsigned int vec_lde (int, const unsigned long *);
8290
8291 vector float vec_lvewx (int, float *);
8292 vector signed int vec_lvewx (int, int *);
8293 vector unsigned int vec_lvewx (int, unsigned int *);
8294 vector signed int vec_lvewx (int, long *);
8295 vector unsigned int vec_lvewx (int, unsigned long *);
8296
8297 vector signed short vec_lvehx (int, short *);
8298 vector unsigned short vec_lvehx (int, unsigned short *);
8299
8300 vector signed char vec_lvebx (int, char *);
8301 vector unsigned char vec_lvebx (int, unsigned char *);
8302
8303 vector float vec_ldl (int, const vector float *);
8304 vector float vec_ldl (int, const float *);
8305 vector bool int vec_ldl (int, const vector bool int *);
8306 vector signed int vec_ldl (int, const vector signed int *);
8307 vector signed int vec_ldl (int, const int *);
8308 vector signed int vec_ldl (int, const long *);
8309 vector unsigned int vec_ldl (int, const vector unsigned int *);
8310 vector unsigned int vec_ldl (int, const unsigned int *);
8311 vector unsigned int vec_ldl (int, const unsigned long *);
8312 vector bool short vec_ldl (int, const vector bool short *);
8313 vector pixel vec_ldl (int, const vector pixel *);
8314 vector signed short vec_ldl (int, const vector signed short *);
8315 vector signed short vec_ldl (int, const short *);
8316 vector unsigned short vec_ldl (int, const vector unsigned short *);
8317 vector unsigned short vec_ldl (int, const unsigned short *);
8318 vector bool char vec_ldl (int, const vector bool char *);
8319 vector signed char vec_ldl (int, const vector signed char *);
8320 vector signed char vec_ldl (int, const signed char *);
8321 vector unsigned char vec_ldl (int, const vector unsigned char *);
8322 vector unsigned char vec_ldl (int, const unsigned char *);
8323
8324 vector float vec_loge (vector float);
8325
8326 vector unsigned char vec_lvsl (int, const volatile unsigned char *);
8327 vector unsigned char vec_lvsl (int, const volatile signed char *);
8328 vector unsigned char vec_lvsl (int, const volatile unsigned short *);
8329 vector unsigned char vec_lvsl (int, const volatile short *);
8330 vector unsigned char vec_lvsl (int, const volatile unsigned int *);
8331 vector unsigned char vec_lvsl (int, const volatile int *);
8332 vector unsigned char vec_lvsl (int, const volatile unsigned long *);
8333 vector unsigned char vec_lvsl (int, const volatile long *);
8334 vector unsigned char vec_lvsl (int, const volatile float *);
8335
8336 vector unsigned char vec_lvsr (int, const volatile unsigned char *);
8337 vector unsigned char vec_lvsr (int, const volatile signed char *);
8338 vector unsigned char vec_lvsr (int, const volatile unsigned short *);
8339 vector unsigned char vec_lvsr (int, const volatile short *);
8340 vector unsigned char vec_lvsr (int, const volatile unsigned int *);
8341 vector unsigned char vec_lvsr (int, const volatile int *);
8342 vector unsigned char vec_lvsr (int, const volatile unsigned long *);
8343 vector unsigned char vec_lvsr (int, const volatile long *);
8344 vector unsigned char vec_lvsr (int, const volatile float *);
8345
8346 vector float vec_madd (vector float, vector float, vector float);
8347
8348 vector signed short vec_madds (vector signed short,
8349 vector signed short,
8350 vector signed short);
8351
8352 vector unsigned char vec_max (vector bool char, vector unsigned char);
8353 vector unsigned char vec_max (vector unsigned char, vector bool char);
8354 vector unsigned char vec_max (vector unsigned char,
8355 vector unsigned char);
8356 vector signed char vec_max (vector bool char, vector signed char);
8357 vector signed char vec_max (vector signed char, vector bool char);
8358 vector signed char vec_max (vector signed char, vector signed char);
8359 vector unsigned short vec_max (vector bool short,
8360 vector unsigned short);
8361 vector unsigned short vec_max (vector unsigned short,
8362 vector bool short);
8363 vector unsigned short vec_max (vector unsigned short,
8364 vector unsigned short);
8365 vector signed short vec_max (vector bool short, vector signed short);
8366 vector signed short vec_max (vector signed short, vector bool short);
8367 vector signed short vec_max (vector signed short, vector signed short);
8368 vector unsigned int vec_max (vector bool int, vector unsigned int);
8369 vector unsigned int vec_max (vector unsigned int, vector bool int);
8370 vector unsigned int vec_max (vector unsigned int, vector unsigned int);
8371 vector signed int vec_max (vector bool int, vector signed int);
8372 vector signed int vec_max (vector signed int, vector bool int);
8373 vector signed int vec_max (vector signed int, vector signed int);
8374 vector float vec_max (vector float, vector float);
8375
8376 vector float vec_vmaxfp (vector float, vector float);
8377
8378 vector signed int vec_vmaxsw (vector bool int, vector signed int);
8379 vector signed int vec_vmaxsw (vector signed int, vector bool int);
8380 vector signed int vec_vmaxsw (vector signed int, vector signed int);
8381
8382 vector unsigned int vec_vmaxuw (vector bool int, vector unsigned int);
8383 vector unsigned int vec_vmaxuw (vector unsigned int, vector bool int);
8384 vector unsigned int vec_vmaxuw (vector unsigned int,
8385 vector unsigned int);
8386
8387 vector signed short vec_vmaxsh (vector bool short, vector signed short);
8388 vector signed short vec_vmaxsh (vector signed short, vector bool short);
8389 vector signed short vec_vmaxsh (vector signed short,
8390 vector signed short);
8391
8392 vector unsigned short vec_vmaxuh (vector bool short,
8393 vector unsigned short);
8394 vector unsigned short vec_vmaxuh (vector unsigned short,
8395 vector bool short);
8396 vector unsigned short vec_vmaxuh (vector unsigned short,
8397 vector unsigned short);
8398
8399 vector signed char vec_vmaxsb (vector bool char, vector signed char);
8400 vector signed char vec_vmaxsb (vector signed char, vector bool char);
8401 vector signed char vec_vmaxsb (vector signed char, vector signed char);
8402
8403 vector unsigned char vec_vmaxub (vector bool char,
8404 vector unsigned char);
8405 vector unsigned char vec_vmaxub (vector unsigned char,
8406 vector bool char);
8407 vector unsigned char vec_vmaxub (vector unsigned char,
8408 vector unsigned char);
8409
8410 vector bool char vec_mergeh (vector bool char, vector bool char);
8411 vector signed char vec_mergeh (vector signed char, vector signed char);
8412 vector unsigned char vec_mergeh (vector unsigned char,
8413 vector unsigned char);
8414 vector bool short vec_mergeh (vector bool short, vector bool short);
8415 vector pixel vec_mergeh (vector pixel, vector pixel);
8416 vector signed short vec_mergeh (vector signed short,
8417 vector signed short);
8418 vector unsigned short vec_mergeh (vector unsigned short,
8419 vector unsigned short);
8420 vector float vec_mergeh (vector float, vector float);
8421 vector bool int vec_mergeh (vector bool int, vector bool int);
8422 vector signed int vec_mergeh (vector signed int, vector signed int);
8423 vector unsigned int vec_mergeh (vector unsigned int,
8424 vector unsigned int);
8425
8426 vector float vec_vmrghw (vector float, vector float);
8427 vector bool int vec_vmrghw (vector bool int, vector bool int);
8428 vector signed int vec_vmrghw (vector signed int, vector signed int);
8429 vector unsigned int vec_vmrghw (vector unsigned int,
8430 vector unsigned int);
8431
8432 vector bool short vec_vmrghh (vector bool short, vector bool short);
8433 vector signed short vec_vmrghh (vector signed short,
8434 vector signed short);
8435 vector unsigned short vec_vmrghh (vector unsigned short,
8436 vector unsigned short);
8437 vector pixel vec_vmrghh (vector pixel, vector pixel);
8438
8439 vector bool char vec_vmrghb (vector bool char, vector bool char);
8440 vector signed char vec_vmrghb (vector signed char, vector signed char);
8441 vector unsigned char vec_vmrghb (vector unsigned char,
8442 vector unsigned char);
8443
8444 vector bool char vec_mergel (vector bool char, vector bool char);
8445 vector signed char vec_mergel (vector signed char, vector signed char);
8446 vector unsigned char vec_mergel (vector unsigned char,
8447 vector unsigned char);
8448 vector bool short vec_mergel (vector bool short, vector bool short);
8449 vector pixel vec_mergel (vector pixel, vector pixel);
8450 vector signed short vec_mergel (vector signed short,
8451 vector signed short);
8452 vector unsigned short vec_mergel (vector unsigned short,
8453 vector unsigned short);
8454 vector float vec_mergel (vector float, vector float);
8455 vector bool int vec_mergel (vector bool int, vector bool int);
8456 vector signed int vec_mergel (vector signed int, vector signed int);
8457 vector unsigned int vec_mergel (vector unsigned int,
8458 vector unsigned int);
8459
8460 vector float vec_vmrglw (vector float, vector float);
8461 vector signed int vec_vmrglw (vector signed int, vector signed int);
8462 vector unsigned int vec_vmrglw (vector unsigned int,
8463 vector unsigned int);
8464 vector bool int vec_vmrglw (vector bool int, vector bool int);
8465
8466 vector bool short vec_vmrglh (vector bool short, vector bool short);
8467 vector signed short vec_vmrglh (vector signed short,
8468 vector signed short);
8469 vector unsigned short vec_vmrglh (vector unsigned short,
8470 vector unsigned short);
8471 vector pixel vec_vmrglh (vector pixel, vector pixel);
8472
8473 vector bool char vec_vmrglb (vector bool char, vector bool char);
8474 vector signed char vec_vmrglb (vector signed char, vector signed char);
8475 vector unsigned char vec_vmrglb (vector unsigned char,
8476 vector unsigned char);
8477
8478 vector unsigned short vec_mfvscr (void);
8479
8480 vector unsigned char vec_min (vector bool char, vector unsigned char);
8481 vector unsigned char vec_min (vector unsigned char, vector bool char);
8482 vector unsigned char vec_min (vector unsigned char,
8483 vector unsigned char);
8484 vector signed char vec_min (vector bool char, vector signed char);
8485 vector signed char vec_min (vector signed char, vector bool char);
8486 vector signed char vec_min (vector signed char, vector signed char);
8487 vector unsigned short vec_min (vector bool short,
8488 vector unsigned short);
8489 vector unsigned short vec_min (vector unsigned short,
8490 vector bool short);
8491 vector unsigned short vec_min (vector unsigned short,
8492 vector unsigned short);
8493 vector signed short vec_min (vector bool short, vector signed short);
8494 vector signed short vec_min (vector signed short, vector bool short);
8495 vector signed short vec_min (vector signed short, vector signed short);
8496 vector unsigned int vec_min (vector bool int, vector unsigned int);
8497 vector unsigned int vec_min (vector unsigned int, vector bool int);
8498 vector unsigned int vec_min (vector unsigned int, vector unsigned int);
8499 vector signed int vec_min (vector bool int, vector signed int);
8500 vector signed int vec_min (vector signed int, vector bool int);
8501 vector signed int vec_min (vector signed int, vector signed int);
8502 vector float vec_min (vector float, vector float);
8503
8504 vector float vec_vminfp (vector float, vector float);
8505
8506 vector signed int vec_vminsw (vector bool int, vector signed int);
8507 vector signed int vec_vminsw (vector signed int, vector bool int);
8508 vector signed int vec_vminsw (vector signed int, vector signed int);
8509
8510 vector unsigned int vec_vminuw (vector bool int, vector unsigned int);
8511 vector unsigned int vec_vminuw (vector unsigned int, vector bool int);
8512 vector unsigned int vec_vminuw (vector unsigned int,
8513 vector unsigned int);
8514
8515 vector signed short vec_vminsh (vector bool short, vector signed short);
8516 vector signed short vec_vminsh (vector signed short, vector bool short);
8517 vector signed short vec_vminsh (vector signed short,
8518 vector signed short);
8519
8520 vector unsigned short vec_vminuh (vector bool short,
8521 vector unsigned short);
8522 vector unsigned short vec_vminuh (vector unsigned short,
8523 vector bool short);
8524 vector unsigned short vec_vminuh (vector unsigned short,
8525 vector unsigned short);
8526
8527 vector signed char vec_vminsb (vector bool char, vector signed char);
8528 vector signed char vec_vminsb (vector signed char, vector bool char);
8529 vector signed char vec_vminsb (vector signed char, vector signed char);
8530
8531 vector unsigned char vec_vminub (vector bool char,
8532 vector unsigned char);
8533 vector unsigned char vec_vminub (vector unsigned char,
8534 vector bool char);
8535 vector unsigned char vec_vminub (vector unsigned char,
8536 vector unsigned char);
8537
8538 vector signed short vec_mladd (vector signed short,
8539 vector signed short,
8540 vector signed short);
8541 vector signed short vec_mladd (vector signed short,
8542 vector unsigned short,
8543 vector unsigned short);
8544 vector signed short vec_mladd (vector unsigned short,
8545 vector signed short,
8546 vector signed short);
8547 vector unsigned short vec_mladd (vector unsigned short,
8548 vector unsigned short,
8549 vector unsigned short);
8550
8551 vector signed short vec_mradds (vector signed short,
8552 vector signed short,
8553 vector signed short);
8554
8555 vector unsigned int vec_msum (vector unsigned char,
8556 vector unsigned char,
8557 vector unsigned int);
8558 vector signed int vec_msum (vector signed char,
8559 vector unsigned char,
8560 vector signed int);
8561 vector unsigned int vec_msum (vector unsigned short,
8562 vector unsigned short,
8563 vector unsigned int);
8564 vector signed int vec_msum (vector signed short,
8565 vector signed short,
8566 vector signed int);
8567
8568 vector signed int vec_vmsumshm (vector signed short,
8569 vector signed short,
8570 vector signed int);
8571
8572 vector unsigned int vec_vmsumuhm (vector unsigned short,
8573 vector unsigned short,
8574 vector unsigned int);
8575
8576 vector signed int vec_vmsummbm (vector signed char,
8577 vector unsigned char,
8578 vector signed int);
8579
8580 vector unsigned int vec_vmsumubm (vector unsigned char,
8581 vector unsigned char,
8582 vector unsigned int);
8583
8584 vector unsigned int vec_msums (vector unsigned short,
8585 vector unsigned short,
8586 vector unsigned int);
8587 vector signed int vec_msums (vector signed short,
8588 vector signed short,
8589 vector signed int);
8590
8591 vector signed int vec_vmsumshs (vector signed short,
8592 vector signed short,
8593 vector signed int);
8594
8595 vector unsigned int vec_vmsumuhs (vector unsigned short,
8596 vector unsigned short,
8597 vector unsigned int);
8598
8599 void vec_mtvscr (vector signed int);
8600 void vec_mtvscr (vector unsigned int);
8601 void vec_mtvscr (vector bool int);
8602 void vec_mtvscr (vector signed short);
8603 void vec_mtvscr (vector unsigned short);
8604 void vec_mtvscr (vector bool short);
8605 void vec_mtvscr (vector pixel);
8606 void vec_mtvscr (vector signed char);
8607 void vec_mtvscr (vector unsigned char);
8608 void vec_mtvscr (vector bool char);
8609
8610 vector unsigned short vec_mule (vector unsigned char,
8611 vector unsigned char);
8612 vector signed short vec_mule (vector signed char,
8613 vector signed char);
8614 vector unsigned int vec_mule (vector unsigned short,
8615 vector unsigned short);
8616 vector signed int vec_mule (vector signed short, vector signed short);
8617
8618 vector signed int vec_vmulesh (vector signed short,
8619 vector signed short);
8620
8621 vector unsigned int vec_vmuleuh (vector unsigned short,
8622 vector unsigned short);
8623
8624 vector signed short vec_vmulesb (vector signed char,
8625 vector signed char);
8626
8627 vector unsigned short vec_vmuleub (vector unsigned char,
8628 vector unsigned char);
8629
8630 vector unsigned short vec_mulo (vector unsigned char,
8631 vector unsigned char);
8632 vector signed short vec_mulo (vector signed char, vector signed char);
8633 vector unsigned int vec_mulo (vector unsigned short,
8634 vector unsigned short);
8635 vector signed int vec_mulo (vector signed short, vector signed short);
8636
8637 vector signed int vec_vmulosh (vector signed short,
8638 vector signed short);
8639
8640 vector unsigned int vec_vmulouh (vector unsigned short,
8641 vector unsigned short);
8642
8643 vector signed short vec_vmulosb (vector signed char,
8644 vector signed char);
8645
8646 vector unsigned short vec_vmuloub (vector unsigned char,
8647 vector unsigned char);
8648
8649 vector float vec_nmsub (vector float, vector float, vector float);
8650
8651 vector float vec_nor (vector float, vector float);
8652 vector signed int vec_nor (vector signed int, vector signed int);
8653 vector unsigned int vec_nor (vector unsigned int, vector unsigned int);
8654 vector bool int vec_nor (vector bool int, vector bool int);
8655 vector signed short vec_nor (vector signed short, vector signed short);
8656 vector unsigned short vec_nor (vector unsigned short,
8657 vector unsigned short);
8658 vector bool short vec_nor (vector bool short, vector bool short);
8659 vector signed char vec_nor (vector signed char, vector signed char);
8660 vector unsigned char vec_nor (vector unsigned char,
8661 vector unsigned char);
8662 vector bool char vec_nor (vector bool char, vector bool char);
8663
8664 vector float vec_or (vector float, vector float);
8665 vector float vec_or (vector float, vector bool int);
8666 vector float vec_or (vector bool int, vector float);
8667 vector bool int vec_or (vector bool int, vector bool int);
8668 vector signed int vec_or (vector bool int, vector signed int);
8669 vector signed int vec_or (vector signed int, vector bool int);
8670 vector signed int vec_or (vector signed int, vector signed int);
8671 vector unsigned int vec_or (vector bool int, vector unsigned int);
8672 vector unsigned int vec_or (vector unsigned int, vector bool int);
8673 vector unsigned int vec_or (vector unsigned int, vector unsigned int);
8674 vector bool short vec_or (vector bool short, vector bool short);
8675 vector signed short vec_or (vector bool short, vector signed short);
8676 vector signed short vec_or (vector signed short, vector bool short);
8677 vector signed short vec_or (vector signed short, vector signed short);
8678 vector unsigned short vec_or (vector bool short, vector unsigned short);
8679 vector unsigned short vec_or (vector unsigned short, vector bool short);
8680 vector unsigned short vec_or (vector unsigned short,
8681 vector unsigned short);
8682 vector signed char vec_or (vector bool char, vector signed char);
8683 vector bool char vec_or (vector bool char, vector bool char);
8684 vector signed char vec_or (vector signed char, vector bool char);
8685 vector signed char vec_or (vector signed char, vector signed char);
8686 vector unsigned char vec_or (vector bool char, vector unsigned char);
8687 vector unsigned char vec_or (vector unsigned char, vector bool char);
8688 vector unsigned char vec_or (vector unsigned char,
8689 vector unsigned char);
8690
8691 vector signed char vec_pack (vector signed short, vector signed short);
8692 vector unsigned char vec_pack (vector unsigned short,
8693 vector unsigned short);
8694 vector bool char vec_pack (vector bool short, vector bool short);
8695 vector signed short vec_pack (vector signed int, vector signed int);
8696 vector unsigned short vec_pack (vector unsigned int,
8697 vector unsigned int);
8698 vector bool short vec_pack (vector bool int, vector bool int);
8699
8700 vector bool short vec_vpkuwum (vector bool int, vector bool int);
8701 vector signed short vec_vpkuwum (vector signed int, vector signed int);
8702 vector unsigned short vec_vpkuwum (vector unsigned int,
8703 vector unsigned int);
8704
8705 vector bool char vec_vpkuhum (vector bool short, vector bool short);
8706 vector signed char vec_vpkuhum (vector signed short,
8707 vector signed short);
8708 vector unsigned char vec_vpkuhum (vector unsigned short,
8709 vector unsigned short);
8710
8711 vector pixel vec_packpx (vector unsigned int, vector unsigned int);
8712
8713 vector unsigned char vec_packs (vector unsigned short,
8714 vector unsigned short);
8715 vector signed char vec_packs (vector signed short, vector signed short);
8716 vector unsigned short vec_packs (vector unsigned int,
8717 vector unsigned int);
8718 vector signed short vec_packs (vector signed int, vector signed int);
8719
8720 vector signed short vec_vpkswss (vector signed int, vector signed int);
8721
8722 vector unsigned short vec_vpkuwus (vector unsigned int,
8723 vector unsigned int);
8724
8725 vector signed char vec_vpkshss (vector signed short,
8726 vector signed short);
8727
8728 vector unsigned char vec_vpkuhus (vector unsigned short,
8729 vector unsigned short);
8730
8731 vector unsigned char vec_packsu (vector unsigned short,
8732 vector unsigned short);
8733 vector unsigned char vec_packsu (vector signed short,
8734 vector signed short);
8735 vector unsigned short vec_packsu (vector unsigned int,
8736 vector unsigned int);
8737 vector unsigned short vec_packsu (vector signed int, vector signed int);
8738
8739 vector unsigned short vec_vpkswus (vector signed int,
8740 vector signed int);
8741
8742 vector unsigned char vec_vpkshus (vector signed short,
8743 vector signed short);
8744
8745 vector float vec_perm (vector float,
8746 vector float,
8747 vector unsigned char);
8748 vector signed int vec_perm (vector signed int,
8749 vector signed int,
8750 vector unsigned char);
8751 vector unsigned int vec_perm (vector unsigned int,
8752 vector unsigned int,
8753 vector unsigned char);
8754 vector bool int vec_perm (vector bool int,
8755 vector bool int,
8756 vector unsigned char);
8757 vector signed short vec_perm (vector signed short,
8758 vector signed short,
8759 vector unsigned char);
8760 vector unsigned short vec_perm (vector unsigned short,
8761 vector unsigned short,
8762 vector unsigned char);
8763 vector bool short vec_perm (vector bool short,
8764 vector bool short,
8765 vector unsigned char);
8766 vector pixel vec_perm (vector pixel,
8767 vector pixel,
8768 vector unsigned char);
8769 vector signed char vec_perm (vector signed char,
8770 vector signed char,
8771 vector unsigned char);
8772 vector unsigned char vec_perm (vector unsigned char,
8773 vector unsigned char,
8774 vector unsigned char);
8775 vector bool char vec_perm (vector bool char,
8776 vector bool char,
8777 vector unsigned char);
8778
8779 vector float vec_re (vector float);
8780
8781 vector signed char vec_rl (vector signed char,
8782 vector unsigned char);
8783 vector unsigned char vec_rl (vector unsigned char,
8784 vector unsigned char);
8785 vector signed short vec_rl (vector signed short, vector unsigned short);
8786 vector unsigned short vec_rl (vector unsigned short,
8787 vector unsigned short);
8788 vector signed int vec_rl (vector signed int, vector unsigned int);
8789 vector unsigned int vec_rl (vector unsigned int, vector unsigned int);
8790
8791 vector signed int vec_vrlw (vector signed int, vector unsigned int);
8792 vector unsigned int vec_vrlw (vector unsigned int, vector unsigned int);
8793
8794 vector signed short vec_vrlh (vector signed short,
8795 vector unsigned short);
8796 vector unsigned short vec_vrlh (vector unsigned short,
8797 vector unsigned short);
8798
8799 vector signed char vec_vrlb (vector signed char, vector unsigned char);
8800 vector unsigned char vec_vrlb (vector unsigned char,
8801 vector unsigned char);
8802
8803 vector float vec_round (vector float);
8804
8805 vector float vec_rsqrte (vector float);
8806
8807 vector float vec_sel (vector float, vector float, vector bool int);
8808 vector float vec_sel (vector float, vector float, vector unsigned int);
8809 vector signed int vec_sel (vector signed int,
8810 vector signed int,
8811 vector bool int);
8812 vector signed int vec_sel (vector signed int,
8813 vector signed int,
8814 vector unsigned int);
8815 vector unsigned int vec_sel (vector unsigned int,
8816 vector unsigned int,
8817 vector bool int);
8818 vector unsigned int vec_sel (vector unsigned int,
8819 vector unsigned int,
8820 vector unsigned int);
8821 vector bool int vec_sel (vector bool int,
8822 vector bool int,
8823 vector bool int);
8824 vector bool int vec_sel (vector bool int,
8825 vector bool int,
8826 vector unsigned int);
8827 vector signed short vec_sel (vector signed short,
8828 vector signed short,
8829 vector bool short);
8830 vector signed short vec_sel (vector signed short,
8831 vector signed short,
8832 vector unsigned short);
8833 vector unsigned short vec_sel (vector unsigned short,
8834 vector unsigned short,
8835 vector bool short);
8836 vector unsigned short vec_sel (vector unsigned short,
8837 vector unsigned short,
8838 vector unsigned short);
8839 vector bool short vec_sel (vector bool short,
8840 vector bool short,
8841 vector bool short);
8842 vector bool short vec_sel (vector bool short,
8843 vector bool short,
8844 vector unsigned short);
8845 vector signed char vec_sel (vector signed char,
8846 vector signed char,
8847 vector bool char);
8848 vector signed char vec_sel (vector signed char,
8849 vector signed char,
8850 vector unsigned char);
8851 vector unsigned char vec_sel (vector unsigned char,
8852 vector unsigned char,
8853 vector bool char);
8854 vector unsigned char vec_sel (vector unsigned char,
8855 vector unsigned char,
8856 vector unsigned char);
8857 vector bool char vec_sel (vector bool char,
8858 vector bool char,
8859 vector bool char);
8860 vector bool char vec_sel (vector bool char,
8861 vector bool char,
8862 vector unsigned char);
8863
8864 vector signed char vec_sl (vector signed char,
8865 vector unsigned char);
8866 vector unsigned char vec_sl (vector unsigned char,
8867 vector unsigned char);
8868 vector signed short vec_sl (vector signed short, vector unsigned short);
8869 vector unsigned short vec_sl (vector unsigned short,
8870 vector unsigned short);
8871 vector signed int vec_sl (vector signed int, vector unsigned int);
8872 vector unsigned int vec_sl (vector unsigned int, vector unsigned int);
8873
8874 vector signed int vec_vslw (vector signed int, vector unsigned int);
8875 vector unsigned int vec_vslw (vector unsigned int, vector unsigned int);
8876
8877 vector signed short vec_vslh (vector signed short,
8878 vector unsigned short);
8879 vector unsigned short vec_vslh (vector unsigned short,
8880 vector unsigned short);
8881
8882 vector signed char vec_vslb (vector signed char, vector unsigned char);
8883 vector unsigned char vec_vslb (vector unsigned char,
8884 vector unsigned char);
8885
8886 vector float vec_sld (vector float, vector float, const int);
8887 vector signed int vec_sld (vector signed int,
8888 vector signed int,
8889 const int);
8890 vector unsigned int vec_sld (vector unsigned int,
8891 vector unsigned int,
8892 const int);
8893 vector bool int vec_sld (vector bool int,
8894 vector bool int,
8895 const int);
8896 vector signed short vec_sld (vector signed short,
8897 vector signed short,
8898 const int);
8899 vector unsigned short vec_sld (vector unsigned short,
8900 vector unsigned short,
8901 const int);
8902 vector bool short vec_sld (vector bool short,
8903 vector bool short,
8904 const int);
8905 vector pixel vec_sld (vector pixel,
8906 vector pixel,
8907 const int);
8908 vector signed char vec_sld (vector signed char,
8909 vector signed char,
8910 const int);
8911 vector unsigned char vec_sld (vector unsigned char,
8912 vector unsigned char,
8913 const int);
8914 vector bool char vec_sld (vector bool char,
8915 vector bool char,
8916 const int);
8917
8918 vector signed int vec_sll (vector signed int,
8919 vector unsigned int);
8920 vector signed int vec_sll (vector signed int,
8921 vector unsigned short);
8922 vector signed int vec_sll (vector signed int,
8923 vector unsigned char);
8924 vector unsigned int vec_sll (vector unsigned int,
8925 vector unsigned int);
8926 vector unsigned int vec_sll (vector unsigned int,
8927 vector unsigned short);
8928 vector unsigned int vec_sll (vector unsigned int,
8929 vector unsigned char);
8930 vector bool int vec_sll (vector bool int,
8931 vector unsigned int);
8932 vector bool int vec_sll (vector bool int,
8933 vector unsigned short);
8934 vector bool int vec_sll (vector bool int,
8935 vector unsigned char);
8936 vector signed short vec_sll (vector signed short,
8937 vector unsigned int);
8938 vector signed short vec_sll (vector signed short,
8939 vector unsigned short);
8940 vector signed short vec_sll (vector signed short,
8941 vector unsigned char);
8942 vector unsigned short vec_sll (vector unsigned short,
8943 vector unsigned int);
8944 vector unsigned short vec_sll (vector unsigned short,
8945 vector unsigned short);
8946 vector unsigned short vec_sll (vector unsigned short,
8947 vector unsigned char);
8948 vector bool short vec_sll (vector bool short, vector unsigned int);
8949 vector bool short vec_sll (vector bool short, vector unsigned short);
8950 vector bool short vec_sll (vector bool short, vector unsigned char);
8951 vector pixel vec_sll (vector pixel, vector unsigned int);
8952 vector pixel vec_sll (vector pixel, vector unsigned short);
8953 vector pixel vec_sll (vector pixel, vector unsigned char);
8954 vector signed char vec_sll (vector signed char, vector unsigned int);
8955 vector signed char vec_sll (vector signed char, vector unsigned short);
8956 vector signed char vec_sll (vector signed char, vector unsigned char);
8957 vector unsigned char vec_sll (vector unsigned char,
8958 vector unsigned int);
8959 vector unsigned char vec_sll (vector unsigned char,
8960 vector unsigned short);
8961 vector unsigned char vec_sll (vector unsigned char,
8962 vector unsigned char);
8963 vector bool char vec_sll (vector bool char, vector unsigned int);
8964 vector bool char vec_sll (vector bool char, vector unsigned short);
8965 vector bool char vec_sll (vector bool char, vector unsigned char);
8966
8967 vector float vec_slo (vector float, vector signed char);
8968 vector float vec_slo (vector float, vector unsigned char);
8969 vector signed int vec_slo (vector signed int, vector signed char);
8970 vector signed int vec_slo (vector signed int, vector unsigned char);
8971 vector unsigned int vec_slo (vector unsigned int, vector signed char);
8972 vector unsigned int vec_slo (vector unsigned int, vector unsigned char);
8973 vector signed short vec_slo (vector signed short, vector signed char);
8974 vector signed short vec_slo (vector signed short, vector unsigned char);
8975 vector unsigned short vec_slo (vector unsigned short,
8976 vector signed char);
8977 vector unsigned short vec_slo (vector unsigned short,
8978 vector unsigned char);
8979 vector pixel vec_slo (vector pixel, vector signed char);
8980 vector pixel vec_slo (vector pixel, vector unsigned char);
8981 vector signed char vec_slo (vector signed char, vector signed char);
8982 vector signed char vec_slo (vector signed char, vector unsigned char);
8983 vector unsigned char vec_slo (vector unsigned char, vector signed char);
8984 vector unsigned char vec_slo (vector unsigned char,
8985 vector unsigned char);
8986
8987 vector signed char vec_splat (vector signed char, const int);
8988 vector unsigned char vec_splat (vector unsigned char, const int);
8989 vector bool char vec_splat (vector bool char, const int);
8990 vector signed short vec_splat (vector signed short, const int);
8991 vector unsigned short vec_splat (vector unsigned short, const int);
8992 vector bool short vec_splat (vector bool short, const int);
8993 vector pixel vec_splat (vector pixel, const int);
8994 vector float vec_splat (vector float, const int);
8995 vector signed int vec_splat (vector signed int, const int);
8996 vector unsigned int vec_splat (vector unsigned int, const int);
8997 vector bool int vec_splat (vector bool int, const int);
8998
8999 vector float vec_vspltw (vector float, const int);
9000 vector signed int vec_vspltw (vector signed int, const int);
9001 vector unsigned int vec_vspltw (vector unsigned int, const int);
9002 vector bool int vec_vspltw (vector bool int, const int);
9003
9004 vector bool short vec_vsplth (vector bool short, const int);
9005 vector signed short vec_vsplth (vector signed short, const int);
9006 vector unsigned short vec_vsplth (vector unsigned short, const int);
9007 vector pixel vec_vsplth (vector pixel, const int);
9008
9009 vector signed char vec_vspltb (vector signed char, const int);
9010 vector unsigned char vec_vspltb (vector unsigned char, const int);
9011 vector bool char vec_vspltb (vector bool char, const int);
9012
9013 vector signed char vec_splat_s8 (const int);
9014
9015 vector signed short vec_splat_s16 (const int);
9016
9017 vector signed int vec_splat_s32 (const int);
9018
9019 vector unsigned char vec_splat_u8 (const int);
9020
9021 vector unsigned short vec_splat_u16 (const int);
9022
9023 vector unsigned int vec_splat_u32 (const int);
9024
9025 vector signed char vec_sr (vector signed char, vector unsigned char);
9026 vector unsigned char vec_sr (vector unsigned char,
9027 vector unsigned char);
9028 vector signed short vec_sr (vector signed short,
9029 vector unsigned short);
9030 vector unsigned short vec_sr (vector unsigned short,
9031 vector unsigned short);
9032 vector signed int vec_sr (vector signed int, vector unsigned int);
9033 vector unsigned int vec_sr (vector unsigned int, vector unsigned int);
9034
9035 vector signed int vec_vsrw (vector signed int, vector unsigned int);
9036 vector unsigned int vec_vsrw (vector unsigned int, vector unsigned int);
9037
9038 vector signed short vec_vsrh (vector signed short,
9039 vector unsigned short);
9040 vector unsigned short vec_vsrh (vector unsigned short,
9041 vector unsigned short);
9042
9043 vector signed char vec_vsrb (vector signed char, vector unsigned char);
9044 vector unsigned char vec_vsrb (vector unsigned char,
9045 vector unsigned char);
9046
9047 vector signed char vec_sra (vector signed char, vector unsigned char);
9048 vector unsigned char vec_sra (vector unsigned char,
9049 vector unsigned char);
9050 vector signed short vec_sra (vector signed short,
9051 vector unsigned short);
9052 vector unsigned short vec_sra (vector unsigned short,
9053 vector unsigned short);
9054 vector signed int vec_sra (vector signed int, vector unsigned int);
9055 vector unsigned int vec_sra (vector unsigned int, vector unsigned int);
9056
9057 vector signed int vec_vsraw (vector signed int, vector unsigned int);
9058 vector unsigned int vec_vsraw (vector unsigned int,
9059 vector unsigned int);
9060
9061 vector signed short vec_vsrah (vector signed short,
9062 vector unsigned short);
9063 vector unsigned short vec_vsrah (vector unsigned short,
9064 vector unsigned short);
9065
9066 vector signed char vec_vsrab (vector signed char, vector unsigned char);
9067 vector unsigned char vec_vsrab (vector unsigned char,
9068 vector unsigned char);
9069
9070 vector signed int vec_srl (vector signed int, vector unsigned int);
9071 vector signed int vec_srl (vector signed int, vector unsigned short);
9072 vector signed int vec_srl (vector signed int, vector unsigned char);
9073 vector unsigned int vec_srl (vector unsigned int, vector unsigned int);
9074 vector unsigned int vec_srl (vector unsigned int,
9075 vector unsigned short);
9076 vector unsigned int vec_srl (vector unsigned int, vector unsigned char);
9077 vector bool int vec_srl (vector bool int, vector unsigned int);
9078 vector bool int vec_srl (vector bool int, vector unsigned short);
9079 vector bool int vec_srl (vector bool int, vector unsigned char);
9080 vector signed short vec_srl (vector signed short, vector unsigned int);
9081 vector signed short vec_srl (vector signed short,
9082 vector unsigned short);
9083 vector signed short vec_srl (vector signed short, vector unsigned char);
9084 vector unsigned short vec_srl (vector unsigned short,
9085 vector unsigned int);
9086 vector unsigned short vec_srl (vector unsigned short,
9087 vector unsigned short);
9088 vector unsigned short vec_srl (vector unsigned short,
9089 vector unsigned char);
9090 vector bool short vec_srl (vector bool short, vector unsigned int);
9091 vector bool short vec_srl (vector bool short, vector unsigned short);
9092 vector bool short vec_srl (vector bool short, vector unsigned char);
9093 vector pixel vec_srl (vector pixel, vector unsigned int);
9094 vector pixel vec_srl (vector pixel, vector unsigned short);
9095 vector pixel vec_srl (vector pixel, vector unsigned char);
9096 vector signed char vec_srl (vector signed char, vector unsigned int);
9097 vector signed char vec_srl (vector signed char, vector unsigned short);
9098 vector signed char vec_srl (vector signed char, vector unsigned char);
9099 vector unsigned char vec_srl (vector unsigned char,
9100 vector unsigned int);
9101 vector unsigned char vec_srl (vector unsigned char,
9102 vector unsigned short);
9103 vector unsigned char vec_srl (vector unsigned char,
9104 vector unsigned char);
9105 vector bool char vec_srl (vector bool char, vector unsigned int);
9106 vector bool char vec_srl (vector bool char, vector unsigned short);
9107 vector bool char vec_srl (vector bool char, vector unsigned char);
9108
9109 vector float vec_sro (vector float, vector signed char);
9110 vector float vec_sro (vector float, vector unsigned char);
9111 vector signed int vec_sro (vector signed int, vector signed char);
9112 vector signed int vec_sro (vector signed int, vector unsigned char);
9113 vector unsigned int vec_sro (vector unsigned int, vector signed char);
9114 vector unsigned int vec_sro (vector unsigned int, vector unsigned char);
9115 vector signed short vec_sro (vector signed short, vector signed char);
9116 vector signed short vec_sro (vector signed short, vector unsigned char);
9117 vector unsigned short vec_sro (vector unsigned short,
9118 vector signed char);
9119 vector unsigned short vec_sro (vector unsigned short,
9120 vector unsigned char);
9121 vector pixel vec_sro (vector pixel, vector signed char);
9122 vector pixel vec_sro (vector pixel, vector unsigned char);
9123 vector signed char vec_sro (vector signed char, vector signed char);
9124 vector signed char vec_sro (vector signed char, vector unsigned char);
9125 vector unsigned char vec_sro (vector unsigned char, vector signed char);
9126 vector unsigned char vec_sro (vector unsigned char,
9127 vector unsigned char);
9128
9129 void vec_st (vector float, int, vector float *);
9130 void vec_st (vector float, int, float *);
9131 void vec_st (vector signed int, int, vector signed int *);
9132 void vec_st (vector signed int, int, int *);
9133 void vec_st (vector unsigned int, int, vector unsigned int *);
9134 void vec_st (vector unsigned int, int, unsigned int *);
9135 void vec_st (vector bool int, int, vector bool int *);
9136 void vec_st (vector bool int, int, unsigned int *);
9137 void vec_st (vector bool int, int, int *);
9138 void vec_st (vector signed short, int, vector signed short *);
9139 void vec_st (vector signed short, int, short *);
9140 void vec_st (vector unsigned short, int, vector unsigned short *);
9141 void vec_st (vector unsigned short, int, unsigned short *);
9142 void vec_st (vector bool short, int, vector bool short *);
9143 void vec_st (vector bool short, int, unsigned short *);
9144 void vec_st (vector pixel, int, vector pixel *);
9145 void vec_st (vector pixel, int, unsigned short *);
9146 void vec_st (vector pixel, int, short *);
9147 void vec_st (vector bool short, int, short *);
9148 void vec_st (vector signed char, int, vector signed char *);
9149 void vec_st (vector signed char, int, signed char *);
9150 void vec_st (vector unsigned char, int, vector unsigned char *);
9151 void vec_st (vector unsigned char, int, unsigned char *);
9152 void vec_st (vector bool char, int, vector bool char *);
9153 void vec_st (vector bool char, int, unsigned char *);
9154 void vec_st (vector bool char, int, signed char *);
9155
9156 void vec_ste (vector signed char, int, signed char *);
9157 void vec_ste (vector unsigned char, int, unsigned char *);
9158 void vec_ste (vector bool char, int, signed char *);
9159 void vec_ste (vector bool char, int, unsigned char *);
9160 void vec_ste (vector signed short, int, short *);
9161 void vec_ste (vector unsigned short, int, unsigned short *);
9162 void vec_ste (vector bool short, int, short *);
9163 void vec_ste (vector bool short, int, unsigned short *);
9164 void vec_ste (vector pixel, int, short *);
9165 void vec_ste (vector pixel, int, unsigned short *);
9166 void vec_ste (vector float, int, float *);
9167 void vec_ste (vector signed int, int, int *);
9168 void vec_ste (vector unsigned int, int, unsigned int *);
9169 void vec_ste (vector bool int, int, int *);
9170 void vec_ste (vector bool int, int, unsigned int *);
9171
9172 void vec_stvewx (vector float, int, float *);
9173 void vec_stvewx (vector signed int, int, int *);
9174 void vec_stvewx (vector unsigned int, int, unsigned int *);
9175 void vec_stvewx (vector bool int, int, int *);
9176 void vec_stvewx (vector bool int, int, unsigned int *);
9177
9178 void vec_stvehx (vector signed short, int, short *);
9179 void vec_stvehx (vector unsigned short, int, unsigned short *);
9180 void vec_stvehx (vector bool short, int, short *);
9181 void vec_stvehx (vector bool short, int, unsigned short *);
9182 void vec_stvehx (vector pixel, int, short *);
9183 void vec_stvehx (vector pixel, int, unsigned short *);
9184
9185 void vec_stvebx (vector signed char, int, signed char *);
9186 void vec_stvebx (vector unsigned char, int, unsigned char *);
9187 void vec_stvebx (vector bool char, int, signed char *);
9188 void vec_stvebx (vector bool char, int, unsigned char *);
9189
9190 void vec_stl (vector float, int, vector float *);
9191 void vec_stl (vector float, int, float *);
9192 void vec_stl (vector signed int, int, vector signed int *);
9193 void vec_stl (vector signed int, int, int *);
9194 void vec_stl (vector unsigned int, int, vector unsigned int *);
9195 void vec_stl (vector unsigned int, int, unsigned int *);
9196 void vec_stl (vector bool int, int, vector bool int *);
9197 void vec_stl (vector bool int, int, unsigned int *);
9198 void vec_stl (vector bool int, int, int *);
9199 void vec_stl (vector signed short, int, vector signed short *);
9200 void vec_stl (vector signed short, int, short *);
9201 void vec_stl (vector unsigned short, int, vector unsigned short *);
9202 void vec_stl (vector unsigned short, int, unsigned short *);
9203 void vec_stl (vector bool short, int, vector bool short *);
9204 void vec_stl (vector bool short, int, unsigned short *);
9205 void vec_stl (vector bool short, int, short *);
9206 void vec_stl (vector pixel, int, vector pixel *);
9207 void vec_stl (vector pixel, int, unsigned short *);
9208 void vec_stl (vector pixel, int, short *);
9209 void vec_stl (vector signed char, int, vector signed char *);
9210 void vec_stl (vector signed char, int, signed char *);
9211 void vec_stl (vector unsigned char, int, vector unsigned char *);
9212 void vec_stl (vector unsigned char, int, unsigned char *);
9213 void vec_stl (vector bool char, int, vector bool char *);
9214 void vec_stl (vector bool char, int, unsigned char *);
9215 void vec_stl (vector bool char, int, signed char *);
9216
9217 vector signed char vec_sub (vector bool char, vector signed char);
9218 vector signed char vec_sub (vector signed char, vector bool char);
9219 vector signed char vec_sub (vector signed char, vector signed char);
9220 vector unsigned char vec_sub (vector bool char, vector unsigned char);
9221 vector unsigned char vec_sub (vector unsigned char, vector bool char);
9222 vector unsigned char vec_sub (vector unsigned char,
9223 vector unsigned char);
9224 vector signed short vec_sub (vector bool short, vector signed short);
9225 vector signed short vec_sub (vector signed short, vector bool short);
9226 vector signed short vec_sub (vector signed short, vector signed short);
9227 vector unsigned short vec_sub (vector bool short,
9228 vector unsigned short);
9229 vector unsigned short vec_sub (vector unsigned short,
9230 vector bool short);
9231 vector unsigned short vec_sub (vector unsigned short,
9232 vector unsigned short);
9233 vector signed int vec_sub (vector bool int, vector signed int);
9234 vector signed int vec_sub (vector signed int, vector bool int);
9235 vector signed int vec_sub (vector signed int, vector signed int);
9236 vector unsigned int vec_sub (vector bool int, vector unsigned int);
9237 vector unsigned int vec_sub (vector unsigned int, vector bool int);
9238 vector unsigned int vec_sub (vector unsigned int, vector unsigned int);
9239 vector float vec_sub (vector float, vector float);
9240
9241 vector float vec_vsubfp (vector float, vector float);
9242
9243 vector signed int vec_vsubuwm (vector bool int, vector signed int);
9244 vector signed int vec_vsubuwm (vector signed int, vector bool int);
9245 vector signed int vec_vsubuwm (vector signed int, vector signed int);
9246 vector unsigned int vec_vsubuwm (vector bool int, vector unsigned int);
9247 vector unsigned int vec_vsubuwm (vector unsigned int, vector bool int);
9248 vector unsigned int vec_vsubuwm (vector unsigned int,
9249 vector unsigned int);
9250
9251 vector signed short vec_vsubuhm (vector bool short,
9252 vector signed short);
9253 vector signed short vec_vsubuhm (vector signed short,
9254 vector bool short);
9255 vector signed short vec_vsubuhm (vector signed short,
9256 vector signed short);
9257 vector unsigned short vec_vsubuhm (vector bool short,
9258 vector unsigned short);
9259 vector unsigned short vec_vsubuhm (vector unsigned short,
9260 vector bool short);
9261 vector unsigned short vec_vsubuhm (vector unsigned short,
9262 vector unsigned short);
9263
9264 vector signed char vec_vsububm (vector bool char, vector signed char);
9265 vector signed char vec_vsububm (vector signed char, vector bool char);
9266 vector signed char vec_vsububm (vector signed char, vector signed char);
9267 vector unsigned char vec_vsububm (vector bool char,
9268 vector unsigned char);
9269 vector unsigned char vec_vsububm (vector unsigned char,
9270 vector bool char);
9271 vector unsigned char vec_vsububm (vector unsigned char,
9272 vector unsigned char);
9273
9274 vector unsigned int vec_subc (vector unsigned int, vector unsigned int);
9275
9276 vector unsigned char vec_subs (vector bool char, vector unsigned char);
9277 vector unsigned char vec_subs (vector unsigned char, vector bool char);
9278 vector unsigned char vec_subs (vector unsigned char,
9279 vector unsigned char);
9280 vector signed char vec_subs (vector bool char, vector signed char);
9281 vector signed char vec_subs (vector signed char, vector bool char);
9282 vector signed char vec_subs (vector signed char, vector signed char);
9283 vector unsigned short vec_subs (vector bool short,
9284 vector unsigned short);
9285 vector unsigned short vec_subs (vector unsigned short,
9286 vector bool short);
9287 vector unsigned short vec_subs (vector unsigned short,
9288 vector unsigned short);
9289 vector signed short vec_subs (vector bool short, vector signed short);
9290 vector signed short vec_subs (vector signed short, vector bool short);
9291 vector signed short vec_subs (vector signed short, vector signed short);
9292 vector unsigned int vec_subs (vector bool int, vector unsigned int);
9293 vector unsigned int vec_subs (vector unsigned int, vector bool int);
9294 vector unsigned int vec_subs (vector unsigned int, vector unsigned int);
9295 vector signed int vec_subs (vector bool int, vector signed int);
9296 vector signed int vec_subs (vector signed int, vector bool int);
9297 vector signed int vec_subs (vector signed int, vector signed int);
9298
9299 vector signed int vec_vsubsws (vector bool int, vector signed int);
9300 vector signed int vec_vsubsws (vector signed int, vector bool int);
9301 vector signed int vec_vsubsws (vector signed int, vector signed int);
9302
9303 vector unsigned int vec_vsubuws (vector bool int, vector unsigned int);
9304 vector unsigned int vec_vsubuws (vector unsigned int, vector bool int);
9305 vector unsigned int vec_vsubuws (vector unsigned int,
9306 vector unsigned int);
9307
9308 vector signed short vec_vsubshs (vector bool short,
9309 vector signed short);
9310 vector signed short vec_vsubshs (vector signed short,
9311 vector bool short);
9312 vector signed short vec_vsubshs (vector signed short,
9313 vector signed short);
9314
9315 vector unsigned short vec_vsubuhs (vector bool short,
9316 vector unsigned short);
9317 vector unsigned short vec_vsubuhs (vector unsigned short,
9318 vector bool short);
9319 vector unsigned short vec_vsubuhs (vector unsigned short,
9320 vector unsigned short);
9321
9322 vector signed char vec_vsubsbs (vector bool char, vector signed char);
9323 vector signed char vec_vsubsbs (vector signed char, vector bool char);
9324 vector signed char vec_vsubsbs (vector signed char, vector signed char);
9325
9326 vector unsigned char vec_vsububs (vector bool char,
9327 vector unsigned char);
9328 vector unsigned char vec_vsububs (vector unsigned char,
9329 vector bool char);
9330 vector unsigned char vec_vsububs (vector unsigned char,
9331 vector unsigned char);
9332
9333 vector unsigned int vec_sum4s (vector unsigned char,
9334 vector unsigned int);
9335 vector signed int vec_sum4s (vector signed char, vector signed int);
9336 vector signed int vec_sum4s (vector signed short, vector signed int);
9337
9338 vector signed int vec_vsum4shs (vector signed short, vector signed int);
9339
9340 vector signed int vec_vsum4sbs (vector signed char, vector signed int);
9341
9342 vector unsigned int vec_vsum4ubs (vector unsigned char,
9343 vector unsigned int);
9344
9345 vector signed int vec_sum2s (vector signed int, vector signed int);
9346
9347 vector signed int vec_sums (vector signed int, vector signed int);
9348
9349 vector float vec_trunc (vector float);
9350
9351 vector signed short vec_unpackh (vector signed char);
9352 vector bool short vec_unpackh (vector bool char);
9353 vector signed int vec_unpackh (vector signed short);
9354 vector bool int vec_unpackh (vector bool short);
9355 vector unsigned int vec_unpackh (vector pixel);
9356
9357 vector bool int vec_vupkhsh (vector bool short);
9358 vector signed int vec_vupkhsh (vector signed short);
9359
9360 vector unsigned int vec_vupkhpx (vector pixel);
9361
9362 vector bool short vec_vupkhsb (vector bool char);
9363 vector signed short vec_vupkhsb (vector signed char);
9364
9365 vector signed short vec_unpackl (vector signed char);
9366 vector bool short vec_unpackl (vector bool char);
9367 vector unsigned int vec_unpackl (vector pixel);
9368 vector signed int vec_unpackl (vector signed short);
9369 vector bool int vec_unpackl (vector bool short);
9370
9371 vector unsigned int vec_vupklpx (vector pixel);
9372
9373 vector bool int vec_vupklsh (vector bool short);
9374 vector signed int vec_vupklsh (vector signed short);
9375
9376 vector bool short vec_vupklsb (vector bool char);
9377 vector signed short vec_vupklsb (vector signed char);
9378
9379 vector float vec_xor (vector float, vector float);
9380 vector float vec_xor (vector float, vector bool int);
9381 vector float vec_xor (vector bool int, vector float);
9382 vector bool int vec_xor (vector bool int, vector bool int);
9383 vector signed int vec_xor (vector bool int, vector signed int);
9384 vector signed int vec_xor (vector signed int, vector bool int);
9385 vector signed int vec_xor (vector signed int, vector signed int);
9386 vector unsigned int vec_xor (vector bool int, vector unsigned int);
9387 vector unsigned int vec_xor (vector unsigned int, vector bool int);
9388 vector unsigned int vec_xor (vector unsigned int, vector unsigned int);
9389 vector bool short vec_xor (vector bool short, vector bool short);
9390 vector signed short vec_xor (vector bool short, vector signed short);
9391 vector signed short vec_xor (vector signed short, vector bool short);
9392 vector signed short vec_xor (vector signed short, vector signed short);
9393 vector unsigned short vec_xor (vector bool short,
9394 vector unsigned short);
9395 vector unsigned short vec_xor (vector unsigned short,
9396 vector bool short);
9397 vector unsigned short vec_xor (vector unsigned short,
9398 vector unsigned short);
9399 vector signed char vec_xor (vector bool char, vector signed char);
9400 vector bool char vec_xor (vector bool char, vector bool char);
9401 vector signed char vec_xor (vector signed char, vector bool char);
9402 vector signed char vec_xor (vector signed char, vector signed char);
9403 vector unsigned char vec_xor (vector bool char, vector unsigned char);
9404 vector unsigned char vec_xor (vector unsigned char, vector bool char);
9405 vector unsigned char vec_xor (vector unsigned char,
9406 vector unsigned char);
9407
9408 int vec_all_eq (vector signed char, vector bool char);
9409 int vec_all_eq (vector signed char, vector signed char);
9410 int vec_all_eq (vector unsigned char, vector bool char);
9411 int vec_all_eq (vector unsigned char, vector unsigned char);
9412 int vec_all_eq (vector bool char, vector bool char);
9413 int vec_all_eq (vector bool char, vector unsigned char);
9414 int vec_all_eq (vector bool char, vector signed char);
9415 int vec_all_eq (vector signed short, vector bool short);
9416 int vec_all_eq (vector signed short, vector signed short);
9417 int vec_all_eq (vector unsigned short, vector bool short);
9418 int vec_all_eq (vector unsigned short, vector unsigned short);
9419 int vec_all_eq (vector bool short, vector bool short);
9420 int vec_all_eq (vector bool short, vector unsigned short);
9421 int vec_all_eq (vector bool short, vector signed short);
9422 int vec_all_eq (vector pixel, vector pixel);
9423 int vec_all_eq (vector signed int, vector bool int);
9424 int vec_all_eq (vector signed int, vector signed int);
9425 int vec_all_eq (vector unsigned int, vector bool int);
9426 int vec_all_eq (vector unsigned int, vector unsigned int);
9427 int vec_all_eq (vector bool int, vector bool int);
9428 int vec_all_eq (vector bool int, vector unsigned int);
9429 int vec_all_eq (vector bool int, vector signed int);
9430 int vec_all_eq (vector float, vector float);
9431
9432 int vec_all_ge (vector bool char, vector unsigned char);
9433 int vec_all_ge (vector unsigned char, vector bool char);
9434 int vec_all_ge (vector unsigned char, vector unsigned char);
9435 int vec_all_ge (vector bool char, vector signed char);
9436 int vec_all_ge (vector signed char, vector bool char);
9437 int vec_all_ge (vector signed char, vector signed char);
9438 int vec_all_ge (vector bool short, vector unsigned short);
9439 int vec_all_ge (vector unsigned short, vector bool short);
9440 int vec_all_ge (vector unsigned short, vector unsigned short);
9441 int vec_all_ge (vector signed short, vector signed short);
9442 int vec_all_ge (vector bool short, vector signed short);
9443 int vec_all_ge (vector signed short, vector bool short);
9444 int vec_all_ge (vector bool int, vector unsigned int);
9445 int vec_all_ge (vector unsigned int, vector bool int);
9446 int vec_all_ge (vector unsigned int, vector unsigned int);
9447 int vec_all_ge (vector bool int, vector signed int);
9448 int vec_all_ge (vector signed int, vector bool int);
9449 int vec_all_ge (vector signed int, vector signed int);
9450 int vec_all_ge (vector float, vector float);
9451
9452 int vec_all_gt (vector bool char, vector unsigned char);
9453 int vec_all_gt (vector unsigned char, vector bool char);
9454 int vec_all_gt (vector unsigned char, vector unsigned char);
9455 int vec_all_gt (vector bool char, vector signed char);
9456 int vec_all_gt (vector signed char, vector bool char);
9457 int vec_all_gt (vector signed char, vector signed char);
9458 int vec_all_gt (vector bool short, vector unsigned short);
9459 int vec_all_gt (vector unsigned short, vector bool short);
9460 int vec_all_gt (vector unsigned short, vector unsigned short);
9461 int vec_all_gt (vector bool short, vector signed short);
9462 int vec_all_gt (vector signed short, vector bool short);
9463 int vec_all_gt (vector signed short, vector signed short);
9464 int vec_all_gt (vector bool int, vector unsigned int);
9465 int vec_all_gt (vector unsigned int, vector bool int);
9466 int vec_all_gt (vector unsigned int, vector unsigned int);
9467 int vec_all_gt (vector bool int, vector signed int);
9468 int vec_all_gt (vector signed int, vector bool int);
9469 int vec_all_gt (vector signed int, vector signed int);
9470 int vec_all_gt (vector float, vector float);
9471
9472 int vec_all_in (vector float, vector float);
9473
9474 int vec_all_le (vector bool char, vector unsigned char);
9475 int vec_all_le (vector unsigned char, vector bool char);
9476 int vec_all_le (vector unsigned char, vector unsigned char);
9477 int vec_all_le (vector bool char, vector signed char);
9478 int vec_all_le (vector signed char, vector bool char);
9479 int vec_all_le (vector signed char, vector signed char);
9480 int vec_all_le (vector bool short, vector unsigned short);
9481 int vec_all_le (vector unsigned short, vector bool short);
9482 int vec_all_le (vector unsigned short, vector unsigned short);
9483 int vec_all_le (vector bool short, vector signed short);
9484 int vec_all_le (vector signed short, vector bool short);
9485 int vec_all_le (vector signed short, vector signed short);
9486 int vec_all_le (vector bool int, vector unsigned int);
9487 int vec_all_le (vector unsigned int, vector bool int);
9488 int vec_all_le (vector unsigned int, vector unsigned int);
9489 int vec_all_le (vector bool int, vector signed int);
9490 int vec_all_le (vector signed int, vector bool int);
9491 int vec_all_le (vector signed int, vector signed int);
9492 int vec_all_le (vector float, vector float);
9493
9494 int vec_all_lt (vector bool char, vector unsigned char);
9495 int vec_all_lt (vector unsigned char, vector bool char);
9496 int vec_all_lt (vector unsigned char, vector unsigned char);
9497 int vec_all_lt (vector bool char, vector signed char);
9498 int vec_all_lt (vector signed char, vector bool char);
9499 int vec_all_lt (vector signed char, vector signed char);
9500 int vec_all_lt (vector bool short, vector unsigned short);
9501 int vec_all_lt (vector unsigned short, vector bool short);
9502 int vec_all_lt (vector unsigned short, vector unsigned short);
9503 int vec_all_lt (vector bool short, vector signed short);
9504 int vec_all_lt (vector signed short, vector bool short);
9505 int vec_all_lt (vector signed short, vector signed short);
9506 int vec_all_lt (vector bool int, vector unsigned int);
9507 int vec_all_lt (vector unsigned int, vector bool int);
9508 int vec_all_lt (vector unsigned int, vector unsigned int);
9509 int vec_all_lt (vector bool int, vector signed int);
9510 int vec_all_lt (vector signed int, vector bool int);
9511 int vec_all_lt (vector signed int, vector signed int);
9512 int vec_all_lt (vector float, vector float);
9513
9514 int vec_all_nan (vector float);
9515
9516 int vec_all_ne (vector signed char, vector bool char);
9517 int vec_all_ne (vector signed char, vector signed char);
9518 int vec_all_ne (vector unsigned char, vector bool char);
9519 int vec_all_ne (vector unsigned char, vector unsigned char);
9520 int vec_all_ne (vector bool char, vector bool char);
9521 int vec_all_ne (vector bool char, vector unsigned char);
9522 int vec_all_ne (vector bool char, vector signed char);
9523 int vec_all_ne (vector signed short, vector bool short);
9524 int vec_all_ne (vector signed short, vector signed short);
9525 int vec_all_ne (vector unsigned short, vector bool short);
9526 int vec_all_ne (vector unsigned short, vector unsigned short);
9527 int vec_all_ne (vector bool short, vector bool short);
9528 int vec_all_ne (vector bool short, vector unsigned short);
9529 int vec_all_ne (vector bool short, vector signed short);
9530 int vec_all_ne (vector pixel, vector pixel);
9531 int vec_all_ne (vector signed int, vector bool int);
9532 int vec_all_ne (vector signed int, vector signed int);
9533 int vec_all_ne (vector unsigned int, vector bool int);
9534 int vec_all_ne (vector unsigned int, vector unsigned int);
9535 int vec_all_ne (vector bool int, vector bool int);
9536 int vec_all_ne (vector bool int, vector unsigned int);
9537 int vec_all_ne (vector bool int, vector signed int);
9538 int vec_all_ne (vector float, vector float);
9539
9540 int vec_all_nge (vector float, vector float);
9541
9542 int vec_all_ngt (vector float, vector float);
9543
9544 int vec_all_nle (vector float, vector float);
9545
9546 int vec_all_nlt (vector float, vector float);
9547
9548 int vec_all_numeric (vector float);
9549
9550 int vec_any_eq (vector signed char, vector bool char);
9551 int vec_any_eq (vector signed char, vector signed char);
9552 int vec_any_eq (vector unsigned char, vector bool char);
9553 int vec_any_eq (vector unsigned char, vector unsigned char);
9554 int vec_any_eq (vector bool char, vector bool char);
9555 int vec_any_eq (vector bool char, vector unsigned char);
9556 int vec_any_eq (vector bool char, vector signed char);
9557 int vec_any_eq (vector signed short, vector bool short);
9558 int vec_any_eq (vector signed short, vector signed short);
9559 int vec_any_eq (vector unsigned short, vector bool short);
9560 int vec_any_eq (vector unsigned short, vector unsigned short);
9561 int vec_any_eq (vector bool short, vector bool short);
9562 int vec_any_eq (vector bool short, vector unsigned short);
9563 int vec_any_eq (vector bool short, vector signed short);
9564 int vec_any_eq (vector pixel, vector pixel);
9565 int vec_any_eq (vector signed int, vector bool int);
9566 int vec_any_eq (vector signed int, vector signed int);
9567 int vec_any_eq (vector unsigned int, vector bool int);
9568 int vec_any_eq (vector unsigned int, vector unsigned int);
9569 int vec_any_eq (vector bool int, vector bool int);
9570 int vec_any_eq (vector bool int, vector unsigned int);
9571 int vec_any_eq (vector bool int, vector signed int);
9572 int vec_any_eq (vector float, vector float);
9573
9574 int vec_any_ge (vector signed char, vector bool char);
9575 int vec_any_ge (vector unsigned char, vector bool char);
9576 int vec_any_ge (vector unsigned char, vector unsigned char);
9577 int vec_any_ge (vector signed char, vector signed char);
9578 int vec_any_ge (vector bool char, vector unsigned char);
9579 int vec_any_ge (vector bool char, vector signed char);
9580 int vec_any_ge (vector unsigned short, vector bool short);
9581 int vec_any_ge (vector unsigned short, vector unsigned short);
9582 int vec_any_ge (vector signed short, vector signed short);
9583 int vec_any_ge (vector signed short, vector bool short);
9584 int vec_any_ge (vector bool short, vector unsigned short);
9585 int vec_any_ge (vector bool short, vector signed short);
9586 int vec_any_ge (vector signed int, vector bool int);
9587 int vec_any_ge (vector unsigned int, vector bool int);
9588 int vec_any_ge (vector unsigned int, vector unsigned int);
9589 int vec_any_ge (vector signed int, vector signed int);
9590 int vec_any_ge (vector bool int, vector unsigned int);
9591 int vec_any_ge (vector bool int, vector signed int);
9592 int vec_any_ge (vector float, vector float);
9593
9594 int vec_any_gt (vector bool char, vector unsigned char);
9595 int vec_any_gt (vector unsigned char, vector bool char);
9596 int vec_any_gt (vector unsigned char, vector unsigned char);
9597 int vec_any_gt (vector bool char, vector signed char);
9598 int vec_any_gt (vector signed char, vector bool char);
9599 int vec_any_gt (vector signed char, vector signed char);
9600 int vec_any_gt (vector bool short, vector unsigned short);
9601 int vec_any_gt (vector unsigned short, vector bool short);
9602 int vec_any_gt (vector unsigned short, vector unsigned short);
9603 int vec_any_gt (vector bool short, vector signed short);
9604 int vec_any_gt (vector signed short, vector bool short);
9605 int vec_any_gt (vector signed short, vector signed short);
9606 int vec_any_gt (vector bool int, vector unsigned int);
9607 int vec_any_gt (vector unsigned int, vector bool int);
9608 int vec_any_gt (vector unsigned int, vector unsigned int);
9609 int vec_any_gt (vector bool int, vector signed int);
9610 int vec_any_gt (vector signed int, vector bool int);
9611 int vec_any_gt (vector signed int, vector signed int);
9612 int vec_any_gt (vector float, vector float);
9613
9614 int vec_any_le (vector bool char, vector unsigned char);
9615 int vec_any_le (vector unsigned char, vector bool char);
9616 int vec_any_le (vector unsigned char, vector unsigned char);
9617 int vec_any_le (vector bool char, vector signed char);
9618 int vec_any_le (vector signed char, vector bool char);
9619 int vec_any_le (vector signed char, vector signed char);
9620 int vec_any_le (vector bool short, vector unsigned short);
9621 int vec_any_le (vector unsigned short, vector bool short);
9622 int vec_any_le (vector unsigned short, vector unsigned short);
9623 int vec_any_le (vector bool short, vector signed short);
9624 int vec_any_le (vector signed short, vector bool short);
9625 int vec_any_le (vector signed short, vector signed short);
9626 int vec_any_le (vector bool int, vector unsigned int);
9627 int vec_any_le (vector unsigned int, vector bool int);
9628 int vec_any_le (vector unsigned int, vector unsigned int);
9629 int vec_any_le (vector bool int, vector signed int);
9630 int vec_any_le (vector signed int, vector bool int);
9631 int vec_any_le (vector signed int, vector signed int);
9632 int vec_any_le (vector float, vector float);
9633
9634 int vec_any_lt (vector bool char, vector unsigned char);
9635 int vec_any_lt (vector unsigned char, vector bool char);
9636 int vec_any_lt (vector unsigned char, vector unsigned char);
9637 int vec_any_lt (vector bool char, vector signed char);
9638 int vec_any_lt (vector signed char, vector bool char);
9639 int vec_any_lt (vector signed char, vector signed char);
9640 int vec_any_lt (vector bool short, vector unsigned short);
9641 int vec_any_lt (vector unsigned short, vector bool short);
9642 int vec_any_lt (vector unsigned short, vector unsigned short);
9643 int vec_any_lt (vector bool short, vector signed short);
9644 int vec_any_lt (vector signed short, vector bool short);
9645 int vec_any_lt (vector signed short, vector signed short);
9646 int vec_any_lt (vector bool int, vector unsigned int);
9647 int vec_any_lt (vector unsigned int, vector bool int);
9648 int vec_any_lt (vector unsigned int, vector unsigned int);
9649 int vec_any_lt (vector bool int, vector signed int);
9650 int vec_any_lt (vector signed int, vector bool int);
9651 int vec_any_lt (vector signed int, vector signed int);
9652 int vec_any_lt (vector float, vector float);
9653
9654 int vec_any_nan (vector float);
9655
9656 int vec_any_ne (vector signed char, vector bool char);
9657 int vec_any_ne (vector signed char, vector signed char);
9658 int vec_any_ne (vector unsigned char, vector bool char);
9659 int vec_any_ne (vector unsigned char, vector unsigned char);
9660 int vec_any_ne (vector bool char, vector bool char);
9661 int vec_any_ne (vector bool char, vector unsigned char);
9662 int vec_any_ne (vector bool char, vector signed char);
9663 int vec_any_ne (vector signed short, vector bool short);
9664 int vec_any_ne (vector signed short, vector signed short);
9665 int vec_any_ne (vector unsigned short, vector bool short);
9666 int vec_any_ne (vector unsigned short, vector unsigned short);
9667 int vec_any_ne (vector bool short, vector bool short);
9668 int vec_any_ne (vector bool short, vector unsigned short);
9669 int vec_any_ne (vector bool short, vector signed short);
9670 int vec_any_ne (vector pixel, vector pixel);
9671 int vec_any_ne (vector signed int, vector bool int);
9672 int vec_any_ne (vector signed int, vector signed int);
9673 int vec_any_ne (vector unsigned int, vector bool int);
9674 int vec_any_ne (vector unsigned int, vector unsigned int);
9675 int vec_any_ne (vector bool int, vector bool int);
9676 int vec_any_ne (vector bool int, vector unsigned int);
9677 int vec_any_ne (vector bool int, vector signed int);
9678 int vec_any_ne (vector float, vector float);
9679
9680 int vec_any_nge (vector float, vector float);
9681
9682 int vec_any_ngt (vector float, vector float);
9683
9684 int vec_any_nle (vector float, vector float);
9685
9686 int vec_any_nlt (vector float, vector float);
9687
9688 int vec_any_numeric (vector float);
9689
9690 int vec_any_out (vector float, vector float);
9691 @end smallexample
9692
9693 @node SPARC VIS Built-in Functions
9694 @subsection SPARC VIS Built-in Functions
9695
9696 GCC supports SIMD operations on the SPARC using both the generic vector
9697 extensions (@pxref{Vector Extensions}) as well as built-in functions for
9698 the SPARC Visual Instruction Set (VIS). When you use the @option{-mvis}
9699 switch, the VIS extension is exposed as the following built-in functions:
9700
9701 @smallexample
9702 typedef int v2si __attribute__ ((vector_size (8)));
9703 typedef short v4hi __attribute__ ((vector_size (8)));
9704 typedef short v2hi __attribute__ ((vector_size (4)));
9705 typedef char v8qi __attribute__ ((vector_size (8)));
9706 typedef char v4qi __attribute__ ((vector_size (4)));
9707
9708 void * __builtin_vis_alignaddr (void *, long);
9709 int64_t __builtin_vis_faligndatadi (int64_t, int64_t);
9710 v2si __builtin_vis_faligndatav2si (v2si, v2si);
9711 v4hi __builtin_vis_faligndatav4hi (v4si, v4si);
9712 v8qi __builtin_vis_faligndatav8qi (v8qi, v8qi);
9713
9714 v4hi __builtin_vis_fexpand (v4qi);
9715
9716 v4hi __builtin_vis_fmul8x16 (v4qi, v4hi);
9717 v4hi __builtin_vis_fmul8x16au (v4qi, v4hi);
9718 v4hi __builtin_vis_fmul8x16al (v4qi, v4hi);
9719 v4hi __builtin_vis_fmul8sux16 (v8qi, v4hi);
9720 v4hi __builtin_vis_fmul8ulx16 (v8qi, v4hi);
9721 v2si __builtin_vis_fmuld8sux16 (v4qi, v2hi);
9722 v2si __builtin_vis_fmuld8ulx16 (v4qi, v2hi);
9723
9724 v4qi __builtin_vis_fpack16 (v4hi);
9725 v8qi __builtin_vis_fpack32 (v2si, v2si);
9726 v2hi __builtin_vis_fpackfix (v2si);
9727 v8qi __builtin_vis_fpmerge (v4qi, v4qi);
9728
9729 int64_t __builtin_vis_pdist (v8qi, v8qi, int64_t);
9730 @end smallexample
9731
9732 @node Target Format Checks
9733 @section Format Checks Specific to Particular Target Machines
9734
9735 For some target machines, GCC supports additional options to the
9736 format attribute
9737 (@pxref{Function Attributes,,Declaring Attributes of Functions}).
9738
9739 @menu
9740 * Solaris Format Checks::
9741 @end menu
9742
9743 @node Solaris Format Checks
9744 @subsection Solaris Format Checks
9745
9746 Solaris targets support the @code{cmn_err} (or @code{__cmn_err__}) format
9747 check. @code{cmn_err} accepts a subset of the standard @code{printf}
9748 conversions, and the two-argument @code{%b} conversion for displaying
9749 bit-fields. See the Solaris man page for @code{cmn_err} for more information.
9750
9751 @node Pragmas
9752 @section Pragmas Accepted by GCC
9753 @cindex pragmas
9754 @cindex #pragma
9755
9756 GCC supports several types of pragmas, primarily in order to compile
9757 code originally written for other compilers. Note that in general
9758 we do not recommend the use of pragmas; @xref{Function Attributes},
9759 for further explanation.
9760
9761 @menu
9762 * ARM Pragmas::
9763 * M32C Pragmas::
9764 * RS/6000 and PowerPC Pragmas::
9765 * Darwin Pragmas::
9766 * Solaris Pragmas::
9767 * Symbol-Renaming Pragmas::
9768 * Structure-Packing Pragmas::
9769 * Weak Pragmas::
9770 * Diagnostic Pragmas::
9771 * Visibility Pragmas::
9772 @end menu
9773
9774 @node ARM Pragmas
9775 @subsection ARM Pragmas
9776
9777 The ARM target defines pragmas for controlling the default addition of
9778 @code{long_call} and @code{short_call} attributes to functions.
9779 @xref{Function Attributes}, for information about the effects of these
9780 attributes.
9781
9782 @table @code
9783 @item long_calls
9784 @cindex pragma, long_calls
9785 Set all subsequent functions to have the @code{long_call} attribute.
9786
9787 @item no_long_calls
9788 @cindex pragma, no_long_calls
9789 Set all subsequent functions to have the @code{short_call} attribute.
9790
9791 @item long_calls_off
9792 @cindex pragma, long_calls_off
9793 Do not affect the @code{long_call} or @code{short_call} attributes of
9794 subsequent functions.
9795 @end table
9796
9797 @node M32C Pragmas
9798 @subsection M32C Pragmas
9799
9800 @table @code
9801 @item memregs @var{number}
9802 @cindex pragma, memregs
9803 Overrides the command line option @code{-memregs=} for the current
9804 file. Use with care! This pragma must be before any function in the
9805 file, and mixing different memregs values in different objects may
9806 make them incompatible. This pragma is useful when a
9807 performance-critical function uses a memreg for temporary values,
9808 as it may allow you to reduce the number of memregs used.
9809
9810 @end table
9811
9812 @node RS/6000 and PowerPC Pragmas
9813 @subsection RS/6000 and PowerPC Pragmas
9814
9815 The RS/6000 and PowerPC targets define one pragma for controlling
9816 whether or not the @code{longcall} attribute is added to function
9817 declarations by default. This pragma overrides the @option{-mlongcall}
9818 option, but not the @code{longcall} and @code{shortcall} attributes.
9819 @xref{RS/6000 and PowerPC Options}, for more information about when long
9820 calls are and are not necessary.
9821
9822 @table @code
9823 @item longcall (1)
9824 @cindex pragma, longcall
9825 Apply the @code{longcall} attribute to all subsequent function
9826 declarations.
9827
9828 @item longcall (0)
9829 Do not apply the @code{longcall} attribute to subsequent function
9830 declarations.
9831 @end table
9832
9833 @c Describe c4x pragmas here.
9834 @c Describe h8300 pragmas here.
9835 @c Describe sh pragmas here.
9836 @c Describe v850 pragmas here.
9837
9838 @node Darwin Pragmas
9839 @subsection Darwin Pragmas
9840
9841 The following pragmas are available for all architectures running the
9842 Darwin operating system. These are useful for compatibility with other
9843 Mac OS compilers.
9844
9845 @table @code
9846 @item mark @var{tokens}@dots{}
9847 @cindex pragma, mark
9848 This pragma is accepted, but has no effect.
9849
9850 @item options align=@var{alignment}
9851 @cindex pragma, options align
9852 This pragma sets the alignment of fields in structures. The values of
9853 @var{alignment} may be @code{mac68k}, to emulate m68k alignment, or
9854 @code{power}, to emulate PowerPC alignment. Uses of this pragma nest
9855 properly; to restore the previous setting, use @code{reset} for the
9856 @var{alignment}.
9857
9858 @item segment @var{tokens}@dots{}
9859 @cindex pragma, segment
9860 This pragma is accepted, but has no effect.
9861
9862 @item unused (@var{var} [, @var{var}]@dots{})
9863 @cindex pragma, unused
9864 This pragma declares variables to be possibly unused. GCC will not
9865 produce warnings for the listed variables. The effect is similar to
9866 that of the @code{unused} attribute, except that this pragma may appear
9867 anywhere within the variables' scopes.
9868 @end table
9869
9870 @node Solaris Pragmas
9871 @subsection Solaris Pragmas
9872
9873 The Solaris target supports @code{#pragma redefine_extname}
9874 (@pxref{Symbol-Renaming Pragmas}). It also supports additional
9875 @code{#pragma} directives for compatibility with the system compiler.
9876
9877 @table @code
9878 @item align @var{alignment} (@var{variable} [, @var{variable}]...)
9879 @cindex pragma, align
9880
9881 Increase the minimum alignment of each @var{variable} to @var{alignment}.
9882 This is the same as GCC's @code{aligned} attribute @pxref{Variable
9883 Attributes}). Macro expansion occurs on the arguments to this pragma
9884 when compiling C and Objective-C. It does not currently occur when
9885 compiling C++, but this is a bug which may be fixed in a future
9886 release.
9887
9888 @item fini (@var{function} [, @var{function}]...)
9889 @cindex pragma, fini
9890
9891 This pragma causes each listed @var{function} to be called after
9892 main, or during shared module unloading, by adding a call to the
9893 @code{.fini} section.
9894
9895 @item init (@var{function} [, @var{function}]...)
9896 @cindex pragma, init
9897
9898 This pragma causes each listed @var{function} to be called during
9899 initialization (before @code{main}) or during shared module loading, by
9900 adding a call to the @code{.init} section.
9901
9902 @end table
9903
9904 @node Symbol-Renaming Pragmas
9905 @subsection Symbol-Renaming Pragmas
9906
9907 For compatibility with the Solaris and Tru64 UNIX system headers, GCC
9908 supports two @code{#pragma} directives which change the name used in
9909 assembly for a given declaration. These pragmas are only available on
9910 platforms whose system headers need them. To get this effect on all
9911 platforms supported by GCC, use the asm labels extension (@pxref{Asm
9912 Labels}).
9913
9914 @table @code
9915 @item redefine_extname @var{oldname} @var{newname}
9916 @cindex pragma, redefine_extname
9917
9918 This pragma gives the C function @var{oldname} the assembly symbol
9919 @var{newname}. The preprocessor macro @code{__PRAGMA_REDEFINE_EXTNAME}
9920 will be defined if this pragma is available (currently only on
9921 Solaris).
9922
9923 @item extern_prefix @var{string}
9924 @cindex pragma, extern_prefix
9925
9926 This pragma causes all subsequent external function and variable
9927 declarations to have @var{string} prepended to their assembly symbols.
9928 This effect may be terminated with another @code{extern_prefix} pragma
9929 whose argument is an empty string. The preprocessor macro
9930 @code{__PRAGMA_EXTERN_PREFIX} will be defined if this pragma is
9931 available (currently only on Tru64 UNIX)@.
9932 @end table
9933
9934 These pragmas and the asm labels extension interact in a complicated
9935 manner. Here are some corner cases you may want to be aware of.
9936
9937 @enumerate
9938 @item Both pragmas silently apply only to declarations with external
9939 linkage. Asm labels do not have this restriction.
9940
9941 @item In C++, both pragmas silently apply only to declarations with
9942 ``C'' linkage. Again, asm labels do not have this restriction.
9943
9944 @item If any of the three ways of changing the assembly name of a
9945 declaration is applied to a declaration whose assembly name has
9946 already been determined (either by a previous use of one of these
9947 features, or because the compiler needed the assembly name in order to
9948 generate code), and the new name is different, a warning issues and
9949 the name does not change.
9950
9951 @item The @var{oldname} used by @code{#pragma redefine_extname} is
9952 always the C-language name.
9953
9954 @item If @code{#pragma extern_prefix} is in effect, and a declaration
9955 occurs with an asm label attached, the prefix is silently ignored for
9956 that declaration.
9957
9958 @item If @code{#pragma extern_prefix} and @code{#pragma redefine_extname}
9959 apply to the same declaration, whichever triggered first wins, and a
9960 warning issues if they contradict each other. (We would like to have
9961 @code{#pragma redefine_extname} always win, for consistency with asm
9962 labels, but if @code{#pragma extern_prefix} triggers first we have no
9963 way of knowing that that happened.)
9964 @end enumerate
9965
9966 @node Structure-Packing Pragmas
9967 @subsection Structure-Packing Pragmas
9968
9969 For compatibility with Win32, GCC supports a set of @code{#pragma}
9970 directives which change the maximum alignment of members of structures
9971 (other than zero-width bitfields), unions, and classes subsequently
9972 defined. The @var{n} value below always is required to be a small power
9973 of two and specifies the new alignment in bytes.
9974
9975 @enumerate
9976 @item @code{#pragma pack(@var{n})} simply sets the new alignment.
9977 @item @code{#pragma pack()} sets the alignment to the one that was in
9978 effect when compilation started (see also command line option
9979 @option{-fpack-struct[=<n>]} @pxref{Code Gen Options}).
9980 @item @code{#pragma pack(push[,@var{n}])} pushes the current alignment
9981 setting on an internal stack and then optionally sets the new alignment.
9982 @item @code{#pragma pack(pop)} restores the alignment setting to the one
9983 saved at the top of the internal stack (and removes that stack entry).
9984 Note that @code{#pragma pack([@var{n}])} does not influence this internal
9985 stack; thus it is possible to have @code{#pragma pack(push)} followed by
9986 multiple @code{#pragma pack(@var{n})} instances and finalized by a single
9987 @code{#pragma pack(pop)}.
9988 @end enumerate
9989
9990 Some targets, e.g. i386 and powerpc, support the @code{ms_struct}
9991 @code{#pragma} which lays out a structure as the documented
9992 @code{__attribute__ ((ms_struct))}.
9993 @enumerate
9994 @item @code{#pragma ms_struct on} turns on the layout for structures
9995 declared.
9996 @item @code{#pragma ms_struct off} turns off the layout for structures
9997 declared.
9998 @item @code{#pragma ms_struct reset} goes back to the default layout.
9999 @end enumerate
10000
10001 @node Weak Pragmas
10002 @subsection Weak Pragmas
10003
10004 For compatibility with SVR4, GCC supports a set of @code{#pragma}
10005 directives for declaring symbols to be weak, and defining weak
10006 aliases.
10007
10008 @table @code
10009 @item #pragma weak @var{symbol}
10010 @cindex pragma, weak
10011 This pragma declares @var{symbol} to be weak, as if the declaration
10012 had the attribute of the same name. The pragma may appear before
10013 or after the declaration of @var{symbol}, but must appear before
10014 either its first use or its definition. It is not an error for
10015 @var{symbol} to never be defined at all.
10016
10017 @item #pragma weak @var{symbol1} = @var{symbol2}
10018 This pragma declares @var{symbol1} to be a weak alias of @var{symbol2}.
10019 It is an error if @var{symbol2} is not defined in the current
10020 translation unit.
10021 @end table
10022
10023 @node Diagnostic Pragmas
10024 @subsection Diagnostic Pragmas
10025
10026 GCC allows the user to selectively enable or disable certain types of
10027 diagnostics, and change the kind of the diagnostic. For example, a
10028 project's policy might require that all sources compile with
10029 @option{-Werror} but certain files might have exceptions allowing
10030 specific types of warnings. Or, a project might selectively enable
10031 diagnostics and treat them as errors depending on which preprocessor
10032 macros are defined.
10033
10034 @table @code
10035 @item #pragma GCC diagnostic @var{kind} @var{option}
10036 @cindex pragma, diagnostic
10037
10038 Modifies the disposition of a diagnostic. Note that not all
10039 diagnostics are modifyiable; at the moment only warnings (normally
10040 controlled by @samp{-W...}) can be controlled, and not all of them.
10041 Use @option{-fdiagnostics-show-option} to determine which diagnostics
10042 are controllable and which option controls them.
10043
10044 @var{kind} is @samp{error} to treat this diagnostic as an error,
10045 @samp{warning} to treat it like a warning (even if @option{-Werror} is
10046 in effect), or @samp{ignored} if the diagnostic is to be ignored.
10047 @var{option} is a double quoted string which matches the command line
10048 option.
10049
10050 @example
10051 #pragma GCC diagnostic warning "-Wformat"
10052 #pragma GCC diagnostic error "-Walways-true"
10053 #pragma GCC diagnostic ignored "-Walways-true"
10054 @end example
10055
10056 Note that these pragmas override any command line options. Also,
10057 while it is syntactically valid to put these pragmas anywhere in your
10058 sources, the only supported location for them is before any data or
10059 functions are defined. Doing otherwise may result in unpredictable
10060 results depending on how the optimizer manages your sources. If the
10061 same option is listed multiple times, the last one specified is the
10062 one that is in effect. This pragma is not intended to be a general
10063 purpose replacement for command line options, but for implementing
10064 strict control over project policies.
10065
10066 @end table
10067
10068 @node Visibility Pragmas
10069 @subsection Visibility Pragmas
10070
10071 @table @code
10072 @item #pragma GCC visibility push(@var{visibility})
10073 @itemx #pragma GCC visibility pop
10074 @cindex pragma, visibility
10075
10076 This pragma allows the user to set the visibility for multiple
10077 declarations without having to give each a visibility attribute
10078 @xref{Function Attributes}, for more information about visibility and
10079 the attribute syntax.
10080
10081 In C++, @samp{#pragma GCC visibility} affects only namespace-scope
10082 declarations. Class members and template specializations are not
10083 affected; if you want to override the visibility for a particular
10084 member or instantiation, you must use an attribute.
10085
10086 @end table
10087
10088 @node Unnamed Fields
10089 @section Unnamed struct/union fields within structs/unions
10090 @cindex struct
10091 @cindex union
10092
10093 For compatibility with other compilers, GCC allows you to define
10094 a structure or union that contains, as fields, structures and unions
10095 without names. For example:
10096
10097 @smallexample
10098 struct @{
10099 int a;
10100 union @{
10101 int b;
10102 float c;
10103 @};
10104 int d;
10105 @} foo;
10106 @end smallexample
10107
10108 In this example, the user would be able to access members of the unnamed
10109 union with code like @samp{foo.b}. Note that only unnamed structs and
10110 unions are allowed, you may not have, for example, an unnamed
10111 @code{int}.
10112
10113 You must never create such structures that cause ambiguous field definitions.
10114 For example, this structure:
10115
10116 @smallexample
10117 struct @{
10118 int a;
10119 struct @{
10120 int a;
10121 @};
10122 @} foo;
10123 @end smallexample
10124
10125 It is ambiguous which @code{a} is being referred to with @samp{foo.a}.
10126 Such constructs are not supported and must be avoided. In the future,
10127 such constructs may be detected and treated as compilation errors.
10128
10129 @opindex fms-extensions
10130 Unless @option{-fms-extensions} is used, the unnamed field must be a
10131 structure or union definition without a tag (for example, @samp{struct
10132 @{ int a; @};}). If @option{-fms-extensions} is used, the field may
10133 also be a definition with a tag such as @samp{struct foo @{ int a;
10134 @};}, a reference to a previously defined structure or union such as
10135 @samp{struct foo;}, or a reference to a @code{typedef} name for a
10136 previously defined structure or union type.
10137
10138 @node Thread-Local
10139 @section Thread-Local Storage
10140 @cindex Thread-Local Storage
10141 @cindex @acronym{TLS}
10142 @cindex __thread
10143
10144 Thread-local storage (@acronym{TLS}) is a mechanism by which variables
10145 are allocated such that there is one instance of the variable per extant
10146 thread. The run-time model GCC uses to implement this originates
10147 in the IA-64 processor-specific ABI, but has since been migrated
10148 to other processors as well. It requires significant support from
10149 the linker (@command{ld}), dynamic linker (@command{ld.so}), and
10150 system libraries (@file{libc.so} and @file{libpthread.so}), so it
10151 is not available everywhere.
10152
10153 At the user level, the extension is visible with a new storage
10154 class keyword: @code{__thread}. For example:
10155
10156 @smallexample
10157 __thread int i;
10158 extern __thread struct state s;
10159 static __thread char *p;
10160 @end smallexample
10161
10162 The @code{__thread} specifier may be used alone, with the @code{extern}
10163 or @code{static} specifiers, but with no other storage class specifier.
10164 When used with @code{extern} or @code{static}, @code{__thread} must appear
10165 immediately after the other storage class specifier.
10166
10167 The @code{__thread} specifier may be applied to any global, file-scoped
10168 static, function-scoped static, or static data member of a class. It may
10169 not be applied to block-scoped automatic or non-static data member.
10170
10171 When the address-of operator is applied to a thread-local variable, it is
10172 evaluated at run-time and returns the address of the current thread's
10173 instance of that variable. An address so obtained may be used by any
10174 thread. When a thread terminates, any pointers to thread-local variables
10175 in that thread become invalid.
10176
10177 No static initialization may refer to the address of a thread-local variable.
10178
10179 In C++, if an initializer is present for a thread-local variable, it must
10180 be a @var{constant-expression}, as defined in 5.19.2 of the ANSI/ISO C++
10181 standard.
10182
10183 See @uref{http://people.redhat.com/drepper/tls.pdf,
10184 ELF Handling For Thread-Local Storage} for a detailed explanation of
10185 the four thread-local storage addressing models, and how the run-time
10186 is expected to function.
10187
10188 @menu
10189 * C99 Thread-Local Edits::
10190 * C++98 Thread-Local Edits::
10191 @end menu
10192
10193 @node C99 Thread-Local Edits
10194 @subsection ISO/IEC 9899:1999 Edits for Thread-Local Storage
10195
10196 The following are a set of changes to ISO/IEC 9899:1999 (aka C99)
10197 that document the exact semantics of the language extension.
10198
10199 @itemize @bullet
10200 @item
10201 @cite{5.1.2 Execution environments}
10202
10203 Add new text after paragraph 1
10204
10205 @quotation
10206 Within either execution environment, a @dfn{thread} is a flow of
10207 control within a program. It is implementation defined whether
10208 or not there may be more than one thread associated with a program.
10209 It is implementation defined how threads beyond the first are
10210 created, the name and type of the function called at thread
10211 startup, and how threads may be terminated. However, objects
10212 with thread storage duration shall be initialized before thread
10213 startup.
10214 @end quotation
10215
10216 @item
10217 @cite{6.2.4 Storage durations of objects}
10218
10219 Add new text before paragraph 3
10220
10221 @quotation
10222 An object whose identifier is declared with the storage-class
10223 specifier @w{@code{__thread}} has @dfn{thread storage duration}.
10224 Its lifetime is the entire execution of the thread, and its
10225 stored value is initialized only once, prior to thread startup.
10226 @end quotation
10227
10228 @item
10229 @cite{6.4.1 Keywords}
10230
10231 Add @code{__thread}.
10232
10233 @item
10234 @cite{6.7.1 Storage-class specifiers}
10235
10236 Add @code{__thread} to the list of storage class specifiers in
10237 paragraph 1.
10238
10239 Change paragraph 2 to
10240
10241 @quotation
10242 With the exception of @code{__thread}, at most one storage-class
10243 specifier may be given [@dots{}]. The @code{__thread} specifier may
10244 be used alone, or immediately following @code{extern} or
10245 @code{static}.
10246 @end quotation
10247
10248 Add new text after paragraph 6
10249
10250 @quotation
10251 The declaration of an identifier for a variable that has
10252 block scope that specifies @code{__thread} shall also
10253 specify either @code{extern} or @code{static}.
10254
10255 The @code{__thread} specifier shall be used only with
10256 variables.
10257 @end quotation
10258 @end itemize
10259
10260 @node C++98 Thread-Local Edits
10261 @subsection ISO/IEC 14882:1998 Edits for Thread-Local Storage
10262
10263 The following are a set of changes to ISO/IEC 14882:1998 (aka C++98)
10264 that document the exact semantics of the language extension.
10265
10266 @itemize @bullet
10267 @item
10268 @b{[intro.execution]}
10269
10270 New text after paragraph 4
10271
10272 @quotation
10273 A @dfn{thread} is a flow of control within the abstract machine.
10274 It is implementation defined whether or not there may be more than
10275 one thread.
10276 @end quotation
10277
10278 New text after paragraph 7
10279
10280 @quotation
10281 It is unspecified whether additional action must be taken to
10282 ensure when and whether side effects are visible to other threads.
10283 @end quotation
10284
10285 @item
10286 @b{[lex.key]}
10287
10288 Add @code{__thread}.
10289
10290 @item
10291 @b{[basic.start.main]}
10292
10293 Add after paragraph 5
10294
10295 @quotation
10296 The thread that begins execution at the @code{main} function is called
10297 the @dfn{main thread}. It is implementation defined how functions
10298 beginning threads other than the main thread are designated or typed.
10299 A function so designated, as well as the @code{main} function, is called
10300 a @dfn{thread startup function}. It is implementation defined what
10301 happens if a thread startup function returns. It is implementation
10302 defined what happens to other threads when any thread calls @code{exit}.
10303 @end quotation
10304
10305 @item
10306 @b{[basic.start.init]}
10307
10308 Add after paragraph 4
10309
10310 @quotation
10311 The storage for an object of thread storage duration shall be
10312 statically initialized before the first statement of the thread startup
10313 function. An object of thread storage duration shall not require
10314 dynamic initialization.
10315 @end quotation
10316
10317 @item
10318 @b{[basic.start.term]}
10319
10320 Add after paragraph 3
10321
10322 @quotation
10323 The type of an object with thread storage duration shall not have a
10324 non-trivial destructor, nor shall it be an array type whose elements
10325 (directly or indirectly) have non-trivial destructors.
10326 @end quotation
10327
10328 @item
10329 @b{[basic.stc]}
10330
10331 Add ``thread storage duration'' to the list in paragraph 1.
10332
10333 Change paragraph 2
10334
10335 @quotation
10336 Thread, static, and automatic storage durations are associated with
10337 objects introduced by declarations [@dots{}].
10338 @end quotation
10339
10340 Add @code{__thread} to the list of specifiers in paragraph 3.
10341
10342 @item
10343 @b{[basic.stc.thread]}
10344
10345 New section before @b{[basic.stc.static]}
10346
10347 @quotation
10348 The keyword @code{__thread} applied to a non-local object gives the
10349 object thread storage duration.
10350
10351 A local variable or class data member declared both @code{static}
10352 and @code{__thread} gives the variable or member thread storage
10353 duration.
10354 @end quotation
10355
10356 @item
10357 @b{[basic.stc.static]}
10358
10359 Change paragraph 1
10360
10361 @quotation
10362 All objects which have neither thread storage duration, dynamic
10363 storage duration nor are local [@dots{}].
10364 @end quotation
10365
10366 @item
10367 @b{[dcl.stc]}
10368
10369 Add @code{__thread} to the list in paragraph 1.
10370
10371 Change paragraph 1
10372
10373 @quotation
10374 With the exception of @code{__thread}, at most one
10375 @var{storage-class-specifier} shall appear in a given
10376 @var{decl-specifier-seq}. The @code{__thread} specifier may
10377 be used alone, or immediately following the @code{extern} or
10378 @code{static} specifiers. [@dots{}]
10379 @end quotation
10380
10381 Add after paragraph 5
10382
10383 @quotation
10384 The @code{__thread} specifier can be applied only to the names of objects
10385 and to anonymous unions.
10386 @end quotation
10387
10388 @item
10389 @b{[class.mem]}
10390
10391 Add after paragraph 6
10392
10393 @quotation
10394 Non-@code{static} members shall not be @code{__thread}.
10395 @end quotation
10396 @end itemize
10397
10398 @node C++ Extensions
10399 @chapter Extensions to the C++ Language
10400 @cindex extensions, C++ language
10401 @cindex C++ language extensions
10402
10403 The GNU compiler provides these extensions to the C++ language (and you
10404 can also use most of the C language extensions in your C++ programs). If you
10405 want to write code that checks whether these features are available, you can
10406 test for the GNU compiler the same way as for C programs: check for a
10407 predefined macro @code{__GNUC__}. You can also use @code{__GNUG__} to
10408 test specifically for GNU C++ (@pxref{Common Predefined Macros,,
10409 Predefined Macros,cpp,The GNU C Preprocessor}).
10410
10411 @menu
10412 * Volatiles:: What constitutes an access to a volatile object.
10413 * Restricted Pointers:: C99 restricted pointers and references.
10414 * Vague Linkage:: Where G++ puts inlines, vtables and such.
10415 * C++ Interface:: You can use a single C++ header file for both
10416 declarations and definitions.
10417 * Template Instantiation:: Methods for ensuring that exactly one copy of
10418 each needed template instantiation is emitted.
10419 * Bound member functions:: You can extract a function pointer to the
10420 method denoted by a @samp{->*} or @samp{.*} expression.
10421 * C++ Attributes:: Variable, function, and type attributes for C++ only.
10422 * Namespace Association:: Strong using-directives for namespace association.
10423 * Java Exceptions:: Tweaking exception handling to work with Java.
10424 * Deprecated Features:: Things will disappear from g++.
10425 * Backwards Compatibility:: Compatibilities with earlier definitions of C++.
10426 @end menu
10427
10428 @node Volatiles
10429 @section When is a Volatile Object Accessed?
10430 @cindex accessing volatiles
10431 @cindex volatile read
10432 @cindex volatile write
10433 @cindex volatile access
10434
10435 Both the C and C++ standard have the concept of volatile objects. These
10436 are normally accessed by pointers and used for accessing hardware. The
10437 standards encourage compilers to refrain from optimizations
10438 concerning accesses to volatile objects that it might perform on
10439 non-volatile objects. The C standard leaves it implementation defined
10440 as to what constitutes a volatile access. The C++ standard omits to
10441 specify this, except to say that C++ should behave in a similar manner
10442 to C with respect to volatiles, where possible. The minimum either
10443 standard specifies is that at a sequence point all previous accesses to
10444 volatile objects have stabilized and no subsequent accesses have
10445 occurred. Thus an implementation is free to reorder and combine
10446 volatile accesses which occur between sequence points, but cannot do so
10447 for accesses across a sequence point. The use of volatiles does not
10448 allow you to violate the restriction on updating objects multiple times
10449 within a sequence point.
10450
10451 In most expressions, it is intuitively obvious what is a read and what is
10452 a write. For instance
10453
10454 @smallexample
10455 volatile int *dst = @var{somevalue};
10456 volatile int *src = @var{someothervalue};
10457 *dst = *src;
10458 @end smallexample
10459
10460 @noindent
10461 will cause a read of the volatile object pointed to by @var{src} and stores the
10462 value into the volatile object pointed to by @var{dst}. There is no
10463 guarantee that these reads and writes are atomic, especially for objects
10464 larger than @code{int}.
10465
10466 Less obvious expressions are where something which looks like an access
10467 is used in a void context. An example would be,
10468
10469 @smallexample
10470 volatile int *src = @var{somevalue};
10471 *src;
10472 @end smallexample
10473
10474 With C, such expressions are rvalues, and as rvalues cause a read of
10475 the object, GCC interprets this as a read of the volatile being pointed
10476 to. The C++ standard specifies that such expressions do not undergo
10477 lvalue to rvalue conversion, and that the type of the dereferenced
10478 object may be incomplete. The C++ standard does not specify explicitly
10479 that it is this lvalue to rvalue conversion which is responsible for
10480 causing an access. However, there is reason to believe that it is,
10481 because otherwise certain simple expressions become undefined. However,
10482 because it would surprise most programmers, G++ treats dereferencing a
10483 pointer to volatile object of complete type in a void context as a read
10484 of the object. When the object has incomplete type, G++ issues a
10485 warning.
10486
10487 @smallexample
10488 struct S;
10489 struct T @{int m;@};
10490 volatile S *ptr1 = @var{somevalue};
10491 volatile T *ptr2 = @var{somevalue};
10492 *ptr1;
10493 *ptr2;
10494 @end smallexample
10495
10496 In this example, a warning is issued for @code{*ptr1}, and @code{*ptr2}
10497 causes a read of the object pointed to. If you wish to force an error on
10498 the first case, you must force a conversion to rvalue with, for instance
10499 a static cast, @code{static_cast<S>(*ptr1)}.
10500
10501 When using a reference to volatile, G++ does not treat equivalent
10502 expressions as accesses to volatiles, but instead issues a warning that
10503 no volatile is accessed. The rationale for this is that otherwise it
10504 becomes difficult to determine where volatile access occur, and not
10505 possible to ignore the return value from functions returning volatile
10506 references. Again, if you wish to force a read, cast the reference to
10507 an rvalue.
10508
10509 @node Restricted Pointers
10510 @section Restricting Pointer Aliasing
10511 @cindex restricted pointers
10512 @cindex restricted references
10513 @cindex restricted this pointer
10514
10515 As with the C front end, G++ understands the C99 feature of restricted pointers,
10516 specified with the @code{__restrict__}, or @code{__restrict} type
10517 qualifier. Because you cannot compile C++ by specifying the @option{-std=c99}
10518 language flag, @code{restrict} is not a keyword in C++.
10519
10520 In addition to allowing restricted pointers, you can specify restricted
10521 references, which indicate that the reference is not aliased in the local
10522 context.
10523
10524 @smallexample
10525 void fn (int *__restrict__ rptr, int &__restrict__ rref)
10526 @{
10527 /* @r{@dots{}} */
10528 @}
10529 @end smallexample
10530
10531 @noindent
10532 In the body of @code{fn}, @var{rptr} points to an unaliased integer and
10533 @var{rref} refers to a (different) unaliased integer.
10534
10535 You may also specify whether a member function's @var{this} pointer is
10536 unaliased by using @code{__restrict__} as a member function qualifier.
10537
10538 @smallexample
10539 void T::fn () __restrict__
10540 @{
10541 /* @r{@dots{}} */
10542 @}
10543 @end smallexample
10544
10545 @noindent
10546 Within the body of @code{T::fn}, @var{this} will have the effective
10547 definition @code{T *__restrict__ const this}. Notice that the
10548 interpretation of a @code{__restrict__} member function qualifier is
10549 different to that of @code{const} or @code{volatile} qualifier, in that it
10550 is applied to the pointer rather than the object. This is consistent with
10551 other compilers which implement restricted pointers.
10552
10553 As with all outermost parameter qualifiers, @code{__restrict__} is
10554 ignored in function definition matching. This means you only need to
10555 specify @code{__restrict__} in a function definition, rather than
10556 in a function prototype as well.
10557
10558 @node Vague Linkage
10559 @section Vague Linkage
10560 @cindex vague linkage
10561
10562 There are several constructs in C++ which require space in the object
10563 file but are not clearly tied to a single translation unit. We say that
10564 these constructs have ``vague linkage''. Typically such constructs are
10565 emitted wherever they are needed, though sometimes we can be more
10566 clever.
10567
10568 @table @asis
10569 @item Inline Functions
10570 Inline functions are typically defined in a header file which can be
10571 included in many different compilations. Hopefully they can usually be
10572 inlined, but sometimes an out-of-line copy is necessary, if the address
10573 of the function is taken or if inlining fails. In general, we emit an
10574 out-of-line copy in all translation units where one is needed. As an
10575 exception, we only emit inline virtual functions with the vtable, since
10576 it will always require a copy.
10577
10578 Local static variables and string constants used in an inline function
10579 are also considered to have vague linkage, since they must be shared
10580 between all inlined and out-of-line instances of the function.
10581
10582 @item VTables
10583 @cindex vtable
10584 C++ virtual functions are implemented in most compilers using a lookup
10585 table, known as a vtable. The vtable contains pointers to the virtual
10586 functions provided by a class, and each object of the class contains a
10587 pointer to its vtable (or vtables, in some multiple-inheritance
10588 situations). If the class declares any non-inline, non-pure virtual
10589 functions, the first one is chosen as the ``key method'' for the class,
10590 and the vtable is only emitted in the translation unit where the key
10591 method is defined.
10592
10593 @emph{Note:} If the chosen key method is later defined as inline, the
10594 vtable will still be emitted in every translation unit which defines it.
10595 Make sure that any inline virtuals are declared inline in the class
10596 body, even if they are not defined there.
10597
10598 @item type_info objects
10599 @cindex type_info
10600 @cindex RTTI
10601 C++ requires information about types to be written out in order to
10602 implement @samp{dynamic_cast}, @samp{typeid} and exception handling.
10603 For polymorphic classes (classes with virtual functions), the type_info
10604 object is written out along with the vtable so that @samp{dynamic_cast}
10605 can determine the dynamic type of a class object at runtime. For all
10606 other types, we write out the type_info object when it is used: when
10607 applying @samp{typeid} to an expression, throwing an object, or
10608 referring to a type in a catch clause or exception specification.
10609
10610 @item Template Instantiations
10611 Most everything in this section also applies to template instantiations,
10612 but there are other options as well.
10613 @xref{Template Instantiation,,Where's the Template?}.
10614
10615 @end table
10616
10617 When used with GNU ld version 2.8 or later on an ELF system such as
10618 GNU/Linux or Solaris 2, or on Microsoft Windows, duplicate copies of
10619 these constructs will be discarded at link time. This is known as
10620 COMDAT support.
10621
10622 On targets that don't support COMDAT, but do support weak symbols, GCC
10623 will use them. This way one copy will override all the others, but
10624 the unused copies will still take up space in the executable.
10625
10626 For targets which do not support either COMDAT or weak symbols,
10627 most entities with vague linkage will be emitted as local symbols to
10628 avoid duplicate definition errors from the linker. This will not happen
10629 for local statics in inlines, however, as having multiple copies will
10630 almost certainly break things.
10631
10632 @xref{C++ Interface,,Declarations and Definitions in One Header}, for
10633 another way to control placement of these constructs.
10634
10635 @node C++ Interface
10636 @section #pragma interface and implementation
10637
10638 @cindex interface and implementation headers, C++
10639 @cindex C++ interface and implementation headers
10640 @cindex pragmas, interface and implementation
10641
10642 @code{#pragma interface} and @code{#pragma implementation} provide the
10643 user with a way of explicitly directing the compiler to emit entities
10644 with vague linkage (and debugging information) in a particular
10645 translation unit.
10646
10647 @emph{Note:} As of GCC 2.7.2, these @code{#pragma}s are not useful in
10648 most cases, because of COMDAT support and the ``key method'' heuristic
10649 mentioned in @ref{Vague Linkage}. Using them can actually cause your
10650 program to grow due to unnecessary out-of-line copies of inline
10651 functions. Currently (3.4) the only benefit of these
10652 @code{#pragma}s is reduced duplication of debugging information, and
10653 that should be addressed soon on DWARF 2 targets with the use of
10654 COMDAT groups.
10655
10656 @table @code
10657 @item #pragma interface
10658 @itemx #pragma interface "@var{subdir}/@var{objects}.h"
10659 @kindex #pragma interface
10660 Use this directive in @emph{header files} that define object classes, to save
10661 space in most of the object files that use those classes. Normally,
10662 local copies of certain information (backup copies of inline member
10663 functions, debugging information, and the internal tables that implement
10664 virtual functions) must be kept in each object file that includes class
10665 definitions. You can use this pragma to avoid such duplication. When a
10666 header file containing @samp{#pragma interface} is included in a
10667 compilation, this auxiliary information will not be generated (unless
10668 the main input source file itself uses @samp{#pragma implementation}).
10669 Instead, the object files will contain references to be resolved at link
10670 time.
10671
10672 The second form of this directive is useful for the case where you have
10673 multiple headers with the same name in different directories. If you
10674 use this form, you must specify the same string to @samp{#pragma
10675 implementation}.
10676
10677 @item #pragma implementation
10678 @itemx #pragma implementation "@var{objects}.h"
10679 @kindex #pragma implementation
10680 Use this pragma in a @emph{main input file}, when you want full output from
10681 included header files to be generated (and made globally visible). The
10682 included header file, in turn, should use @samp{#pragma interface}.
10683 Backup copies of inline member functions, debugging information, and the
10684 internal tables used to implement virtual functions are all generated in
10685 implementation files.
10686
10687 @cindex implied @code{#pragma implementation}
10688 @cindex @code{#pragma implementation}, implied
10689 @cindex naming convention, implementation headers
10690 If you use @samp{#pragma implementation} with no argument, it applies to
10691 an include file with the same basename@footnote{A file's @dfn{basename}
10692 was the name stripped of all leading path information and of trailing
10693 suffixes, such as @samp{.h} or @samp{.C} or @samp{.cc}.} as your source
10694 file. For example, in @file{allclass.cc}, giving just
10695 @samp{#pragma implementation}
10696 by itself is equivalent to @samp{#pragma implementation "allclass.h"}.
10697
10698 In versions of GNU C++ prior to 2.6.0 @file{allclass.h} was treated as
10699 an implementation file whenever you would include it from
10700 @file{allclass.cc} even if you never specified @samp{#pragma
10701 implementation}. This was deemed to be more trouble than it was worth,
10702 however, and disabled.
10703
10704 Use the string argument if you want a single implementation file to
10705 include code from multiple header files. (You must also use
10706 @samp{#include} to include the header file; @samp{#pragma
10707 implementation} only specifies how to use the file---it doesn't actually
10708 include it.)
10709
10710 There is no way to split up the contents of a single header file into
10711 multiple implementation files.
10712 @end table
10713
10714 @cindex inlining and C++ pragmas
10715 @cindex C++ pragmas, effect on inlining
10716 @cindex pragmas in C++, effect on inlining
10717 @samp{#pragma implementation} and @samp{#pragma interface} also have an
10718 effect on function inlining.
10719
10720 If you define a class in a header file marked with @samp{#pragma
10721 interface}, the effect on an inline function defined in that class is
10722 similar to an explicit @code{extern} declaration---the compiler emits
10723 no code at all to define an independent version of the function. Its
10724 definition is used only for inlining with its callers.
10725
10726 @opindex fno-implement-inlines
10727 Conversely, when you include the same header file in a main source file
10728 that declares it as @samp{#pragma implementation}, the compiler emits
10729 code for the function itself; this defines a version of the function
10730 that can be found via pointers (or by callers compiled without
10731 inlining). If all calls to the function can be inlined, you can avoid
10732 emitting the function by compiling with @option{-fno-implement-inlines}.
10733 If any calls were not inlined, you will get linker errors.
10734
10735 @node Template Instantiation
10736 @section Where's the Template?
10737 @cindex template instantiation
10738
10739 C++ templates are the first language feature to require more
10740 intelligence from the environment than one usually finds on a UNIX
10741 system. Somehow the compiler and linker have to make sure that each
10742 template instance occurs exactly once in the executable if it is needed,
10743 and not at all otherwise. There are two basic approaches to this
10744 problem, which are referred to as the Borland model and the Cfront model.
10745
10746 @table @asis
10747 @item Borland model
10748 Borland C++ solved the template instantiation problem by adding the code
10749 equivalent of common blocks to their linker; the compiler emits template
10750 instances in each translation unit that uses them, and the linker
10751 collapses them together. The advantage of this model is that the linker
10752 only has to consider the object files themselves; there is no external
10753 complexity to worry about. This disadvantage is that compilation time
10754 is increased because the template code is being compiled repeatedly.
10755 Code written for this model tends to include definitions of all
10756 templates in the header file, since they must be seen to be
10757 instantiated.
10758
10759 @item Cfront model
10760 The AT&T C++ translator, Cfront, solved the template instantiation
10761 problem by creating the notion of a template repository, an
10762 automatically maintained place where template instances are stored. A
10763 more modern version of the repository works as follows: As individual
10764 object files are built, the compiler places any template definitions and
10765 instantiations encountered in the repository. At link time, the link
10766 wrapper adds in the objects in the repository and compiles any needed
10767 instances that were not previously emitted. The advantages of this
10768 model are more optimal compilation speed and the ability to use the
10769 system linker; to implement the Borland model a compiler vendor also
10770 needs to replace the linker. The disadvantages are vastly increased
10771 complexity, and thus potential for error; for some code this can be
10772 just as transparent, but in practice it can been very difficult to build
10773 multiple programs in one directory and one program in multiple
10774 directories. Code written for this model tends to separate definitions
10775 of non-inline member templates into a separate file, which should be
10776 compiled separately.
10777 @end table
10778
10779 When used with GNU ld version 2.8 or later on an ELF system such as
10780 GNU/Linux or Solaris 2, or on Microsoft Windows, G++ supports the
10781 Borland model. On other systems, G++ implements neither automatic
10782 model.
10783
10784 A future version of G++ will support a hybrid model whereby the compiler
10785 will emit any instantiations for which the template definition is
10786 included in the compile, and store template definitions and
10787 instantiation context information into the object file for the rest.
10788 The link wrapper will extract that information as necessary and invoke
10789 the compiler to produce the remaining instantiations. The linker will
10790 then combine duplicate instantiations.
10791
10792 In the mean time, you have the following options for dealing with
10793 template instantiations:
10794
10795 @enumerate
10796 @item
10797 @opindex frepo
10798 Compile your template-using code with @option{-frepo}. The compiler will
10799 generate files with the extension @samp{.rpo} listing all of the
10800 template instantiations used in the corresponding object files which
10801 could be instantiated there; the link wrapper, @samp{collect2}, will
10802 then update the @samp{.rpo} files to tell the compiler where to place
10803 those instantiations and rebuild any affected object files. The
10804 link-time overhead is negligible after the first pass, as the compiler
10805 will continue to place the instantiations in the same files.
10806
10807 This is your best option for application code written for the Borland
10808 model, as it will just work. Code written for the Cfront model will
10809 need to be modified so that the template definitions are available at
10810 one or more points of instantiation; usually this is as simple as adding
10811 @code{#include <tmethods.cc>} to the end of each template header.
10812
10813 For library code, if you want the library to provide all of the template
10814 instantiations it needs, just try to link all of its object files
10815 together; the link will fail, but cause the instantiations to be
10816 generated as a side effect. Be warned, however, that this may cause
10817 conflicts if multiple libraries try to provide the same instantiations.
10818 For greater control, use explicit instantiation as described in the next
10819 option.
10820
10821 @item
10822 @opindex fno-implicit-templates
10823 Compile your code with @option{-fno-implicit-templates} to disable the
10824 implicit generation of template instances, and explicitly instantiate
10825 all the ones you use. This approach requires more knowledge of exactly
10826 which instances you need than do the others, but it's less
10827 mysterious and allows greater control. You can scatter the explicit
10828 instantiations throughout your program, perhaps putting them in the
10829 translation units where the instances are used or the translation units
10830 that define the templates themselves; you can put all of the explicit
10831 instantiations you need into one big file; or you can create small files
10832 like
10833
10834 @smallexample
10835 #include "Foo.h"
10836 #include "Foo.cc"
10837
10838 template class Foo<int>;
10839 template ostream& operator <<
10840 (ostream&, const Foo<int>&);
10841 @end smallexample
10842
10843 for each of the instances you need, and create a template instantiation
10844 library from those.
10845
10846 If you are using Cfront-model code, you can probably get away with not
10847 using @option{-fno-implicit-templates} when compiling files that don't
10848 @samp{#include} the member template definitions.
10849
10850 If you use one big file to do the instantiations, you may want to
10851 compile it without @option{-fno-implicit-templates} so you get all of the
10852 instances required by your explicit instantiations (but not by any
10853 other files) without having to specify them as well.
10854
10855 G++ has extended the template instantiation syntax given in the ISO
10856 standard to allow forward declaration of explicit instantiations
10857 (with @code{extern}), instantiation of the compiler support data for a
10858 template class (i.e.@: the vtable) without instantiating any of its
10859 members (with @code{inline}), and instantiation of only the static data
10860 members of a template class, without the support data or member
10861 functions (with (@code{static}):
10862
10863 @smallexample
10864 extern template int max (int, int);
10865 inline template class Foo<int>;
10866 static template class Foo<int>;
10867 @end smallexample
10868
10869 @item
10870 Do nothing. Pretend G++ does implement automatic instantiation
10871 management. Code written for the Borland model will work fine, but
10872 each translation unit will contain instances of each of the templates it
10873 uses. In a large program, this can lead to an unacceptable amount of code
10874 duplication.
10875 @end enumerate
10876
10877 @node Bound member functions
10878 @section Extracting the function pointer from a bound pointer to member function
10879 @cindex pmf
10880 @cindex pointer to member function
10881 @cindex bound pointer to member function
10882
10883 In C++, pointer to member functions (PMFs) are implemented using a wide
10884 pointer of sorts to handle all the possible call mechanisms; the PMF
10885 needs to store information about how to adjust the @samp{this} pointer,
10886 and if the function pointed to is virtual, where to find the vtable, and
10887 where in the vtable to look for the member function. If you are using
10888 PMFs in an inner loop, you should really reconsider that decision. If
10889 that is not an option, you can extract the pointer to the function that
10890 would be called for a given object/PMF pair and call it directly inside
10891 the inner loop, to save a bit of time.
10892
10893 Note that you will still be paying the penalty for the call through a
10894 function pointer; on most modern architectures, such a call defeats the
10895 branch prediction features of the CPU@. This is also true of normal
10896 virtual function calls.
10897
10898 The syntax for this extension is
10899
10900 @smallexample
10901 extern A a;
10902 extern int (A::*fp)();
10903 typedef int (*fptr)(A *);
10904
10905 fptr p = (fptr)(a.*fp);
10906 @end smallexample
10907
10908 For PMF constants (i.e.@: expressions of the form @samp{&Klasse::Member}),
10909 no object is needed to obtain the address of the function. They can be
10910 converted to function pointers directly:
10911
10912 @smallexample
10913 fptr p1 = (fptr)(&A::foo);
10914 @end smallexample
10915
10916 @opindex Wno-pmf-conversions
10917 You must specify @option{-Wno-pmf-conversions} to use this extension.
10918
10919 @node C++ Attributes
10920 @section C++-Specific Variable, Function, and Type Attributes
10921
10922 Some attributes only make sense for C++ programs.
10923
10924 @table @code
10925 @item init_priority (@var{priority})
10926 @cindex init_priority attribute
10927
10928
10929 In Standard C++, objects defined at namespace scope are guaranteed to be
10930 initialized in an order in strict accordance with that of their definitions
10931 @emph{in a given translation unit}. No guarantee is made for initializations
10932 across translation units. However, GNU C++ allows users to control the
10933 order of initialization of objects defined at namespace scope with the
10934 @code{init_priority} attribute by specifying a relative @var{priority},
10935 a constant integral expression currently bounded between 101 and 65535
10936 inclusive. Lower numbers indicate a higher priority.
10937
10938 In the following example, @code{A} would normally be created before
10939 @code{B}, but the @code{init_priority} attribute has reversed that order:
10940
10941 @smallexample
10942 Some_Class A __attribute__ ((init_priority (2000)));
10943 Some_Class B __attribute__ ((init_priority (543)));
10944 @end smallexample
10945
10946 @noindent
10947 Note that the particular values of @var{priority} do not matter; only their
10948 relative ordering.
10949
10950 @item java_interface
10951 @cindex java_interface attribute
10952
10953 This type attribute informs C++ that the class is a Java interface. It may
10954 only be applied to classes declared within an @code{extern "Java"} block.
10955 Calls to methods declared in this interface will be dispatched using GCJ's
10956 interface table mechanism, instead of regular virtual table dispatch.
10957
10958 @end table
10959
10960 See also @xref{Namespace Association}.
10961
10962 @node Namespace Association
10963 @section Namespace Association
10964
10965 @strong{Caution:} The semantics of this extension are not fully
10966 defined. Users should refrain from using this extension as its
10967 semantics may change subtly over time. It is possible that this
10968 extension will be removed in future versions of G++.
10969
10970 A using-directive with @code{__attribute ((strong))} is stronger
10971 than a normal using-directive in two ways:
10972
10973 @itemize @bullet
10974 @item
10975 Templates from the used namespace can be specialized and explicitly
10976 instantiated as though they were members of the using namespace.
10977
10978 @item
10979 The using namespace is considered an associated namespace of all
10980 templates in the used namespace for purposes of argument-dependent
10981 name lookup.
10982 @end itemize
10983
10984 The used namespace must be nested within the using namespace so that
10985 normal unqualified lookup works properly.
10986
10987 This is useful for composing a namespace transparently from
10988 implementation namespaces. For example:
10989
10990 @smallexample
10991 namespace std @{
10992 namespace debug @{
10993 template <class T> struct A @{ @};
10994 @}
10995 using namespace debug __attribute ((__strong__));
10996 template <> struct A<int> @{ @}; // @r{ok to specialize}
10997
10998 template <class T> void f (A<T>);
10999 @}
11000
11001 int main()
11002 @{
11003 f (std::A<float>()); // @r{lookup finds} std::f
11004 f (std::A<int>());
11005 @}
11006 @end smallexample
11007
11008 @node Java Exceptions
11009 @section Java Exceptions
11010
11011 The Java language uses a slightly different exception handling model
11012 from C++. Normally, GNU C++ will automatically detect when you are
11013 writing C++ code that uses Java exceptions, and handle them
11014 appropriately. However, if C++ code only needs to execute destructors
11015 when Java exceptions are thrown through it, GCC will guess incorrectly.
11016 Sample problematic code is:
11017
11018 @smallexample
11019 struct S @{ ~S(); @};
11020 extern void bar(); // @r{is written in Java, and may throw exceptions}
11021 void foo()
11022 @{
11023 S s;
11024 bar();
11025 @}
11026 @end smallexample
11027
11028 @noindent
11029 The usual effect of an incorrect guess is a link failure, complaining of
11030 a missing routine called @samp{__gxx_personality_v0}.
11031
11032 You can inform the compiler that Java exceptions are to be used in a
11033 translation unit, irrespective of what it might think, by writing
11034 @samp{@w{#pragma GCC java_exceptions}} at the head of the file. This
11035 @samp{#pragma} must appear before any functions that throw or catch
11036 exceptions, or run destructors when exceptions are thrown through them.
11037
11038 You cannot mix Java and C++ exceptions in the same translation unit. It
11039 is believed to be safe to throw a C++ exception from one file through
11040 another file compiled for the Java exception model, or vice versa, but
11041 there may be bugs in this area.
11042
11043 @node Deprecated Features
11044 @section Deprecated Features
11045
11046 In the past, the GNU C++ compiler was extended to experiment with new
11047 features, at a time when the C++ language was still evolving. Now that
11048 the C++ standard is complete, some of those features are superseded by
11049 superior alternatives. Using the old features might cause a warning in
11050 some cases that the feature will be dropped in the future. In other
11051 cases, the feature might be gone already.
11052
11053 While the list below is not exhaustive, it documents some of the options
11054 that are now deprecated:
11055
11056 @table @code
11057 @item -fexternal-templates
11058 @itemx -falt-external-templates
11059 These are two of the many ways for G++ to implement template
11060 instantiation. @xref{Template Instantiation}. The C++ standard clearly
11061 defines how template definitions have to be organized across
11062 implementation units. G++ has an implicit instantiation mechanism that
11063 should work just fine for standard-conforming code.
11064
11065 @item -fstrict-prototype
11066 @itemx -fno-strict-prototype
11067 Previously it was possible to use an empty prototype parameter list to
11068 indicate an unspecified number of parameters (like C), rather than no
11069 parameters, as C++ demands. This feature has been removed, except where
11070 it is required for backwards compatibility @xref{Backwards Compatibility}.
11071 @end table
11072
11073 G++ allows a virtual function returning @samp{void *} to be overridden
11074 by one returning a different pointer type. This extension to the
11075 covariant return type rules is now deprecated and will be removed from a
11076 future version.
11077
11078 The G++ minimum and maximum operators (@samp{<?} and @samp{>?}) and
11079 their compound forms (@samp{<?=}) and @samp{>?=}) have been deprecated
11080 and will be removed in a future version. Code using these operators
11081 should be modified to use @code{std::min} and @code{std::max} instead.
11082
11083 The named return value extension has been deprecated, and is now
11084 removed from G++.
11085
11086 The use of initializer lists with new expressions has been deprecated,
11087 and is now removed from G++.
11088
11089 Floating and complex non-type template parameters have been deprecated,
11090 and are now removed from G++.
11091
11092 The implicit typename extension has been deprecated and is now
11093 removed from G++.
11094
11095 The use of default arguments in function pointers, function typedefs and
11096 and other places where they are not permitted by the standard is
11097 deprecated and will be removed from a future version of G++.
11098
11099 G++ allows floating-point literals to appear in integral constant expressions,
11100 e.g. @samp{ enum E @{ e = int(2.2 * 3.7) @} }
11101 This extension is deprecated and will be removed from a future version.
11102
11103 G++ allows static data members of const floating-point type to be declared
11104 with an initializer in a class definition. The standard only allows
11105 initializers for static members of const integral types and const
11106 enumeration types so this extension has been deprecated and will be removed
11107 from a future version.
11108
11109 @node Backwards Compatibility
11110 @section Backwards Compatibility
11111 @cindex Backwards Compatibility
11112 @cindex ARM [Annotated C++ Reference Manual]
11113
11114 Now that there is a definitive ISO standard C++, G++ has a specification
11115 to adhere to. The C++ language evolved over time, and features that
11116 used to be acceptable in previous drafts of the standard, such as the ARM
11117 [Annotated C++ Reference Manual], are no longer accepted. In order to allow
11118 compilation of C++ written to such drafts, G++ contains some backwards
11119 compatibilities. @emph{All such backwards compatibility features are
11120 liable to disappear in future versions of G++.} They should be considered
11121 deprecated @xref{Deprecated Features}.
11122
11123 @table @code
11124 @item For scope
11125 If a variable is declared at for scope, it used to remain in scope until
11126 the end of the scope which contained the for statement (rather than just
11127 within the for scope). G++ retains this, but issues a warning, if such a
11128 variable is accessed outside the for scope.
11129
11130 @item Implicit C language
11131 Old C system header files did not contain an @code{extern "C" @{@dots{}@}}
11132 scope to set the language. On such systems, all header files are
11133 implicitly scoped inside a C language scope. Also, an empty prototype
11134 @code{()} will be treated as an unspecified number of arguments, rather
11135 than no arguments, as C++ demands.
11136 @end table