OSDN Git Service

b666a2ef1c4deaca1db9fc9fbb0993495c639f68
[pf3gnuchains/gcc-fork.git] / gcc / doc / extend.texi
1 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1996, 1998, 1999, 2000, 2001,
2 @c 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 @c Free Software Foundation, Inc.
4
5 @c This is part of the GCC manual.
6 @c For copying conditions, see the file gcc.texi.
7
8 @node C Extensions
9 @chapter Extensions to the C Language Family
10 @cindex extensions, C language
11 @cindex C language extensions
12
13 @opindex pedantic
14 GNU C provides several language features not found in ISO standard C@.
15 (The @option{-pedantic} option directs GCC to print a warning message if
16 any of these features is used.)  To test for the availability of these
17 features in conditional compilation, check for a predefined macro
18 @code{__GNUC__}, which is always defined under GCC@.
19
20 These extensions are available in C and Objective-C@.  Most of them are
21 also available in C++.  @xref{C++ Extensions,,Extensions to the
22 C++ Language}, for extensions that apply @emph{only} to C++.
23
24 Some features that are in ISO C99 but not C90 or C++ are also, as
25 extensions, accepted by GCC in C90 mode and in C++.
26
27 @menu
28 * Statement Exprs::     Putting statements and declarations inside expressions.
29 * Local Labels::        Labels local to a block.
30 * Labels as Values::    Getting pointers to labels, and computed gotos.
31 * Nested Functions::    As in Algol and Pascal, lexical scoping of functions.
32 * Constructing Calls::  Dispatching a call to another function.
33 * Typeof::              @code{typeof}: referring to the type of an expression.
34 * Conditionals::        Omitting the middle operand of a @samp{?:} expression.
35 * Long Long::           Double-word integers---@code{long long int}.
36 * __int128::                    128-bit integers---@code{__int128}.
37 * Complex::             Data types for complex numbers.
38 * Floating Types::      Additional Floating Types.
39 * Half-Precision::      Half-Precision Floating Point.
40 * Decimal Float::       Decimal Floating Types.
41 * Hex Floats::          Hexadecimal floating-point constants.
42 * Fixed-Point::         Fixed-Point Types.
43 * Named Address Spaces::Named address spaces.
44 * Zero Length::         Zero-length arrays.
45 * Variable Length::     Arrays whose length is computed at run time.
46 * Empty Structures::    Structures with no members.
47 * Variadic Macros::     Macros with a variable number of arguments.
48 * Escaped Newlines::    Slightly looser rules for escaped newlines.
49 * Subscripting::        Any array can be subscripted, even if not an lvalue.
50 * Pointer Arith::       Arithmetic on @code{void}-pointers and function pointers.
51 * Initializers::        Non-constant initializers.
52 * Compound Literals::   Compound literals give structures, unions
53                         or arrays as values.
54 * Designated Inits::    Labeling elements of initializers.
55 * Cast to Union::       Casting to union type from any member of the union.
56 * Case Ranges::         `case 1 ... 9' and such.
57 * Mixed Declarations::  Mixing declarations and code.
58 * Function Attributes:: Declaring that functions have no side effects,
59                         or that they can never return.
60 * Attribute Syntax::    Formal syntax for attributes.
61 * Function Prototypes:: Prototype declarations and old-style definitions.
62 * C++ Comments::        C++ comments are recognized.
63 * Dollar Signs::        Dollar sign is allowed in identifiers.
64 * Character Escapes::   @samp{\e} stands for the character @key{ESC}.
65 * Variable Attributes:: Specifying attributes of variables.
66 * Type Attributes::     Specifying attributes of types.
67 * Alignment::           Inquiring about the alignment of a type or variable.
68 * Inline::              Defining inline functions (as fast as macros).
69 * Volatiles::           What constitutes an access to a volatile object.
70 * Extended Asm::        Assembler instructions with C expressions as operands.
71                         (With them you can define ``built-in'' functions.)
72 * Constraints::         Constraints for asm operands
73 * Asm Labels::          Specifying the assembler name to use for a C symbol.
74 * Explicit Reg Vars::   Defining variables residing in specified registers.
75 * Alternate Keywords::  @code{__const__}, @code{__asm__}, etc., for header files.
76 * Incomplete Enums::    @code{enum foo;}, with details to follow.
77 * Function Names::      Printable strings which are the name of the current
78                         function.
79 * Return Address::      Getting the return or frame address of a function.
80 * Vector Extensions::   Using vector instructions through built-in functions.
81 * Offsetof::            Special syntax for implementing @code{offsetof}.
82 * __sync Builtins::     Legacy built-in functions for atomic memory access.
83 * __atomic Builtins::   Atomic built-in functions with memory model.
84 * Object Size Checking:: Built-in functions for limited buffer overflow
85                         checking.
86 * Other Builtins::      Other built-in functions.
87 * Target Builtins::     Built-in functions specific to particular targets.
88 * Target Format Checks:: Format checks specific to particular targets.
89 * Pragmas::             Pragmas accepted by GCC.
90 * Unnamed Fields::      Unnamed struct/union fields within structs/unions.
91 * Thread-Local::        Per-thread variables.
92 * Binary constants::    Binary constants using the @samp{0b} prefix.
93 @end menu
94
95 @node Statement Exprs
96 @section Statements and Declarations in Expressions
97 @cindex statements inside expressions
98 @cindex declarations inside expressions
99 @cindex expressions containing statements
100 @cindex macros, statements in expressions
101
102 @c the above section title wrapped and causes an underfull hbox.. i
103 @c changed it from "within" to "in". --mew 4feb93
104 A compound statement enclosed in parentheses may appear as an expression
105 in GNU C@.  This allows you to use loops, switches, and local variables
106 within an expression.
107
108 Recall that a compound statement is a sequence of statements surrounded
109 by braces; in this construct, parentheses go around the braces.  For
110 example:
111
112 @smallexample
113 (@{ int y = foo (); int z;
114    if (y > 0) z = y;
115    else z = - y;
116    z; @})
117 @end smallexample
118
119 @noindent
120 is a valid (though slightly more complex than necessary) expression
121 for the absolute value of @code{foo ()}.
122
123 The last thing in the compound statement should be an expression
124 followed by a semicolon; the value of this subexpression serves as the
125 value of the entire construct.  (If you use some other kind of statement
126 last within the braces, the construct has type @code{void}, and thus
127 effectively no value.)
128
129 This feature is especially useful in making macro definitions ``safe'' (so
130 that they evaluate each operand exactly once).  For example, the
131 ``maximum'' function is commonly defined as a macro in standard C as
132 follows:
133
134 @smallexample
135 #define max(a,b) ((a) > (b) ? (a) : (b))
136 @end smallexample
137
138 @noindent
139 @cindex side effects, macro argument
140 But this definition computes either @var{a} or @var{b} twice, with bad
141 results if the operand has side effects.  In GNU C, if you know the
142 type of the operands (here taken as @code{int}), you can define
143 the macro safely as follows:
144
145 @smallexample
146 #define maxint(a,b) \
147   (@{int _a = (a), _b = (b); _a > _b ? _a : _b; @})
148 @end smallexample
149
150 Embedded statements are not allowed in constant expressions, such as
151 the value of an enumeration constant, the width of a bit-field, or
152 the initial value of a static variable.
153
154 If you don't know the type of the operand, you can still do this, but you
155 must use @code{typeof} (@pxref{Typeof}).
156
157 In G++, the result value of a statement expression undergoes array and
158 function pointer decay, and is returned by value to the enclosing
159 expression.  For instance, if @code{A} is a class, then
160
161 @smallexample
162         A a;
163
164         (@{a;@}).Foo ()
165 @end smallexample
166
167 @noindent
168 will construct a temporary @code{A} object to hold the result of the
169 statement expression, and that will be used to invoke @code{Foo}.
170 Therefore the @code{this} pointer observed by @code{Foo} will not be the
171 address of @code{a}.
172
173 Any temporaries created within a statement within a statement expression
174 will be destroyed at the statement's end.  This makes statement
175 expressions inside macros slightly different from function calls.  In
176 the latter case temporaries introduced during argument evaluation will
177 be destroyed at the end of the statement that includes the function
178 call.  In the statement expression case they will be destroyed during
179 the statement expression.  For instance,
180
181 @smallexample
182 #define macro(a)  (@{__typeof__(a) b = (a); b + 3; @})
183 template<typename T> T function(T a) @{ T b = a; return b + 3; @}
184
185 void foo ()
186 @{
187   macro (X ());
188   function (X ());
189 @}
190 @end smallexample
191
192 @noindent
193 will have different places where temporaries are destroyed.  For the
194 @code{macro} case, the temporary @code{X} will be destroyed just after
195 the initialization of @code{b}.  In the @code{function} case that
196 temporary will be destroyed when the function returns.
197
198 These considerations mean that it is probably a bad idea to use
199 statement-expressions of this form in header files that are designed to
200 work with C++.  (Note that some versions of the GNU C Library contained
201 header files using statement-expression that lead to precisely this
202 bug.)
203
204 Jumping into a statement expression with @code{goto} or using a
205 @code{switch} statement outside the statement expression with a
206 @code{case} or @code{default} label inside the statement expression is
207 not permitted.  Jumping into a statement expression with a computed
208 @code{goto} (@pxref{Labels as Values}) yields undefined behavior.
209 Jumping out of a statement expression is permitted, but if the
210 statement expression is part of a larger expression then it is
211 unspecified which other subexpressions of that expression have been
212 evaluated except where the language definition requires certain
213 subexpressions to be evaluated before or after the statement
214 expression.  In any case, as with a function call the evaluation of a
215 statement expression is not interleaved with the evaluation of other
216 parts of the containing expression.  For example,
217
218 @smallexample
219   foo (), ((@{ bar1 (); goto a; 0; @}) + bar2 ()), baz();
220 @end smallexample
221
222 @noindent
223 will call @code{foo} and @code{bar1} and will not call @code{baz} but
224 may or may not call @code{bar2}.  If @code{bar2} is called, it will be
225 called after @code{foo} and before @code{bar1}
226
227 @node Local Labels
228 @section Locally Declared Labels
229 @cindex local labels
230 @cindex macros, local labels
231
232 GCC allows you to declare @dfn{local labels} in any nested block
233 scope.  A local label is just like an ordinary label, but you can
234 only reference it (with a @code{goto} statement, or by taking its
235 address) within the block in which it was declared.
236
237 A local label declaration looks like this:
238
239 @smallexample
240 __label__ @var{label};
241 @end smallexample
242
243 @noindent
244 or
245
246 @smallexample
247 __label__ @var{label1}, @var{label2}, /* @r{@dots{}} */;
248 @end smallexample
249
250 Local label declarations must come at the beginning of the block,
251 before any ordinary declarations or statements.
252
253 The label declaration defines the label @emph{name}, but does not define
254 the label itself.  You must do this in the usual way, with
255 @code{@var{label}:}, within the statements of the statement expression.
256
257 The local label feature is useful for complex macros.  If a macro
258 contains nested loops, a @code{goto} can be useful for breaking out of
259 them.  However, an ordinary label whose scope is the whole function
260 cannot be used: if the macro can be expanded several times in one
261 function, the label will be multiply defined in that function.  A
262 local label avoids this problem.  For example:
263
264 @smallexample
265 #define SEARCH(value, array, target)              \
266 do @{                                              \
267   __label__ found;                                \
268   typeof (target) _SEARCH_target = (target);      \
269   typeof (*(array)) *_SEARCH_array = (array);     \
270   int i, j;                                       \
271   int value;                                      \
272   for (i = 0; i < max; i++)                       \
273     for (j = 0; j < max; j++)                     \
274       if (_SEARCH_array[i][j] == _SEARCH_target)  \
275         @{ (value) = i; goto found; @}              \
276   (value) = -1;                                   \
277  found:;                                          \
278 @} while (0)
279 @end smallexample
280
281 This could also be written using a statement-expression:
282
283 @smallexample
284 #define SEARCH(array, target)                     \
285 (@{                                                \
286   __label__ found;                                \
287   typeof (target) _SEARCH_target = (target);      \
288   typeof (*(array)) *_SEARCH_array = (array);     \
289   int i, j;                                       \
290   int value;                                      \
291   for (i = 0; i < max; i++)                       \
292     for (j = 0; j < max; j++)                     \
293       if (_SEARCH_array[i][j] == _SEARCH_target)  \
294         @{ value = i; goto found; @}                \
295   value = -1;                                     \
296  found:                                           \
297   value;                                          \
298 @})
299 @end smallexample
300
301 Local label declarations also make the labels they declare visible to
302 nested functions, if there are any.  @xref{Nested Functions}, for details.
303
304 @node Labels as Values
305 @section Labels as Values
306 @cindex labels as values
307 @cindex computed gotos
308 @cindex goto with computed label
309 @cindex address of a label
310
311 You can get the address of a label defined in the current function
312 (or a containing function) with the unary operator @samp{&&}.  The
313 value has type @code{void *}.  This value is a constant and can be used
314 wherever a constant of that type is valid.  For example:
315
316 @smallexample
317 void *ptr;
318 /* @r{@dots{}} */
319 ptr = &&foo;
320 @end smallexample
321
322 To use these values, you need to be able to jump to one.  This is done
323 with the computed goto statement@footnote{The analogous feature in
324 Fortran is called an assigned goto, but that name seems inappropriate in
325 C, where one can do more than simply store label addresses in label
326 variables.}, @code{goto *@var{exp};}.  For example,
327
328 @smallexample
329 goto *ptr;
330 @end smallexample
331
332 @noindent
333 Any expression of type @code{void *} is allowed.
334
335 One way of using these constants is in initializing a static array that
336 will serve as a jump table:
337
338 @smallexample
339 static void *array[] = @{ &&foo, &&bar, &&hack @};
340 @end smallexample
341
342 Then you can select a label with indexing, like this:
343
344 @smallexample
345 goto *array[i];
346 @end smallexample
347
348 @noindent
349 Note that this does not check whether the subscript is in bounds---array
350 indexing in C never does that.
351
352 Such an array of label values serves a purpose much like that of the
353 @code{switch} statement.  The @code{switch} statement is cleaner, so
354 use that rather than an array unless the problem does not fit a
355 @code{switch} statement very well.
356
357 Another use of label values is in an interpreter for threaded code.
358 The labels within the interpreter function can be stored in the
359 threaded code for super-fast dispatching.
360
361 You may not use this mechanism to jump to code in a different function.
362 If you do that, totally unpredictable things will happen.  The best way to
363 avoid this is to store the label address only in automatic variables and
364 never pass it as an argument.
365
366 An alternate way to write the above example is
367
368 @smallexample
369 static const int array[] = @{ &&foo - &&foo, &&bar - &&foo,
370                              &&hack - &&foo @};
371 goto *(&&foo + array[i]);
372 @end smallexample
373
374 @noindent
375 This is more friendly to code living in shared libraries, as it reduces
376 the number of dynamic relocations that are needed, and by consequence,
377 allows the data to be read-only.
378
379 The @code{&&foo} expressions for the same label might have different
380 values if the containing function is inlined or cloned.  If a program
381 relies on them being always the same,
382 @code{__attribute__((__noinline__,__noclone__))} should be used to
383 prevent inlining and cloning.  If @code{&&foo} is used in a static
384 variable initializer, inlining and cloning is forbidden.
385
386 @node Nested Functions
387 @section Nested Functions
388 @cindex nested functions
389 @cindex downward funargs
390 @cindex thunks
391
392 A @dfn{nested function} is a function defined inside another function.
393 (Nested functions are not supported for GNU C++.)  The nested function's
394 name is local to the block where it is defined.  For example, here we
395 define a nested function named @code{square}, and call it twice:
396
397 @smallexample
398 @group
399 foo (double a, double b)
400 @{
401   double square (double z) @{ return z * z; @}
402
403   return square (a) + square (b);
404 @}
405 @end group
406 @end smallexample
407
408 The nested function can access all the variables of the containing
409 function that are visible at the point of its definition.  This is
410 called @dfn{lexical scoping}.  For example, here we show a nested
411 function which uses an inherited variable named @code{offset}:
412
413 @smallexample
414 @group
415 bar (int *array, int offset, int size)
416 @{
417   int access (int *array, int index)
418     @{ return array[index + offset]; @}
419   int i;
420   /* @r{@dots{}} */
421   for (i = 0; i < size; i++)
422     /* @r{@dots{}} */ access (array, i) /* @r{@dots{}} */
423 @}
424 @end group
425 @end smallexample
426
427 Nested function definitions are permitted within functions in the places
428 where variable definitions are allowed; that is, in any block, mixed
429 with the other declarations and statements in the block.
430
431 It is possible to call the nested function from outside the scope of its
432 name by storing its address or passing the address to another function:
433
434 @smallexample
435 hack (int *array, int size)
436 @{
437   void store (int index, int value)
438     @{ array[index] = value; @}
439
440   intermediate (store, size);
441 @}
442 @end smallexample
443
444 Here, the function @code{intermediate} receives the address of
445 @code{store} as an argument.  If @code{intermediate} calls @code{store},
446 the arguments given to @code{store} are used to store into @code{array}.
447 But this technique works only so long as the containing function
448 (@code{hack}, in this example) does not exit.
449
450 If you try to call the nested function through its address after the
451 containing function has exited, all hell will break loose.  If you try
452 to call it after a containing scope level has exited, and if it refers
453 to some of the variables that are no longer in scope, you may be lucky,
454 but it's not wise to take the risk.  If, however, the nested function
455 does not refer to anything that has gone out of scope, you should be
456 safe.
457
458 GCC implements taking the address of a nested function using a technique
459 called @dfn{trampolines}.  This technique was described in
460 @cite{Lexical Closures for C++} (Thomas M. Breuel, USENIX
461 C++ Conference Proceedings, October 17-21, 1988).
462
463 A nested function can jump to a label inherited from a containing
464 function, provided the label was explicitly declared in the containing
465 function (@pxref{Local Labels}).  Such a jump returns instantly to the
466 containing function, exiting the nested function which did the
467 @code{goto} and any intermediate functions as well.  Here is an example:
468
469 @smallexample
470 @group
471 bar (int *array, int offset, int size)
472 @{
473   __label__ failure;
474   int access (int *array, int index)
475     @{
476       if (index > size)
477         goto failure;
478       return array[index + offset];
479     @}
480   int i;
481   /* @r{@dots{}} */
482   for (i = 0; i < size; i++)
483     /* @r{@dots{}} */ access (array, i) /* @r{@dots{}} */
484   /* @r{@dots{}} */
485   return 0;
486
487  /* @r{Control comes here from @code{access}
488     if it detects an error.}  */
489  failure:
490   return -1;
491 @}
492 @end group
493 @end smallexample
494
495 A nested function always has no linkage.  Declaring one with
496 @code{extern} or @code{static} is erroneous.  If you need to declare the nested function
497 before its definition, use @code{auto} (which is otherwise meaningless
498 for function declarations).
499
500 @smallexample
501 bar (int *array, int offset, int size)
502 @{
503   __label__ failure;
504   auto int access (int *, int);
505   /* @r{@dots{}} */
506   int access (int *array, int index)
507     @{
508       if (index > size)
509         goto failure;
510       return array[index + offset];
511     @}
512   /* @r{@dots{}} */
513 @}
514 @end smallexample
515
516 @node Constructing Calls
517 @section Constructing Function Calls
518 @cindex constructing calls
519 @cindex forwarding calls
520
521 Using the built-in functions described below, you can record
522 the arguments a function received, and call another function
523 with the same arguments, without knowing the number or types
524 of the arguments.
525
526 You can also record the return value of that function call,
527 and later return that value, without knowing what data type
528 the function tried to return (as long as your caller expects
529 that data type).
530
531 However, these built-in functions may interact badly with some
532 sophisticated features or other extensions of the language.  It
533 is, therefore, not recommended to use them outside very simple
534 functions acting as mere forwarders for their arguments.
535
536 @deftypefn {Built-in Function} {void *} __builtin_apply_args ()
537 This built-in function returns a pointer to data
538 describing how to perform a call with the same arguments as were passed
539 to the current function.
540
541 The function saves the arg pointer register, structure value address,
542 and all registers that might be used to pass arguments to a function
543 into a block of memory allocated on the stack.  Then it returns the
544 address of that block.
545 @end deftypefn
546
547 @deftypefn {Built-in Function} {void *} __builtin_apply (void (*@var{function})(), void *@var{arguments}, size_t @var{size})
548 This built-in function invokes @var{function}
549 with a copy of the parameters described by @var{arguments}
550 and @var{size}.
551
552 The value of @var{arguments} should be the value returned by
553 @code{__builtin_apply_args}.  The argument @var{size} specifies the size
554 of the stack argument data, in bytes.
555
556 This function returns a pointer to data describing
557 how to return whatever value was returned by @var{function}.  The data
558 is saved in a block of memory allocated on the stack.
559
560 It is not always simple to compute the proper value for @var{size}.  The
561 value is used by @code{__builtin_apply} to compute the amount of data
562 that should be pushed on the stack and copied from the incoming argument
563 area.
564 @end deftypefn
565
566 @deftypefn {Built-in Function} {void} __builtin_return (void *@var{result})
567 This built-in function returns the value described by @var{result} from
568 the containing function.  You should specify, for @var{result}, a value
569 returned by @code{__builtin_apply}.
570 @end deftypefn
571
572 @deftypefn {Built-in Function} {} __builtin_va_arg_pack ()
573 This built-in function represents all anonymous arguments of an inline
574 function.  It can be used only in inline functions which will be always
575 inlined, never compiled as a separate function, such as those using
576 @code{__attribute__ ((__always_inline__))} or
577 @code{__attribute__ ((__gnu_inline__))} extern inline functions.
578 It must be only passed as last argument to some other function
579 with variable arguments.  This is useful for writing small wrapper
580 inlines for variable argument functions, when using preprocessor
581 macros is undesirable.  For example:
582 @smallexample
583 extern int myprintf (FILE *f, const char *format, ...);
584 extern inline __attribute__ ((__gnu_inline__)) int
585 myprintf (FILE *f, const char *format, ...)
586 @{
587   int r = fprintf (f, "myprintf: ");
588   if (r < 0)
589     return r;
590   int s = fprintf (f, format, __builtin_va_arg_pack ());
591   if (s < 0)
592     return s;
593   return r + s;
594 @}
595 @end smallexample
596 @end deftypefn
597
598 @deftypefn {Built-in Function} {size_t} __builtin_va_arg_pack_len ()
599 This built-in function returns the number of anonymous arguments of
600 an inline function.  It can be used only in inline functions which
601 will be always inlined, never compiled as a separate function, such
602 as those using @code{__attribute__ ((__always_inline__))} or
603 @code{__attribute__ ((__gnu_inline__))} extern inline functions.
604 For example following will do link or runtime checking of open
605 arguments for optimized code:
606 @smallexample
607 #ifdef __OPTIMIZE__
608 extern inline __attribute__((__gnu_inline__)) int
609 myopen (const char *path, int oflag, ...)
610 @{
611   if (__builtin_va_arg_pack_len () > 1)
612     warn_open_too_many_arguments ();
613
614   if (__builtin_constant_p (oflag))
615     @{
616       if ((oflag & O_CREAT) != 0 && __builtin_va_arg_pack_len () < 1)
617         @{
618           warn_open_missing_mode ();
619           return __open_2 (path, oflag);
620         @}
621       return open (path, oflag, __builtin_va_arg_pack ());
622     @}
623
624   if (__builtin_va_arg_pack_len () < 1)
625     return __open_2 (path, oflag);
626
627   return open (path, oflag, __builtin_va_arg_pack ());
628 @}
629 #endif
630 @end smallexample
631 @end deftypefn
632
633 @node Typeof
634 @section Referring to a Type with @code{typeof}
635 @findex typeof
636 @findex sizeof
637 @cindex macros, types of arguments
638
639 Another way to refer to the type of an expression is with @code{typeof}.
640 The syntax of using of this keyword looks like @code{sizeof}, but the
641 construct acts semantically like a type name defined with @code{typedef}.
642
643 There are two ways of writing the argument to @code{typeof}: with an
644 expression or with a type.  Here is an example with an expression:
645
646 @smallexample
647 typeof (x[0](1))
648 @end smallexample
649
650 @noindent
651 This assumes that @code{x} is an array of pointers to functions;
652 the type described is that of the values of the functions.
653
654 Here is an example with a typename as the argument:
655
656 @smallexample
657 typeof (int *)
658 @end smallexample
659
660 @noindent
661 Here the type described is that of pointers to @code{int}.
662
663 If you are writing a header file that must work when included in ISO C
664 programs, write @code{__typeof__} instead of @code{typeof}.
665 @xref{Alternate Keywords}.
666
667 A @code{typeof}-construct can be used anywhere a typedef name could be
668 used.  For example, you can use it in a declaration, in a cast, or inside
669 of @code{sizeof} or @code{typeof}.
670
671 The operand of @code{typeof} is evaluated for its side effects if and
672 only if it is an expression of variably modified type or the name of
673 such a type.
674
675 @code{typeof} is often useful in conjunction with the
676 statements-within-expressions feature.  Here is how the two together can
677 be used to define a safe ``maximum'' macro that operates on any
678 arithmetic type and evaluates each of its arguments exactly once:
679
680 @smallexample
681 #define max(a,b) \
682   (@{ typeof (a) _a = (a); \
683       typeof (b) _b = (b); \
684     _a > _b ? _a : _b; @})
685 @end smallexample
686
687 @cindex underscores in variables in macros
688 @cindex @samp{_} in variables in macros
689 @cindex local variables in macros
690 @cindex variables, local, in macros
691 @cindex macros, local variables in
692
693 The reason for using names that start with underscores for the local
694 variables is to avoid conflicts with variable names that occur within the
695 expressions that are substituted for @code{a} and @code{b}.  Eventually we
696 hope to design a new form of declaration syntax that allows you to declare
697 variables whose scopes start only after their initializers; this will be a
698 more reliable way to prevent such conflicts.
699
700 @noindent
701 Some more examples of the use of @code{typeof}:
702
703 @itemize @bullet
704 @item
705 This declares @code{y} with the type of what @code{x} points to.
706
707 @smallexample
708 typeof (*x) y;
709 @end smallexample
710
711 @item
712 This declares @code{y} as an array of such values.
713
714 @smallexample
715 typeof (*x) y[4];
716 @end smallexample
717
718 @item
719 This declares @code{y} as an array of pointers to characters:
720
721 @smallexample
722 typeof (typeof (char *)[4]) y;
723 @end smallexample
724
725 @noindent
726 It is equivalent to the following traditional C declaration:
727
728 @smallexample
729 char *y[4];
730 @end smallexample
731
732 To see the meaning of the declaration using @code{typeof}, and why it
733 might be a useful way to write, rewrite it with these macros:
734
735 @smallexample
736 #define pointer(T)  typeof(T *)
737 #define array(T, N) typeof(T [N])
738 @end smallexample
739
740 @noindent
741 Now the declaration can be rewritten this way:
742
743 @smallexample
744 array (pointer (char), 4) y;
745 @end smallexample
746
747 @noindent
748 Thus, @code{array (pointer (char), 4)} is the type of arrays of 4
749 pointers to @code{char}.
750 @end itemize
751
752 @emph{Compatibility Note:} In addition to @code{typeof}, GCC 2 supported
753 a more limited extension which permitted one to write
754
755 @smallexample
756 typedef @var{T} = @var{expr};
757 @end smallexample
758
759 @noindent
760 with the effect of declaring @var{T} to have the type of the expression
761 @var{expr}.  This extension does not work with GCC 3 (versions between
762 3.0 and 3.2 will crash; 3.2.1 and later give an error).  Code which
763 relies on it should be rewritten to use @code{typeof}:
764
765 @smallexample
766 typedef typeof(@var{expr}) @var{T};
767 @end smallexample
768
769 @noindent
770 This will work with all versions of GCC@.
771
772 @node Conditionals
773 @section Conditionals with Omitted Operands
774 @cindex conditional expressions, extensions
775 @cindex omitted middle-operands
776 @cindex middle-operands, omitted
777 @cindex extensions, @code{?:}
778 @cindex @code{?:} extensions
779
780 The middle operand in a conditional expression may be omitted.  Then
781 if the first operand is nonzero, its value is the value of the conditional
782 expression.
783
784 Therefore, the expression
785
786 @smallexample
787 x ? : y
788 @end smallexample
789
790 @noindent
791 has the value of @code{x} if that is nonzero; otherwise, the value of
792 @code{y}.
793
794 This example is perfectly equivalent to
795
796 @smallexample
797 x ? x : y
798 @end smallexample
799
800 @cindex side effect in @code{?:}
801 @cindex @code{?:} side effect
802 @noindent
803 In this simple case, the ability to omit the middle operand is not
804 especially useful.  When it becomes useful is when the first operand does,
805 or may (if it is a macro argument), contain a side effect.  Then repeating
806 the operand in the middle would perform the side effect twice.  Omitting
807 the middle operand uses the value already computed without the undesirable
808 effects of recomputing it.
809
810 @node __int128
811 @section 128-bits integers
812 @cindex @code{__int128} data types
813
814 As an extension the integer scalar type @code{__int128} is supported for
815 targets having an integer mode wide enough to hold 128-bit.
816 Simply write @code{__int128} for a signed 128-bit integer, or
817 @code{unsigned __int128} for an unsigned 128-bit integer.  There is no
818 support in GCC to express an integer constant of type @code{__int128}
819 for targets having @code{long long} integer with less then 128 bit width.
820
821 @node Long Long
822 @section Double-Word Integers
823 @cindex @code{long long} data types
824 @cindex double-word arithmetic
825 @cindex multiprecision arithmetic
826 @cindex @code{LL} integer suffix
827 @cindex @code{ULL} integer suffix
828
829 ISO C99 supports data types for integers that are at least 64 bits wide,
830 and as an extension GCC supports them in C90 mode and in C++.
831 Simply write @code{long long int} for a signed integer, or
832 @code{unsigned long long int} for an unsigned integer.  To make an
833 integer constant of type @code{long long int}, add the suffix @samp{LL}
834 to the integer.  To make an integer constant of type @code{unsigned long
835 long int}, add the suffix @samp{ULL} to the integer.
836
837 You can use these types in arithmetic like any other integer types.
838 Addition, subtraction, and bitwise boolean operations on these types
839 are open-coded on all types of machines.  Multiplication is open-coded
840 if the machine supports fullword-to-doubleword a widening multiply
841 instruction.  Division and shifts are open-coded only on machines that
842 provide special support.  The operations that are not open-coded use
843 special library routines that come with GCC@.
844
845 There may be pitfalls when you use @code{long long} types for function
846 arguments, unless you declare function prototypes.  If a function
847 expects type @code{int} for its argument, and you pass a value of type
848 @code{long long int}, confusion will result because the caller and the
849 subroutine will disagree about the number of bytes for the argument.
850 Likewise, if the function expects @code{long long int} and you pass
851 @code{int}.  The best way to avoid such problems is to use prototypes.
852
853 @node Complex
854 @section Complex Numbers
855 @cindex complex numbers
856 @cindex @code{_Complex} keyword
857 @cindex @code{__complex__} keyword
858
859 ISO C99 supports complex floating data types, and as an extension GCC
860 supports them in C90 mode and in C++, and supports complex integer data
861 types which are not part of ISO C99.  You can declare complex types
862 using the keyword @code{_Complex}.  As an extension, the older GNU
863 keyword @code{__complex__} is also supported.
864
865 For example, @samp{_Complex double x;} declares @code{x} as a
866 variable whose real part and imaginary part are both of type
867 @code{double}.  @samp{_Complex short int y;} declares @code{y} to
868 have real and imaginary parts of type @code{short int}; this is not
869 likely to be useful, but it shows that the set of complex types is
870 complete.
871
872 To write a constant with a complex data type, use the suffix @samp{i} or
873 @samp{j} (either one; they are equivalent).  For example, @code{2.5fi}
874 has type @code{_Complex float} and @code{3i} has type
875 @code{_Complex int}.  Such a constant always has a pure imaginary
876 value, but you can form any complex value you like by adding one to a
877 real constant.  This is a GNU extension; if you have an ISO C99
878 conforming C library (such as GNU libc), and want to construct complex
879 constants of floating type, you should include @code{<complex.h>} and
880 use the macros @code{I} or @code{_Complex_I} instead.
881
882 @cindex @code{__real__} keyword
883 @cindex @code{__imag__} keyword
884 To extract the real part of a complex-valued expression @var{exp}, write
885 @code{__real__ @var{exp}}.  Likewise, use @code{__imag__} to
886 extract the imaginary part.  This is a GNU extension; for values of
887 floating type, you should use the ISO C99 functions @code{crealf},
888 @code{creal}, @code{creall}, @code{cimagf}, @code{cimag} and
889 @code{cimagl}, declared in @code{<complex.h>} and also provided as
890 built-in functions by GCC@.
891
892 @cindex complex conjugation
893 The operator @samp{~} performs complex conjugation when used on a value
894 with a complex type.  This is a GNU extension; for values of
895 floating type, you should use the ISO C99 functions @code{conjf},
896 @code{conj} and @code{conjl}, declared in @code{<complex.h>} and also
897 provided as built-in functions by GCC@.
898
899 GCC can allocate complex automatic variables in a noncontiguous
900 fashion; it's even possible for the real part to be in a register while
901 the imaginary part is on the stack (or vice-versa).  Only the DWARF2
902 debug info format can represent this, so use of DWARF2 is recommended.
903 If you are using the stabs debug info format, GCC describes a noncontiguous
904 complex variable as if it were two separate variables of noncomplex type.
905 If the variable's actual name is @code{foo}, the two fictitious
906 variables are named @code{foo$real} and @code{foo$imag}.  You can
907 examine and set these two fictitious variables with your debugger.
908
909 @node Floating Types
910 @section Additional Floating Types
911 @cindex additional floating types
912 @cindex @code{__float80} data type
913 @cindex @code{__float128} data type
914 @cindex @code{w} floating point suffix
915 @cindex @code{q} floating point suffix
916 @cindex @code{W} floating point suffix
917 @cindex @code{Q} floating point suffix
918
919 As an extension, the GNU C compiler supports additional floating
920 types, @code{__float80} and @code{__float128} to support 80bit
921 (@code{XFmode}) and 128 bit (@code{TFmode}) floating types.
922 Support for additional types includes the arithmetic operators:
923 add, subtract, multiply, divide; unary arithmetic operators;
924 relational operators; equality operators; and conversions to and from
925 integer and other floating types.  Use a suffix @samp{w} or @samp{W}
926 in a literal constant of type @code{__float80} and @samp{q} or @samp{Q}
927 for @code{_float128}.  You can declare complex types using the
928 corresponding internal complex type, @code{XCmode} for @code{__float80}
929 type and @code{TCmode} for @code{__float128} type:
930
931 @smallexample
932 typedef _Complex float __attribute__((mode(TC))) _Complex128;
933 typedef _Complex float __attribute__((mode(XC))) _Complex80;
934 @end smallexample
935
936 Not all targets support additional floating point types.  @code{__float80}
937 and @code{__float128} types are supported on i386, x86_64 and ia64 targets.
938 The @code{__float128} type is supported on hppa HP-UX targets.
939
940 @node Half-Precision
941 @section Half-Precision Floating Point
942 @cindex half-precision floating point
943 @cindex @code{__fp16} data type
944
945 On ARM targets, GCC supports half-precision (16-bit) floating point via
946 the @code{__fp16} type.  You must enable this type explicitly
947 with the @option{-mfp16-format} command-line option in order to use it.
948
949 ARM supports two incompatible representations for half-precision
950 floating-point values.  You must choose one of the representations and
951 use it consistently in your program.
952
953 Specifying @option{-mfp16-format=ieee} selects the IEEE 754-2008 format.
954 This format can represent normalized values in the range of @math{2^{-14}} to 65504.
955 There are 11 bits of significand precision, approximately 3
956 decimal digits.
957
958 Specifying @option{-mfp16-format=alternative} selects the ARM
959 alternative format.  This representation is similar to the IEEE
960 format, but does not support infinities or NaNs.  Instead, the range
961 of exponents is extended, so that this format can represent normalized
962 values in the range of @math{2^{-14}} to 131008.
963
964 The @code{__fp16} type is a storage format only.  For purposes
965 of arithmetic and other operations, @code{__fp16} values in C or C++
966 expressions are automatically promoted to @code{float}.  In addition,
967 you cannot declare a function with a return value or parameters
968 of type @code{__fp16}.
969
970 Note that conversions from @code{double} to @code{__fp16}
971 involve an intermediate conversion to @code{float}.  Because
972 of rounding, this can sometimes produce a different result than a
973 direct conversion.
974
975 ARM provides hardware support for conversions between
976 @code{__fp16} and @code{float} values
977 as an extension to VFP and NEON (Advanced SIMD).  GCC generates
978 code using these hardware instructions if you compile with
979 options to select an FPU that provides them;
980 for example, @option{-mfpu=neon-fp16 -mfloat-abi=softfp},
981 in addition to the @option{-mfp16-format} option to select
982 a half-precision format.
983
984 Language-level support for the @code{__fp16} data type is
985 independent of whether GCC generates code using hardware floating-point
986 instructions.  In cases where hardware support is not specified, GCC
987 implements conversions between @code{__fp16} and @code{float} values
988 as library calls.
989
990 @node Decimal Float
991 @section Decimal Floating Types
992 @cindex decimal floating types
993 @cindex @code{_Decimal32} data type
994 @cindex @code{_Decimal64} data type
995 @cindex @code{_Decimal128} data type
996 @cindex @code{df} integer suffix
997 @cindex @code{dd} integer suffix
998 @cindex @code{dl} integer suffix
999 @cindex @code{DF} integer suffix
1000 @cindex @code{DD} integer suffix
1001 @cindex @code{DL} integer suffix
1002
1003 As an extension, the GNU C compiler supports decimal floating types as
1004 defined in the N1312 draft of ISO/IEC WDTR24732.  Support for decimal
1005 floating types in GCC will evolve as the draft technical report changes.
1006 Calling conventions for any target might also change.  Not all targets
1007 support decimal floating types.
1008
1009 The decimal floating types are @code{_Decimal32}, @code{_Decimal64}, and
1010 @code{_Decimal128}.  They use a radix of ten, unlike the floating types
1011 @code{float}, @code{double}, and @code{long double} whose radix is not
1012 specified by the C standard but is usually two.
1013
1014 Support for decimal floating types includes the arithmetic operators
1015 add, subtract, multiply, divide; unary arithmetic operators;
1016 relational operators; equality operators; and conversions to and from
1017 integer and other floating types.  Use a suffix @samp{df} or
1018 @samp{DF} in a literal constant of type @code{_Decimal32}, @samp{dd}
1019 or @samp{DD} for @code{_Decimal64}, and @samp{dl} or @samp{DL} for
1020 @code{_Decimal128}.
1021
1022 GCC support of decimal float as specified by the draft technical report
1023 is incomplete:
1024
1025 @itemize @bullet
1026 @item
1027 When the value of a decimal floating type cannot be represented in the
1028 integer type to which it is being converted, the result is undefined
1029 rather than the result value specified by the draft technical report.
1030
1031 @item
1032 GCC does not provide the C library functionality associated with
1033 @file{math.h}, @file{fenv.h}, @file{stdio.h}, @file{stdlib.h}, and
1034 @file{wchar.h}, which must come from a separate C library implementation.
1035 Because of this the GNU C compiler does not define macro
1036 @code{__STDC_DEC_FP__} to indicate that the implementation conforms to
1037 the technical report.
1038 @end itemize
1039
1040 Types @code{_Decimal32}, @code{_Decimal64}, and @code{_Decimal128}
1041 are supported by the DWARF2 debug information format.
1042
1043 @node Hex Floats
1044 @section Hex Floats
1045 @cindex hex floats
1046
1047 ISO C99 supports floating-point numbers written not only in the usual
1048 decimal notation, such as @code{1.55e1}, but also numbers such as
1049 @code{0x1.fp3} written in hexadecimal format.  As a GNU extension, GCC
1050 supports this in C90 mode (except in some cases when strictly
1051 conforming) and in C++.  In that format the
1052 @samp{0x} hex introducer and the @samp{p} or @samp{P} exponent field are
1053 mandatory.  The exponent is a decimal number that indicates the power of
1054 2 by which the significant part will be multiplied.  Thus @samp{0x1.f} is
1055 @tex
1056 $1 {15\over16}$,
1057 @end tex
1058 @ifnottex
1059 1 15/16,
1060 @end ifnottex
1061 @samp{p3} multiplies it by 8, and the value of @code{0x1.fp3}
1062 is the same as @code{1.55e1}.
1063
1064 Unlike for floating-point numbers in the decimal notation the exponent
1065 is always required in the hexadecimal notation.  Otherwise the compiler
1066 would not be able to resolve the ambiguity of, e.g., @code{0x1.f}.  This
1067 could mean @code{1.0f} or @code{1.9375} since @samp{f} is also the
1068 extension for floating-point constants of type @code{float}.
1069
1070 @node Fixed-Point
1071 @section Fixed-Point Types
1072 @cindex fixed-point types
1073 @cindex @code{_Fract} data type
1074 @cindex @code{_Accum} data type
1075 @cindex @code{_Sat} data type
1076 @cindex @code{hr} fixed-suffix
1077 @cindex @code{r} fixed-suffix
1078 @cindex @code{lr} fixed-suffix
1079 @cindex @code{llr} fixed-suffix
1080 @cindex @code{uhr} fixed-suffix
1081 @cindex @code{ur} fixed-suffix
1082 @cindex @code{ulr} fixed-suffix
1083 @cindex @code{ullr} fixed-suffix
1084 @cindex @code{hk} fixed-suffix
1085 @cindex @code{k} fixed-suffix
1086 @cindex @code{lk} fixed-suffix
1087 @cindex @code{llk} fixed-suffix
1088 @cindex @code{uhk} fixed-suffix
1089 @cindex @code{uk} fixed-suffix
1090 @cindex @code{ulk} fixed-suffix
1091 @cindex @code{ullk} fixed-suffix
1092 @cindex @code{HR} fixed-suffix
1093 @cindex @code{R} fixed-suffix
1094 @cindex @code{LR} fixed-suffix
1095 @cindex @code{LLR} fixed-suffix
1096 @cindex @code{UHR} fixed-suffix
1097 @cindex @code{UR} fixed-suffix
1098 @cindex @code{ULR} fixed-suffix
1099 @cindex @code{ULLR} fixed-suffix
1100 @cindex @code{HK} fixed-suffix
1101 @cindex @code{K} fixed-suffix
1102 @cindex @code{LK} fixed-suffix
1103 @cindex @code{LLK} fixed-suffix
1104 @cindex @code{UHK} fixed-suffix
1105 @cindex @code{UK} fixed-suffix
1106 @cindex @code{ULK} fixed-suffix
1107 @cindex @code{ULLK} fixed-suffix
1108
1109 As an extension, the GNU C compiler supports fixed-point types as
1110 defined in the N1169 draft of ISO/IEC DTR 18037.  Support for fixed-point
1111 types in GCC will evolve as the draft technical report changes.
1112 Calling conventions for any target might also change.  Not all targets
1113 support fixed-point types.
1114
1115 The fixed-point types are
1116 @code{short _Fract},
1117 @code{_Fract},
1118 @code{long _Fract},
1119 @code{long long _Fract},
1120 @code{unsigned short _Fract},
1121 @code{unsigned _Fract},
1122 @code{unsigned long _Fract},
1123 @code{unsigned long long _Fract},
1124 @code{_Sat short _Fract},
1125 @code{_Sat _Fract},
1126 @code{_Sat long _Fract},
1127 @code{_Sat long long _Fract},
1128 @code{_Sat unsigned short _Fract},
1129 @code{_Sat unsigned _Fract},
1130 @code{_Sat unsigned long _Fract},
1131 @code{_Sat unsigned long long _Fract},
1132 @code{short _Accum},
1133 @code{_Accum},
1134 @code{long _Accum},
1135 @code{long long _Accum},
1136 @code{unsigned short _Accum},
1137 @code{unsigned _Accum},
1138 @code{unsigned long _Accum},
1139 @code{unsigned long long _Accum},
1140 @code{_Sat short _Accum},
1141 @code{_Sat _Accum},
1142 @code{_Sat long _Accum},
1143 @code{_Sat long long _Accum},
1144 @code{_Sat unsigned short _Accum},
1145 @code{_Sat unsigned _Accum},
1146 @code{_Sat unsigned long _Accum},
1147 @code{_Sat unsigned long long _Accum}.
1148
1149 Fixed-point data values contain fractional and optional integral parts.
1150 The format of fixed-point data varies and depends on the target machine.
1151
1152 Support for fixed-point types includes:
1153 @itemize @bullet
1154 @item
1155 prefix and postfix increment and decrement operators (@code{++}, @code{--})
1156 @item
1157 unary arithmetic operators (@code{+}, @code{-}, @code{!})
1158 @item
1159 binary arithmetic operators (@code{+}, @code{-}, @code{*}, @code{/})
1160 @item
1161 binary shift operators (@code{<<}, @code{>>})
1162 @item
1163 relational operators (@code{<}, @code{<=}, @code{>=}, @code{>})
1164 @item
1165 equality operators (@code{==}, @code{!=})
1166 @item
1167 assignment operators (@code{+=}, @code{-=}, @code{*=}, @code{/=},
1168 @code{<<=}, @code{>>=})
1169 @item
1170 conversions to and from integer, floating-point, or fixed-point types
1171 @end itemize
1172
1173 Use a suffix in a fixed-point literal constant:
1174 @itemize
1175 @item @samp{hr} or @samp{HR} for @code{short _Fract} and
1176 @code{_Sat short _Fract}
1177 @item @samp{r} or @samp{R} for @code{_Fract} and @code{_Sat _Fract}
1178 @item @samp{lr} or @samp{LR} for @code{long _Fract} and
1179 @code{_Sat long _Fract}
1180 @item @samp{llr} or @samp{LLR} for @code{long long _Fract} and
1181 @code{_Sat long long _Fract}
1182 @item @samp{uhr} or @samp{UHR} for @code{unsigned short _Fract} and
1183 @code{_Sat unsigned short _Fract}
1184 @item @samp{ur} or @samp{UR} for @code{unsigned _Fract} and
1185 @code{_Sat unsigned _Fract}
1186 @item @samp{ulr} or @samp{ULR} for @code{unsigned long _Fract} and
1187 @code{_Sat unsigned long _Fract}
1188 @item @samp{ullr} or @samp{ULLR} for @code{unsigned long long _Fract}
1189 and @code{_Sat unsigned long long _Fract}
1190 @item @samp{hk} or @samp{HK} for @code{short _Accum} and
1191 @code{_Sat short _Accum}
1192 @item @samp{k} or @samp{K} for @code{_Accum} and @code{_Sat _Accum}
1193 @item @samp{lk} or @samp{LK} for @code{long _Accum} and
1194 @code{_Sat long _Accum}
1195 @item @samp{llk} or @samp{LLK} for @code{long long _Accum} and
1196 @code{_Sat long long _Accum}
1197 @item @samp{uhk} or @samp{UHK} for @code{unsigned short _Accum} and
1198 @code{_Sat unsigned short _Accum}
1199 @item @samp{uk} or @samp{UK} for @code{unsigned _Accum} and
1200 @code{_Sat unsigned _Accum}
1201 @item @samp{ulk} or @samp{ULK} for @code{unsigned long _Accum} and
1202 @code{_Sat unsigned long _Accum}
1203 @item @samp{ullk} or @samp{ULLK} for @code{unsigned long long _Accum}
1204 and @code{_Sat unsigned long long _Accum}
1205 @end itemize
1206
1207 GCC support of fixed-point types as specified by the draft technical report
1208 is incomplete:
1209
1210 @itemize @bullet
1211 @item
1212 Pragmas to control overflow and rounding behaviors are not implemented.
1213 @end itemize
1214
1215 Fixed-point types are supported by the DWARF2 debug information format.
1216
1217 @node Named Address Spaces
1218 @section Named Address Spaces
1219 @cindex Named Address Spaces
1220
1221 As an extension, the GNU C compiler supports named address spaces as
1222 defined in the N1275 draft of ISO/IEC DTR 18037.  Support for named
1223 address spaces in GCC will evolve as the draft technical report
1224 changes.  Calling conventions for any target might also change.  At
1225 present, only the AVR, SPU, M32C, and RL78 targets support address
1226 spaces other than the generic address space.
1227
1228 Address space identifiers may be used exactly like any other C type
1229 qualifier (e.g., @code{const} or @code{volatile}).  See the N1275
1230 document for more details.
1231
1232 @anchor{AVR Named Address Spaces}
1233 @subsection AVR Named Address Spaces
1234
1235 On the AVR target, there are several address spaces that can be used
1236 in order to put read-only data into the flash memory and access that
1237 data by means of the special instructions @code{LPM} or @code{ELPM}
1238 needed to read from flash.
1239
1240 Per default, any data including read-only data is located in RAM
1241 (the generic address space) so that non-generic address spaces are
1242 needed to locate read-only data in flash memory
1243 @emph{and} to generate the right instructions to access this data
1244 without using (inline) assembler code.
1245
1246 @table @code
1247 @item __flash
1248 @cindex @code{__flash} AVR Named Address Spaces
1249 The @code{__flash} qualifier will locate data in the
1250 @code{.progmem.data} section. Data will be read using the @code{LPM}
1251 instruction. Pointers to this address space are 16 bits wide.
1252
1253 @item __flash1
1254 @item __flash2
1255 @item __flash3
1256 @item __flash4
1257 @item __flash5
1258 @cindex @code{__flash1} AVR Named Address Spaces
1259 @cindex @code{__flash2} AVR Named Address Spaces
1260 @cindex @code{__flash3} AVR Named Address Spaces
1261 @cindex @code{__flash4} AVR Named Address Spaces
1262 @cindex @code{__flash5} AVR Named Address Spaces
1263 These are 16-bit address spaces locating data in section
1264 @code{.progmem@var{N}.data} where @var{N} refers to
1265 address space @code{__flash@var{N}}.
1266 The compiler will set the @code{RAMPZ} segment register approptiately 
1267 before reading data by means of the @code{ELPM} instruction.
1268
1269 On devices with less 64@tie{}kiB flash segments as indicated by the address
1270 space, the compiler will cut down the segment number to a number the
1271 device actually supports. Counting starts at@tie{}@code{0}
1272 for space @code{__flash}. For example, if you access address space
1273 @code{__flash3} on an ATmega128 device with two 64@tie{}kiB flash segments,
1274 the compiler will generate a read from @code{__flash1}, i.e.@: it
1275 will load @code{RAMPZ} with@tie{}@code{1} before reading.
1276
1277 @item __memx
1278 @cindex @code{__memx} AVR Named Address Spaces
1279 This is a 24-bit address space that linearizes flash and RAM:
1280 If the high bit of the address is set, data is read from
1281 RAM using the lower two bytes as RAM address.
1282 If the high bit of the address is clear, data is read from flash
1283 with @code{RAMPZ} set according to the high byte of the address.
1284
1285 Objects in this address space will be located in @code{.progmem.data}.
1286 @end table
1287
1288 @b{Example}
1289
1290 @example
1291 char my_read (const __flash char ** p)
1292 @{
1293     /* p is a pointer to RAM that points to a pointer to flash.
1294        The first indirection of p will read that flash pointer
1295        from RAM and the second indirection reads a char from this
1296        flash address.  */
1297
1298     return **p;
1299 @}
1300
1301 /* Locate array[] in flash memory */
1302 const __flash int array[] = @{ 3, 5, 7, 11, 13, 17, 19 @};
1303
1304 int i = 1;
1305
1306 int main (void)
1307 @{
1308    /* Return 17 by reading from flash memory */
1309    return array[array[i]];
1310 @}
1311 @end example
1312
1313 For each named address space supported by avr-gcc there is an equally
1314 named but uppercase built-in macro defined. 
1315 The purpose is to facilitate testing if respective address space
1316 support is available or not:
1317
1318 @example
1319 #ifdef __FLASH
1320 const __flash int var = 1;
1321
1322 int read_i (void)
1323 @{
1324     return i;
1325 @}
1326 #else
1327 #include <avr/pgmspace.h> /* From avr-libc */
1328
1329 const int var PROGMEM = 1;
1330
1331 int read_i (void)
1332 @{
1333     return (int) pgm_read_word (&i);
1334 @}
1335 #endif /* __FLASH */
1336 @end example
1337
1338 Notice that attribute @ref{AVR Variable Attributes,@code{progmem}}
1339 locates data in flash but
1340 accesses to these data will read from generic address space, i.e.@:
1341 from RAM,
1342 so that you need special accessors like @code{pgm_read_byte}
1343 from @w{@uref{http://nongnu.org/avr-libc/user-manual,avr-libc}}.
1344
1345 @b{Limitations and caveats}
1346
1347 @itemize
1348 @item
1349 Reading across the 64@tie{}KiB section boundary of
1350 the @code{__flash} or @code{__flash@var{N}} address spaces
1351 will show undefined behaviour. The only address space that
1352 supports reading across the 64@tie{}KiB flash segment boundaries is
1353 @code{__memx}.
1354
1355 @item
1356 If you use one if the @code{__flash@var{N}} address spaces
1357 you will have to arrange your linker skript to locate the
1358 @code{.progmem@var{N}.data} sections according to your needs.
1359
1360 @item
1361 Any data or pointers to the non-generic address spaces must
1362 be qualified as @code{const}, i.e.@: as read-only data.
1363 This still applies if the data in one of these address
1364 spaces like software version number or calibration lookup table are intended to
1365 be changed after load time by, say, a boot loader. In this case
1366 the right qualification is @code{const} @code{volatile} so that the compiler
1367 must not optimize away known values or insert them
1368 as immediates into operands of instructions.
1369
1370 @item
1371 Code like the following is not yet supported because of missing
1372 support in avr-binutils,
1373 see @w{@uref{http://sourceware.org/PR13503,PR13503}}.
1374 @example
1375 extern const __memx char foo;
1376 const __memx void *pfoo = &foo;
1377 @end example
1378 The code will throw an assembler warning and the high byte of
1379 @code{pfoo} will be initialized with@tie{}@code{0}, i.e.@: the
1380 initialization will be as if @code{foo} was located in the first
1381 64@tie{}KiB chunk of flash.
1382
1383 @end itemize
1384
1385 @subsection M32C Named Address Spaces
1386 @cindex @code{__far} M32C Named Address Spaces
1387
1388 On the M32C target, with the R8C and M16C cpu variants, variables
1389 qualified with @code{__far} are accessed using 32-bit addresses in
1390 order to access memory beyond the first 64@tie{}Ki bytes.  If
1391 @code{__far} is used with the M32CM or M32C cpu variants, it has no
1392 effect.
1393
1394 @subsection RL78 Named Address Spaces
1395 @cindex @code{__far} RL78 Named Address Spaces
1396
1397 On the RL78 target, variables qualified with @code{__far} are accessed
1398 with 32-bit pointers (20-bit addresses) rather than the default 16-bit
1399 addresses.  Non-far variables are assumed to appear in the topmost
1400 64@tie{}KiB of the address space.
1401
1402 @subsection SPU Named Address Spaces
1403 @cindex @code{__ea} SPU Named Address Spaces
1404
1405 On the SPU target variables may be declared as
1406 belonging to another address space by qualifying the type with the
1407 @code{__ea} address space identifier:
1408
1409 @smallexample
1410 extern int __ea i;
1411 @end smallexample
1412
1413 When the variable @code{i} is accessed, the compiler will generate
1414 special code to access this variable.  It may use runtime library
1415 support, or generate special machine instructions to access that address
1416 space.
1417
1418 @node Zero Length
1419 @section Arrays of Length Zero
1420 @cindex arrays of length zero
1421 @cindex zero-length arrays
1422 @cindex length-zero arrays
1423 @cindex flexible array members
1424
1425 Zero-length arrays are allowed in GNU C@.  They are very useful as the
1426 last element of a structure which is really a header for a variable-length
1427 object:
1428
1429 @smallexample
1430 struct line @{
1431   int length;
1432   char contents[0];
1433 @};
1434
1435 struct line *thisline = (struct line *)
1436   malloc (sizeof (struct line) + this_length);
1437 thisline->length = this_length;
1438 @end smallexample
1439
1440 In ISO C90, you would have to give @code{contents} a length of 1, which
1441 means either you waste space or complicate the argument to @code{malloc}.
1442
1443 In ISO C99, you would use a @dfn{flexible array member}, which is
1444 slightly different in syntax and semantics:
1445
1446 @itemize @bullet
1447 @item
1448 Flexible array members are written as @code{contents[]} without
1449 the @code{0}.
1450
1451 @item
1452 Flexible array members have incomplete type, and so the @code{sizeof}
1453 operator may not be applied.  As a quirk of the original implementation
1454 of zero-length arrays, @code{sizeof} evaluates to zero.
1455
1456 @item
1457 Flexible array members may only appear as the last member of a
1458 @code{struct} that is otherwise non-empty.
1459
1460 @item
1461 A structure containing a flexible array member, or a union containing
1462 such a structure (possibly recursively), may not be a member of a
1463 structure or an element of an array.  (However, these uses are
1464 permitted by GCC as extensions.)
1465 @end itemize
1466
1467 GCC versions before 3.0 allowed zero-length arrays to be statically
1468 initialized, as if they were flexible arrays.  In addition to those
1469 cases that were useful, it also allowed initializations in situations
1470 that would corrupt later data.  Non-empty initialization of zero-length
1471 arrays is now treated like any case where there are more initializer
1472 elements than the array holds, in that a suitable warning about "excess
1473 elements in array" is given, and the excess elements (all of them, in
1474 this case) are ignored.
1475
1476 Instead GCC allows static initialization of flexible array members.
1477 This is equivalent to defining a new structure containing the original
1478 structure followed by an array of sufficient size to contain the data.
1479 I.e.@: in the following, @code{f1} is constructed as if it were declared
1480 like @code{f2}.
1481
1482 @smallexample
1483 struct f1 @{
1484   int x; int y[];
1485 @} f1 = @{ 1, @{ 2, 3, 4 @} @};
1486
1487 struct f2 @{
1488   struct f1 f1; int data[3];
1489 @} f2 = @{ @{ 1 @}, @{ 2, 3, 4 @} @};
1490 @end smallexample
1491
1492 @noindent
1493 The convenience of this extension is that @code{f1} has the desired
1494 type, eliminating the need to consistently refer to @code{f2.f1}.
1495
1496 This has symmetry with normal static arrays, in that an array of
1497 unknown size is also written with @code{[]}.
1498
1499 Of course, this extension only makes sense if the extra data comes at
1500 the end of a top-level object, as otherwise we would be overwriting
1501 data at subsequent offsets.  To avoid undue complication and confusion
1502 with initialization of deeply nested arrays, we simply disallow any
1503 non-empty initialization except when the structure is the top-level
1504 object.  For example:
1505
1506 @smallexample
1507 struct foo @{ int x; int y[]; @};
1508 struct bar @{ struct foo z; @};
1509
1510 struct foo a = @{ 1, @{ 2, 3, 4 @} @};        // @r{Valid.}
1511 struct bar b = @{ @{ 1, @{ 2, 3, 4 @} @} @};    // @r{Invalid.}
1512 struct bar c = @{ @{ 1, @{ @} @} @};            // @r{Valid.}
1513 struct foo d[1] = @{ @{ 1 @{ 2, 3, 4 @} @} @};  // @r{Invalid.}
1514 @end smallexample
1515
1516 @node Empty Structures
1517 @section Structures With No Members
1518 @cindex empty structures
1519 @cindex zero-size structures
1520
1521 GCC permits a C structure to have no members:
1522
1523 @smallexample
1524 struct empty @{
1525 @};
1526 @end smallexample
1527
1528 The structure will have size zero.  In C++, empty structures are part
1529 of the language.  G++ treats empty structures as if they had a single
1530 member of type @code{char}.
1531
1532 @node Variable Length
1533 @section Arrays of Variable Length
1534 @cindex variable-length arrays
1535 @cindex arrays of variable length
1536 @cindex VLAs
1537
1538 Variable-length automatic arrays are allowed in ISO C99, and as an
1539 extension GCC accepts them in C90 mode and in C++.  These arrays are
1540 declared like any other automatic arrays, but with a length that is not
1541 a constant expression.  The storage is allocated at the point of
1542 declaration and deallocated when the brace-level is exited.  For
1543 example:
1544
1545 @smallexample
1546 FILE *
1547 concat_fopen (char *s1, char *s2, char *mode)
1548 @{
1549   char str[strlen (s1) + strlen (s2) + 1];
1550   strcpy (str, s1);
1551   strcat (str, s2);
1552   return fopen (str, mode);
1553 @}
1554 @end smallexample
1555
1556 @cindex scope of a variable length array
1557 @cindex variable-length array scope
1558 @cindex deallocating variable length arrays
1559 Jumping or breaking out of the scope of the array name deallocates the
1560 storage.  Jumping into the scope is not allowed; you get an error
1561 message for it.
1562
1563 @cindex @code{alloca} vs variable-length arrays
1564 You can use the function @code{alloca} to get an effect much like
1565 variable-length arrays.  The function @code{alloca} is available in
1566 many other C implementations (but not in all).  On the other hand,
1567 variable-length arrays are more elegant.
1568
1569 There are other differences between these two methods.  Space allocated
1570 with @code{alloca} exists until the containing @emph{function} returns.
1571 The space for a variable-length array is deallocated as soon as the array
1572 name's scope ends.  (If you use both variable-length arrays and
1573 @code{alloca} in the same function, deallocation of a variable-length array
1574 will also deallocate anything more recently allocated with @code{alloca}.)
1575
1576 You can also use variable-length arrays as arguments to functions:
1577
1578 @smallexample
1579 struct entry
1580 tester (int len, char data[len][len])
1581 @{
1582   /* @r{@dots{}} */
1583 @}
1584 @end smallexample
1585
1586 The length of an array is computed once when the storage is allocated
1587 and is remembered for the scope of the array in case you access it with
1588 @code{sizeof}.
1589
1590 If you want to pass the array first and the length afterward, you can
1591 use a forward declaration in the parameter list---another GNU extension.
1592
1593 @smallexample
1594 struct entry
1595 tester (int len; char data[len][len], int len)
1596 @{
1597   /* @r{@dots{}} */
1598 @}
1599 @end smallexample
1600
1601 @cindex parameter forward declaration
1602 The @samp{int len} before the semicolon is a @dfn{parameter forward
1603 declaration}, and it serves the purpose of making the name @code{len}
1604 known when the declaration of @code{data} is parsed.
1605
1606 You can write any number of such parameter forward declarations in the
1607 parameter list.  They can be separated by commas or semicolons, but the
1608 last one must end with a semicolon, which is followed by the ``real''
1609 parameter declarations.  Each forward declaration must match a ``real''
1610 declaration in parameter name and data type.  ISO C99 does not support
1611 parameter forward declarations.
1612
1613 @node Variadic Macros
1614 @section Macros with a Variable Number of Arguments.
1615 @cindex variable number of arguments
1616 @cindex macro with variable arguments
1617 @cindex rest argument (in macro)
1618 @cindex variadic macros
1619
1620 In the ISO C standard of 1999, a macro can be declared to accept a
1621 variable number of arguments much as a function can.  The syntax for
1622 defining the macro is similar to that of a function.  Here is an
1623 example:
1624
1625 @smallexample
1626 #define debug(format, ...) fprintf (stderr, format, __VA_ARGS__)
1627 @end smallexample
1628
1629 Here @samp{@dots{}} is a @dfn{variable argument}.  In the invocation of
1630 such a macro, it represents the zero or more tokens until the closing
1631 parenthesis that ends the invocation, including any commas.  This set of
1632 tokens replaces the identifier @code{__VA_ARGS__} in the macro body
1633 wherever it appears.  See the CPP manual for more information.
1634
1635 GCC has long supported variadic macros, and used a different syntax that
1636 allowed you to give a name to the variable arguments just like any other
1637 argument.  Here is an example:
1638
1639 @smallexample
1640 #define debug(format, args...) fprintf (stderr, format, args)
1641 @end smallexample
1642
1643 This is in all ways equivalent to the ISO C example above, but arguably
1644 more readable and descriptive.
1645
1646 GNU CPP has two further variadic macro extensions, and permits them to
1647 be used with either of the above forms of macro definition.
1648
1649 In standard C, you are not allowed to leave the variable argument out
1650 entirely; but you are allowed to pass an empty argument.  For example,
1651 this invocation is invalid in ISO C, because there is no comma after
1652 the string:
1653
1654 @smallexample
1655 debug ("A message")
1656 @end smallexample
1657
1658 GNU CPP permits you to completely omit the variable arguments in this
1659 way.  In the above examples, the compiler would complain, though since
1660 the expansion of the macro still has the extra comma after the format
1661 string.
1662
1663 To help solve this problem, CPP behaves specially for variable arguments
1664 used with the token paste operator, @samp{##}.  If instead you write
1665
1666 @smallexample
1667 #define debug(format, ...) fprintf (stderr, format, ## __VA_ARGS__)
1668 @end smallexample
1669
1670 and if the variable arguments are omitted or empty, the @samp{##}
1671 operator causes the preprocessor to remove the comma before it.  If you
1672 do provide some variable arguments in your macro invocation, GNU CPP
1673 does not complain about the paste operation and instead places the
1674 variable arguments after the comma.  Just like any other pasted macro
1675 argument, these arguments are not macro expanded.
1676
1677 @node Escaped Newlines
1678 @section Slightly Looser Rules for Escaped Newlines
1679 @cindex escaped newlines
1680 @cindex newlines (escaped)
1681
1682 Recently, the preprocessor has relaxed its treatment of escaped
1683 newlines.  Previously, the newline had to immediately follow a
1684 backslash.  The current implementation allows whitespace in the form
1685 of spaces, horizontal and vertical tabs, and form feeds between the
1686 backslash and the subsequent newline.  The preprocessor issues a
1687 warning, but treats it as a valid escaped newline and combines the two
1688 lines to form a single logical line.  This works within comments and
1689 tokens, as well as between tokens.  Comments are @emph{not} treated as
1690 whitespace for the purposes of this relaxation, since they have not
1691 yet been replaced with spaces.
1692
1693 @node Subscripting
1694 @section Non-Lvalue Arrays May Have Subscripts
1695 @cindex subscripting
1696 @cindex arrays, non-lvalue
1697
1698 @cindex subscripting and function values
1699 In ISO C99, arrays that are not lvalues still decay to pointers, and
1700 may be subscripted, although they may not be modified or used after
1701 the next sequence point and the unary @samp{&} operator may not be
1702 applied to them.  As an extension, GCC allows such arrays to be
1703 subscripted in C90 mode, though otherwise they do not decay to
1704 pointers outside C99 mode.  For example,
1705 this is valid in GNU C though not valid in C90:
1706
1707 @smallexample
1708 @group
1709 struct foo @{int a[4];@};
1710
1711 struct foo f();
1712
1713 bar (int index)
1714 @{
1715   return f().a[index];
1716 @}
1717 @end group
1718 @end smallexample
1719
1720 @node Pointer Arith
1721 @section Arithmetic on @code{void}- and Function-Pointers
1722 @cindex void pointers, arithmetic
1723 @cindex void, size of pointer to
1724 @cindex function pointers, arithmetic
1725 @cindex function, size of pointer to
1726
1727 In GNU C, addition and subtraction operations are supported on pointers to
1728 @code{void} and on pointers to functions.  This is done by treating the
1729 size of a @code{void} or of a function as 1.
1730
1731 A consequence of this is that @code{sizeof} is also allowed on @code{void}
1732 and on function types, and returns 1.
1733
1734 @opindex Wpointer-arith
1735 The option @option{-Wpointer-arith} requests a warning if these extensions
1736 are used.
1737
1738 @node Initializers
1739 @section Non-Constant Initializers
1740 @cindex initializers, non-constant
1741 @cindex non-constant initializers
1742
1743 As in standard C++ and ISO C99, the elements of an aggregate initializer for an
1744 automatic variable are not required to be constant expressions in GNU C@.
1745 Here is an example of an initializer with run-time varying elements:
1746
1747 @smallexample
1748 foo (float f, float g)
1749 @{
1750   float beat_freqs[2] = @{ f-g, f+g @};
1751   /* @r{@dots{}} */
1752 @}
1753 @end smallexample
1754
1755 @node Compound Literals
1756 @section Compound Literals
1757 @cindex constructor expressions
1758 @cindex initializations in expressions
1759 @cindex structures, constructor expression
1760 @cindex expressions, constructor
1761 @cindex compound literals
1762 @c The GNU C name for what C99 calls compound literals was "constructor expressions".
1763
1764 ISO C99 supports compound literals.  A compound literal looks like
1765 a cast containing an initializer.  Its value is an object of the
1766 type specified in the cast, containing the elements specified in
1767 the initializer; it is an lvalue.  As an extension, GCC supports
1768 compound literals in C90 mode and in C++.
1769
1770 Usually, the specified type is a structure.  Assume that
1771 @code{struct foo} and @code{structure} are declared as shown:
1772
1773 @smallexample
1774 struct foo @{int a; char b[2];@} structure;
1775 @end smallexample
1776
1777 @noindent
1778 Here is an example of constructing a @code{struct foo} with a compound literal:
1779
1780 @smallexample
1781 structure = ((struct foo) @{x + y, 'a', 0@});
1782 @end smallexample
1783
1784 @noindent
1785 This is equivalent to writing the following:
1786
1787 @smallexample
1788 @{
1789   struct foo temp = @{x + y, 'a', 0@};
1790   structure = temp;
1791 @}
1792 @end smallexample
1793
1794 You can also construct an array.  If all the elements of the compound literal
1795 are (made up of) simple constant expressions, suitable for use in
1796 initializers of objects of static storage duration, then the compound
1797 literal can be coerced to a pointer to its first element and used in
1798 such an initializer, as shown here:
1799
1800 @smallexample
1801 char **foo = (char *[]) @{ "x", "y", "z" @};
1802 @end smallexample
1803
1804 Compound literals for scalar types and union types are
1805 also allowed, but then the compound literal is equivalent
1806 to a cast.
1807
1808 As a GNU extension, GCC allows initialization of objects with static storage
1809 duration by compound literals (which is not possible in ISO C99, because
1810 the initializer is not a constant).
1811 It is handled as if the object was initialized only with the bracket
1812 enclosed list if the types of the compound literal and the object match.
1813 The initializer list of the compound literal must be constant.
1814 If the object being initialized has array type of unknown size, the size is
1815 determined by compound literal size.
1816
1817 @smallexample
1818 static struct foo x = (struct foo) @{1, 'a', 'b'@};
1819 static int y[] = (int []) @{1, 2, 3@};
1820 static int z[] = (int [3]) @{1@};
1821 @end smallexample
1822
1823 @noindent
1824 The above lines are equivalent to the following:
1825 @smallexample
1826 static struct foo x = @{1, 'a', 'b'@};
1827 static int y[] = @{1, 2, 3@};
1828 static int z[] = @{1, 0, 0@};
1829 @end smallexample
1830
1831 @node Designated Inits
1832 @section Designated Initializers
1833 @cindex initializers with labeled elements
1834 @cindex labeled elements in initializers
1835 @cindex case labels in initializers
1836 @cindex designated initializers
1837
1838 Standard C90 requires the elements of an initializer to appear in a fixed
1839 order, the same as the order of the elements in the array or structure
1840 being initialized.
1841
1842 In ISO C99 you can give the elements in any order, specifying the array
1843 indices or structure field names they apply to, and GNU C allows this as
1844 an extension in C90 mode as well.  This extension is not
1845 implemented in GNU C++.
1846
1847 To specify an array index, write
1848 @samp{[@var{index}] =} before the element value.  For example,
1849
1850 @smallexample
1851 int a[6] = @{ [4] = 29, [2] = 15 @};
1852 @end smallexample
1853
1854 @noindent
1855 is equivalent to
1856
1857 @smallexample
1858 int a[6] = @{ 0, 0, 15, 0, 29, 0 @};
1859 @end smallexample
1860
1861 @noindent
1862 The index values must be constant expressions, even if the array being
1863 initialized is automatic.
1864
1865 An alternative syntax for this which has been obsolete since GCC 2.5 but
1866 GCC still accepts is to write @samp{[@var{index}]} before the element
1867 value, with no @samp{=}.
1868
1869 To initialize a range of elements to the same value, write
1870 @samp{[@var{first} ... @var{last}] = @var{value}}.  This is a GNU
1871 extension.  For example,
1872
1873 @smallexample
1874 int widths[] = @{ [0 ... 9] = 1, [10 ... 99] = 2, [100] = 3 @};
1875 @end smallexample
1876
1877 @noindent
1878 If the value in it has side-effects, the side-effects will happen only once,
1879 not for each initialized field by the range initializer.
1880
1881 @noindent
1882 Note that the length of the array is the highest value specified
1883 plus one.
1884
1885 In a structure initializer, specify the name of a field to initialize
1886 with @samp{.@var{fieldname} =} before the element value.  For example,
1887 given the following structure,
1888
1889 @smallexample
1890 struct point @{ int x, y; @};
1891 @end smallexample
1892
1893 @noindent
1894 the following initialization
1895
1896 @smallexample
1897 struct point p = @{ .y = yvalue, .x = xvalue @};
1898 @end smallexample
1899
1900 @noindent
1901 is equivalent to
1902
1903 @smallexample
1904 struct point p = @{ xvalue, yvalue @};
1905 @end smallexample
1906
1907 Another syntax which has the same meaning, obsolete since GCC 2.5, is
1908 @samp{@var{fieldname}:}, as shown here:
1909
1910 @smallexample
1911 struct point p = @{ y: yvalue, x: xvalue @};
1912 @end smallexample
1913
1914 @cindex designators
1915 The @samp{[@var{index}]} or @samp{.@var{fieldname}} is known as a
1916 @dfn{designator}.  You can also use a designator (or the obsolete colon
1917 syntax) when initializing a union, to specify which element of the union
1918 should be used.  For example,
1919
1920 @smallexample
1921 union foo @{ int i; double d; @};
1922
1923 union foo f = @{ .d = 4 @};
1924 @end smallexample
1925
1926 @noindent
1927 will convert 4 to a @code{double} to store it in the union using
1928 the second element.  By contrast, casting 4 to type @code{union foo}
1929 would store it into the union as the integer @code{i}, since it is
1930 an integer.  (@xref{Cast to Union}.)
1931
1932 You can combine this technique of naming elements with ordinary C
1933 initialization of successive elements.  Each initializer element that
1934 does not have a designator applies to the next consecutive element of the
1935 array or structure.  For example,
1936
1937 @smallexample
1938 int a[6] = @{ [1] = v1, v2, [4] = v4 @};
1939 @end smallexample
1940
1941 @noindent
1942 is equivalent to
1943
1944 @smallexample
1945 int a[6] = @{ 0, v1, v2, 0, v4, 0 @};
1946 @end smallexample
1947
1948 Labeling the elements of an array initializer is especially useful
1949 when the indices are characters or belong to an @code{enum} type.
1950 For example:
1951
1952 @smallexample
1953 int whitespace[256]
1954   = @{ [' '] = 1, ['\t'] = 1, ['\h'] = 1,
1955       ['\f'] = 1, ['\n'] = 1, ['\r'] = 1 @};
1956 @end smallexample
1957
1958 @cindex designator lists
1959 You can also write a series of @samp{.@var{fieldname}} and
1960 @samp{[@var{index}]} designators before an @samp{=} to specify a
1961 nested subobject to initialize; the list is taken relative to the
1962 subobject corresponding to the closest surrounding brace pair.  For
1963 example, with the @samp{struct point} declaration above:
1964
1965 @smallexample
1966 struct point ptarray[10] = @{ [2].y = yv2, [2].x = xv2, [0].x = xv0 @};
1967 @end smallexample
1968
1969 @noindent
1970 If the same field is initialized multiple times, it will have value from
1971 the last initialization.  If any such overridden initialization has
1972 side-effect, it is unspecified whether the side-effect happens or not.
1973 Currently, GCC will discard them and issue a warning.
1974
1975 @node Case Ranges
1976 @section Case Ranges
1977 @cindex case ranges
1978 @cindex ranges in case statements
1979
1980 You can specify a range of consecutive values in a single @code{case} label,
1981 like this:
1982
1983 @smallexample
1984 case @var{low} ... @var{high}:
1985 @end smallexample
1986
1987 @noindent
1988 This has the same effect as the proper number of individual @code{case}
1989 labels, one for each integer value from @var{low} to @var{high}, inclusive.
1990
1991 This feature is especially useful for ranges of ASCII character codes:
1992
1993 @smallexample
1994 case 'A' ... 'Z':
1995 @end smallexample
1996
1997 @strong{Be careful:} Write spaces around the @code{...}, for otherwise
1998 it may be parsed wrong when you use it with integer values.  For example,
1999 write this:
2000
2001 @smallexample
2002 case 1 ... 5:
2003 @end smallexample
2004
2005 @noindent
2006 rather than this:
2007
2008 @smallexample
2009 case 1...5:
2010 @end smallexample
2011
2012 @node Cast to Union
2013 @section Cast to a Union Type
2014 @cindex cast to a union
2015 @cindex union, casting to a
2016
2017 A cast to union type is similar to other casts, except that the type
2018 specified is a union type.  You can specify the type either with
2019 @code{union @var{tag}} or with a typedef name.  A cast to union is actually
2020 a constructor though, not a cast, and hence does not yield an lvalue like
2021 normal casts.  (@xref{Compound Literals}.)
2022
2023 The types that may be cast to the union type are those of the members
2024 of the union.  Thus, given the following union and variables:
2025
2026 @smallexample
2027 union foo @{ int i; double d; @};
2028 int x;
2029 double y;
2030 @end smallexample
2031
2032 @noindent
2033 both @code{x} and @code{y} can be cast to type @code{union foo}.
2034
2035 Using the cast as the right-hand side of an assignment to a variable of
2036 union type is equivalent to storing in a member of the union:
2037
2038 @smallexample
2039 union foo u;
2040 /* @r{@dots{}} */
2041 u = (union foo) x  @equiv{}  u.i = x
2042 u = (union foo) y  @equiv{}  u.d = y
2043 @end smallexample
2044
2045 You can also use the union cast as a function argument:
2046
2047 @smallexample
2048 void hack (union foo);
2049 /* @r{@dots{}} */
2050 hack ((union foo) x);
2051 @end smallexample
2052
2053 @node Mixed Declarations
2054 @section Mixed Declarations and Code
2055 @cindex mixed declarations and code
2056 @cindex declarations, mixed with code
2057 @cindex code, mixed with declarations
2058
2059 ISO C99 and ISO C++ allow declarations and code to be freely mixed
2060 within compound statements.  As an extension, GCC also allows this in
2061 C90 mode.  For example, you could do:
2062
2063 @smallexample
2064 int i;
2065 /* @r{@dots{}} */
2066 i++;
2067 int j = i + 2;
2068 @end smallexample
2069
2070 Each identifier is visible from where it is declared until the end of
2071 the enclosing block.
2072
2073 @node Function Attributes
2074 @section Declaring Attributes of Functions
2075 @cindex function attributes
2076 @cindex declaring attributes of functions
2077 @cindex functions that never return
2078 @cindex functions that return more than once
2079 @cindex functions that have no side effects
2080 @cindex functions in arbitrary sections
2081 @cindex functions that behave like malloc
2082 @cindex @code{volatile} applied to function
2083 @cindex @code{const} applied to function
2084 @cindex functions with @code{printf}, @code{scanf}, @code{strftime} or @code{strfmon} style arguments
2085 @cindex functions with non-null pointer arguments
2086 @cindex functions that are passed arguments in registers on the 386
2087 @cindex functions that pop the argument stack on the 386
2088 @cindex functions that do not pop the argument stack on the 386
2089 @cindex functions that have different compilation options on the 386
2090 @cindex functions that have different optimization options
2091 @cindex functions that are dynamically resolved
2092
2093 In GNU C, you declare certain things about functions called in your program
2094 which help the compiler optimize function calls and check your code more
2095 carefully.
2096
2097 The keyword @code{__attribute__} allows you to specify special
2098 attributes when making a declaration.  This keyword is followed by an
2099 attribute specification inside double parentheses.  The following
2100 attributes are currently defined for functions on all targets:
2101 @code{aligned}, @code{alloc_size}, @code{noreturn},
2102 @code{returns_twice}, @code{noinline}, @code{noclone},
2103 @code{always_inline}, @code{flatten}, @code{pure}, @code{const},
2104 @code{nothrow}, @code{sentinel}, @code{format}, @code{format_arg},
2105 @code{no_instrument_function}, @code{no_split_stack},
2106 @code{section}, @code{constructor},
2107 @code{destructor}, @code{used}, @code{unused}, @code{deprecated},
2108 @code{weak}, @code{malloc}, @code{alias}, @code{ifunc},
2109 @code{warn_unused_result}, @code{nonnull}, @code{gnu_inline},
2110 @code{externally_visible}, @code{hot}, @code{cold}, @code{artificial},
2111 @code{error} and @code{warning}.  Several other attributes are defined
2112 for functions on particular target systems.  Other attributes,
2113 including @code{section} are supported for variables declarations
2114 (@pxref{Variable Attributes}) and for types (@pxref{Type Attributes}).
2115
2116 GCC plugins may provide their own attributes.
2117
2118 You may also specify attributes with @samp{__} preceding and following
2119 each keyword.  This allows you to use them in header files without
2120 being concerned about a possible macro of the same name.  For example,
2121 you may use @code{__noreturn__} instead of @code{noreturn}.
2122
2123 @xref{Attribute Syntax}, for details of the exact syntax for using
2124 attributes.
2125
2126 @table @code
2127 @c Keep this table alphabetized by attribute name.  Treat _ as space.
2128
2129 @item alias ("@var{target}")
2130 @cindex @code{alias} attribute
2131 The @code{alias} attribute causes the declaration to be emitted as an
2132 alias for another symbol, which must be specified.  For instance,
2133
2134 @smallexample
2135 void __f () @{ /* @r{Do something.} */; @}
2136 void f () __attribute__ ((weak, alias ("__f")));
2137 @end smallexample
2138
2139 defines @samp{f} to be a weak alias for @samp{__f}.  In C++, the
2140 mangled name for the target must be used.  It is an error if @samp{__f}
2141 is not defined in the same translation unit.
2142
2143 Not all target machines support this attribute.
2144
2145 @item aligned (@var{alignment})
2146 @cindex @code{aligned} attribute
2147 This attribute specifies a minimum alignment for the function,
2148 measured in bytes.
2149
2150 You cannot use this attribute to decrease the alignment of a function,
2151 only to increase it.  However, when you explicitly specify a function
2152 alignment this will override the effect of the
2153 @option{-falign-functions} (@pxref{Optimize Options}) option for this
2154 function.
2155
2156 Note that the effectiveness of @code{aligned} attributes may be
2157 limited by inherent limitations in your linker.  On many systems, the
2158 linker is only able to arrange for functions to be aligned up to a
2159 certain maximum alignment.  (For some linkers, the maximum supported
2160 alignment may be very very small.)  See your linker documentation for
2161 further information.
2162
2163 The @code{aligned} attribute can also be used for variables and fields
2164 (@pxref{Variable Attributes}.)
2165
2166 @item alloc_size
2167 @cindex @code{alloc_size} attribute
2168 The @code{alloc_size} attribute is used to tell the compiler that the
2169 function return value points to memory, where the size is given by
2170 one or two of the functions parameters.  GCC uses this
2171 information to improve the correctness of @code{__builtin_object_size}.
2172
2173 The function parameter(s) denoting the allocated size are specified by
2174 one or two integer arguments supplied to the attribute.  The allocated size
2175 is either the value of the single function argument specified or the product
2176 of the two function arguments specified.  Argument numbering starts at
2177 one.
2178
2179 For instance,
2180
2181 @smallexample
2182 void* my_calloc(size_t, size_t) __attribute__((alloc_size(1,2)))
2183 void my_realloc(void*, size_t) __attribute__((alloc_size(2)))
2184 @end smallexample
2185
2186 declares that my_calloc will return memory of the size given by
2187 the product of parameter 1 and 2 and that my_realloc will return memory
2188 of the size given by parameter 2.
2189
2190 @item always_inline
2191 @cindex @code{always_inline} function attribute
2192 Generally, functions are not inlined unless optimization is specified.
2193 For functions declared inline, this attribute inlines the function even
2194 if no optimization level was specified.
2195
2196 @item gnu_inline
2197 @cindex @code{gnu_inline} function attribute
2198 This attribute should be used with a function which is also declared
2199 with the @code{inline} keyword.  It directs GCC to treat the function
2200 as if it were defined in gnu90 mode even when compiling in C99 or
2201 gnu99 mode.
2202
2203 If the function is declared @code{extern}, then this definition of the
2204 function is used only for inlining.  In no case is the function
2205 compiled as a standalone function, not even if you take its address
2206 explicitly.  Such an address becomes an external reference, as if you
2207 had only declared the function, and had not defined it.  This has
2208 almost the effect of a macro.  The way to use this is to put a
2209 function definition in a header file with this attribute, and put
2210 another copy of the function, without @code{extern}, in a library
2211 file.  The definition in the header file will cause most calls to the
2212 function to be inlined.  If any uses of the function remain, they will
2213 refer to the single copy in the library.  Note that the two
2214 definitions of the functions need not be precisely the same, although
2215 if they do not have the same effect your program may behave oddly.
2216
2217 In C, if the function is neither @code{extern} nor @code{static}, then
2218 the function is compiled as a standalone function, as well as being
2219 inlined where possible.
2220
2221 This is how GCC traditionally handled functions declared
2222 @code{inline}.  Since ISO C99 specifies a different semantics for
2223 @code{inline}, this function attribute is provided as a transition
2224 measure and as a useful feature in its own right.  This attribute is
2225 available in GCC 4.1.3 and later.  It is available if either of the
2226 preprocessor macros @code{__GNUC_GNU_INLINE__} or
2227 @code{__GNUC_STDC_INLINE__} are defined.  @xref{Inline,,An Inline
2228 Function is As Fast As a Macro}.
2229
2230 In C++, this attribute does not depend on @code{extern} in any way,
2231 but it still requires the @code{inline} keyword to enable its special
2232 behavior.
2233
2234 @item artificial
2235 @cindex @code{artificial} function attribute
2236 This attribute is useful for small inline wrappers which if possible
2237 should appear during debugging as a unit, depending on the debug
2238 info format it will either mean marking the function as artificial
2239 or using the caller location for all instructions within the inlined
2240 body.
2241
2242 @item bank_switch
2243 @cindex interrupt handler functions
2244 When added to an interrupt handler with the M32C port, causes the
2245 prologue and epilogue to use bank switching to preserve the registers
2246 rather than saving them on the stack.
2247
2248 @item flatten
2249 @cindex @code{flatten} function attribute
2250 Generally, inlining into a function is limited.  For a function marked with
2251 this attribute, every call inside this function will be inlined, if possible.
2252 Whether the function itself is considered for inlining depends on its size and
2253 the current inlining parameters.
2254
2255 @item error ("@var{message}")
2256 @cindex @code{error} function attribute
2257 If this attribute is used on a function declaration and a call to such a function
2258 is not eliminated through dead code elimination or other optimizations, an error
2259 which will include @var{message} will be diagnosed.  This is useful
2260 for compile time checking, especially together with @code{__builtin_constant_p}
2261 and inline functions where checking the inline function arguments is not
2262 possible through @code{extern char [(condition) ? 1 : -1];} tricks.
2263 While it is possible to leave the function undefined and thus invoke
2264 a link failure, when using this attribute the problem will be diagnosed
2265 earlier and with exact location of the call even in presence of inline
2266 functions or when not emitting debugging information.
2267
2268 @item warning ("@var{message}")
2269 @cindex @code{warning} function attribute
2270 If this attribute is used on a function declaration and a call to such a function
2271 is not eliminated through dead code elimination or other optimizations, a warning
2272 which will include @var{message} will be diagnosed.  This is useful
2273 for compile time checking, especially together with @code{__builtin_constant_p}
2274 and inline functions.  While it is possible to define the function with
2275 a message in @code{.gnu.warning*} section, when using this attribute the problem
2276 will be diagnosed earlier and with exact location of the call even in presence
2277 of inline functions or when not emitting debugging information.
2278
2279 @item cdecl
2280 @cindex functions that do pop the argument stack on the 386
2281 @opindex mrtd
2282 On the Intel 386, the @code{cdecl} attribute causes the compiler to
2283 assume that the calling function will pop off the stack space used to
2284 pass arguments.  This is
2285 useful to override the effects of the @option{-mrtd} switch.
2286
2287 @item const
2288 @cindex @code{const} function attribute
2289 Many functions do not examine any values except their arguments, and
2290 have no effects except the return value.  Basically this is just slightly
2291 more strict class than the @code{pure} attribute below, since function is not
2292 allowed to read global memory.
2293
2294 @cindex pointer arguments
2295 Note that a function that has pointer arguments and examines the data
2296 pointed to must @emph{not} be declared @code{const}.  Likewise, a
2297 function that calls a non-@code{const} function usually must not be
2298 @code{const}.  It does not make sense for a @code{const} function to
2299 return @code{void}.
2300
2301 The attribute @code{const} is not implemented in GCC versions earlier
2302 than 2.5.  An alternative way to declare that a function has no side
2303 effects, which works in the current version and in some older versions,
2304 is as follows:
2305
2306 @smallexample
2307 typedef int intfn ();
2308
2309 extern const intfn square;
2310 @end smallexample
2311
2312 This approach does not work in GNU C++ from 2.6.0 on, since the language
2313 specifies that the @samp{const} must be attached to the return value.
2314
2315 @item constructor
2316 @itemx destructor
2317 @itemx constructor (@var{priority})
2318 @itemx destructor (@var{priority})
2319 @cindex @code{constructor} function attribute
2320 @cindex @code{destructor} function attribute
2321 The @code{constructor} attribute causes the function to be called
2322 automatically before execution enters @code{main ()}.  Similarly, the
2323 @code{destructor} attribute causes the function to be called
2324 automatically after @code{main ()} has completed or @code{exit ()} has
2325 been called.  Functions with these attributes are useful for
2326 initializing data that will be used implicitly during the execution of
2327 the program.
2328
2329 You may provide an optional integer priority to control the order in
2330 which constructor and destructor functions are run.  A constructor
2331 with a smaller priority number runs before a constructor with a larger
2332 priority number; the opposite relationship holds for destructors.  So,
2333 if you have a constructor that allocates a resource and a destructor
2334 that deallocates the same resource, both functions typically have the
2335 same priority.  The priorities for constructor and destructor
2336 functions are the same as those specified for namespace-scope C++
2337 objects (@pxref{C++ Attributes}).
2338
2339 These attributes are not currently implemented for Objective-C@.
2340
2341 @item deprecated
2342 @itemx deprecated (@var{msg})
2343 @cindex @code{deprecated} attribute.
2344 The @code{deprecated} attribute results in a warning if the function
2345 is used anywhere in the source file.  This is useful when identifying
2346 functions that are expected to be removed in a future version of a
2347 program.  The warning also includes the location of the declaration
2348 of the deprecated function, to enable users to easily find further
2349 information about why the function is deprecated, or what they should
2350 do instead.  Note that the warnings only occurs for uses:
2351
2352 @smallexample
2353 int old_fn () __attribute__ ((deprecated));
2354 int old_fn ();
2355 int (*fn_ptr)() = old_fn;
2356 @end smallexample
2357
2358 results in a warning on line 3 but not line 2.  The optional msg
2359 argument, which must be a string, will be printed in the warning if
2360 present.
2361
2362 The @code{deprecated} attribute can also be used for variables and
2363 types (@pxref{Variable Attributes}, @pxref{Type Attributes}.)
2364
2365 @item disinterrupt
2366 @cindex @code{disinterrupt} attribute
2367 On Epiphany and MeP targets, this attribute causes the compiler to emit
2368 instructions to disable interrupts for the duration of the given
2369 function.
2370
2371 @item dllexport
2372 @cindex @code{__declspec(dllexport)}
2373 On Microsoft Windows targets and Symbian OS targets the
2374 @code{dllexport} attribute causes the compiler to provide a global
2375 pointer to a pointer in a DLL, so that it can be referenced with the
2376 @code{dllimport} attribute.  On Microsoft Windows targets, the pointer
2377 name is formed by combining @code{_imp__} and the function or variable
2378 name.
2379
2380 You can use @code{__declspec(dllexport)} as a synonym for
2381 @code{__attribute__ ((dllexport))} for compatibility with other
2382 compilers.
2383
2384 On systems that support the @code{visibility} attribute, this
2385 attribute also implies ``default'' visibility.  It is an error to
2386 explicitly specify any other visibility.
2387
2388 In previous versions of GCC, the @code{dllexport} attribute was ignored
2389 for inlined functions, unless the @option{-fkeep-inline-functions} flag
2390 had been used.  The default behaviour now is to emit all dllexported
2391 inline functions; however, this can cause object file-size bloat, in
2392 which case the old behaviour can be restored by using
2393 @option{-fno-keep-inline-dllexport}.
2394
2395 The attribute is also ignored for undefined symbols.
2396
2397 When applied to C++ classes, the attribute marks defined non-inlined
2398 member functions and static data members as exports.  Static consts
2399 initialized in-class are not marked unless they are also defined
2400 out-of-class.
2401
2402 For Microsoft Windows targets there are alternative methods for
2403 including the symbol in the DLL's export table such as using a
2404 @file{.def} file with an @code{EXPORTS} section or, with GNU ld, using
2405 the @option{--export-all} linker flag.
2406
2407 @item dllimport
2408 @cindex @code{__declspec(dllimport)}
2409 On Microsoft Windows and Symbian OS targets, the @code{dllimport}
2410 attribute causes the compiler to reference a function or variable via
2411 a global pointer to a pointer that is set up by the DLL exporting the
2412 symbol.  The attribute implies @code{extern}.  On Microsoft Windows
2413 targets, the pointer name is formed by combining @code{_imp__} and the
2414 function or variable name.
2415
2416 You can use @code{__declspec(dllimport)} as a synonym for
2417 @code{__attribute__ ((dllimport))} for compatibility with other
2418 compilers.
2419
2420 On systems that support the @code{visibility} attribute, this
2421 attribute also implies ``default'' visibility.  It is an error to
2422 explicitly specify any other visibility.
2423
2424 Currently, the attribute is ignored for inlined functions.  If the
2425 attribute is applied to a symbol @emph{definition}, an error is reported.
2426 If a symbol previously declared @code{dllimport} is later defined, the
2427 attribute is ignored in subsequent references, and a warning is emitted.
2428 The attribute is also overridden by a subsequent declaration as
2429 @code{dllexport}.
2430
2431 When applied to C++ classes, the attribute marks non-inlined
2432 member functions and static data members as imports.  However, the
2433 attribute is ignored for virtual methods to allow creation of vtables
2434 using thunks.
2435
2436 On the SH Symbian OS target the @code{dllimport} attribute also has
2437 another affect---it can cause the vtable and run-time type information
2438 for a class to be exported.  This happens when the class has a
2439 dllimport'ed constructor or a non-inline, non-pure virtual function
2440 and, for either of those two conditions, the class also has an inline
2441 constructor or destructor and has a key function that is defined in
2442 the current translation unit.
2443
2444 For Microsoft Windows based targets the use of the @code{dllimport}
2445 attribute on functions is not necessary, but provides a small
2446 performance benefit by eliminating a thunk in the DLL@.  The use of the
2447 @code{dllimport} attribute on imported variables was required on older
2448 versions of the GNU linker, but can now be avoided by passing the
2449 @option{--enable-auto-import} switch to the GNU linker.  As with
2450 functions, using the attribute for a variable eliminates a thunk in
2451 the DLL@.
2452
2453 One drawback to using this attribute is that a pointer to a
2454 @emph{variable} marked as @code{dllimport} cannot be used as a constant
2455 address. However, a pointer to a @emph{function} with the
2456 @code{dllimport} attribute can be used as a constant initializer; in
2457 this case, the address of a stub function in the import lib is
2458 referenced.  On Microsoft Windows targets, the attribute can be disabled
2459 for functions by setting the @option{-mnop-fun-dllimport} flag.
2460
2461 @item eightbit_data
2462 @cindex eight bit data on the H8/300, H8/300H, and H8S
2463 Use this attribute on the H8/300, H8/300H, and H8S to indicate that the specified
2464 variable should be placed into the eight bit data section.
2465 The compiler will generate more efficient code for certain operations
2466 on data in the eight bit data area.  Note the eight bit data area is limited to
2467 256 bytes of data.
2468
2469 You must use GAS and GLD from GNU binutils version 2.7 or later for
2470 this attribute to work correctly.
2471
2472 @item exception_handler
2473 @cindex exception handler functions on the Blackfin processor
2474 Use this attribute on the Blackfin to indicate that the specified function
2475 is an exception handler.  The compiler will generate function entry and
2476 exit sequences suitable for use in an exception handler when this
2477 attribute is present.
2478
2479 @item externally_visible
2480 @cindex @code{externally_visible} attribute.
2481 This attribute, attached to a global variable or function, nullifies
2482 the effect of the @option{-fwhole-program} command-line option, so the
2483 object remains visible outside the current compilation unit. If @option{-fwhole-program} is used together with @option{-flto} and @command{gold} is used as the linker plugin, @code{externally_visible} attributes are automatically added to functions (not variable yet due to a current @command{gold} issue) that are accessed outside of LTO objects according to resolution file produced by @command{gold}.  For other linkers that cannot generate resolution file, explicit @code{externally_visible} attributes are still necessary.
2484
2485 @item far
2486 @cindex functions which handle memory bank switching
2487 On 68HC11 and 68HC12 the @code{far} attribute causes the compiler to
2488 use a calling convention that takes care of switching memory banks when
2489 entering and leaving a function.  This calling convention is also the
2490 default when using the @option{-mlong-calls} option.
2491
2492 On 68HC12 the compiler will use the @code{call} and @code{rtc} instructions
2493 to call and return from a function.
2494
2495 On 68HC11 the compiler will generate a sequence of instructions
2496 to invoke a board-specific routine to switch the memory bank and call the
2497 real function.  The board-specific routine simulates a @code{call}.
2498 At the end of a function, it will jump to a board-specific routine
2499 instead of using @code{rts}.  The board-specific return routine simulates
2500 the @code{rtc}.
2501
2502 On MeP targets this causes the compiler to use a calling convention
2503 which assumes the called function is too far away for the built-in
2504 addressing modes.
2505
2506 @item fast_interrupt
2507 @cindex interrupt handler functions
2508 Use this attribute on the M32C and RX ports to indicate that the specified
2509 function is a fast interrupt handler.  This is just like the
2510 @code{interrupt} attribute, except that @code{freit} is used to return
2511 instead of @code{reit}.
2512
2513 @item fastcall
2514 @cindex functions that pop the argument stack on the 386
2515 On the Intel 386, the @code{fastcall} attribute causes the compiler to
2516 pass the first argument (if of integral type) in the register ECX and
2517 the second argument (if of integral type) in the register EDX@.  Subsequent
2518 and other typed arguments are passed on the stack.  The called function will
2519 pop the arguments off the stack.  If the number of arguments is variable all
2520 arguments are pushed on the stack.
2521
2522 @item thiscall
2523 @cindex functions that pop the argument stack on the 386
2524 On the Intel 386, the @code{thiscall} attribute causes the compiler to
2525 pass the first argument (if of integral type) in the register ECX.
2526 Subsequent and other typed arguments are passed on the stack. The called
2527 function will pop the arguments off the stack.
2528 If the number of arguments is variable all arguments are pushed on the
2529 stack.
2530 The @code{thiscall} attribute is intended for C++ non-static member functions.
2531 As gcc extension this calling convention can be used for C-functions
2532 and for static member methods.
2533
2534 @item format (@var{archetype}, @var{string-index}, @var{first-to-check})
2535 @cindex @code{format} function attribute
2536 @opindex Wformat
2537 The @code{format} attribute specifies that a function takes @code{printf},
2538 @code{scanf}, @code{strftime} or @code{strfmon} style arguments which
2539 should be type-checked against a format string.  For example, the
2540 declaration:
2541
2542 @smallexample
2543 extern int
2544 my_printf (void *my_object, const char *my_format, ...)
2545       __attribute__ ((format (printf, 2, 3)));
2546 @end smallexample
2547
2548 @noindent
2549 causes the compiler to check the arguments in calls to @code{my_printf}
2550 for consistency with the @code{printf} style format string argument
2551 @code{my_format}.
2552
2553 The parameter @var{archetype} determines how the format string is
2554 interpreted, and should be @code{printf}, @code{scanf}, @code{strftime},
2555 @code{gnu_printf}, @code{gnu_scanf}, @code{gnu_strftime} or
2556 @code{strfmon}.  (You can also use @code{__printf__},
2557 @code{__scanf__}, @code{__strftime__} or @code{__strfmon__}.)  On
2558 MinGW targets, @code{ms_printf}, @code{ms_scanf}, and
2559 @code{ms_strftime} are also present.
2560 @var{archtype} values such as @code{printf} refer to the formats accepted
2561 by the system's C run-time library, while @code{gnu_} values always refer
2562 to the formats accepted by the GNU C Library.  On Microsoft Windows
2563 targets, @code{ms_} values refer to the formats accepted by the
2564 @file{msvcrt.dll} library.
2565 The parameter @var{string-index}
2566 specifies which argument is the format string argument (starting
2567 from 1), while @var{first-to-check} is the number of the first
2568 argument to check against the format string.  For functions
2569 where the arguments are not available to be checked (such as
2570 @code{vprintf}), specify the third parameter as zero.  In this case the
2571 compiler only checks the format string for consistency.  For
2572 @code{strftime} formats, the third parameter is required to be zero.
2573 Since non-static C++ methods have an implicit @code{this} argument, the
2574 arguments of such methods should be counted from two, not one, when
2575 giving values for @var{string-index} and @var{first-to-check}.
2576
2577 In the example above, the format string (@code{my_format}) is the second
2578 argument of the function @code{my_print}, and the arguments to check
2579 start with the third argument, so the correct parameters for the format
2580 attribute are 2 and 3.
2581
2582 @opindex ffreestanding
2583 @opindex fno-builtin
2584 The @code{format} attribute allows you to identify your own functions
2585 which take format strings as arguments, so that GCC can check the
2586 calls to these functions for errors.  The compiler always (unless
2587 @option{-ffreestanding} or @option{-fno-builtin} is used) checks formats
2588 for the standard library functions @code{printf}, @code{fprintf},
2589 @code{sprintf}, @code{scanf}, @code{fscanf}, @code{sscanf}, @code{strftime},
2590 @code{vprintf}, @code{vfprintf} and @code{vsprintf} whenever such
2591 warnings are requested (using @option{-Wformat}), so there is no need to
2592 modify the header file @file{stdio.h}.  In C99 mode, the functions
2593 @code{snprintf}, @code{vsnprintf}, @code{vscanf}, @code{vfscanf} and
2594 @code{vsscanf} are also checked.  Except in strictly conforming C
2595 standard modes, the X/Open function @code{strfmon} is also checked as
2596 are @code{printf_unlocked} and @code{fprintf_unlocked}.
2597 @xref{C Dialect Options,,Options Controlling C Dialect}.
2598
2599 For Objective-C dialects, @code{NSString} (or @code{__NSString__}) is
2600 recognized in the same context.  Declarations including these format attributes
2601 will be parsed for correct syntax, however the result of checking of such format
2602 strings is not yet defined, and will not be carried out by this version of the
2603 compiler.
2604
2605 The target may also provide additional types of format checks.
2606 @xref{Target Format Checks,,Format Checks Specific to Particular
2607 Target Machines}.
2608
2609 @item format_arg (@var{string-index})
2610 @cindex @code{format_arg} function attribute
2611 @opindex Wformat-nonliteral
2612 The @code{format_arg} attribute specifies that a function takes a format
2613 string for a @code{printf}, @code{scanf}, @code{strftime} or
2614 @code{strfmon} style function and modifies it (for example, to translate
2615 it into another language), so the result can be passed to a
2616 @code{printf}, @code{scanf}, @code{strftime} or @code{strfmon} style
2617 function (with the remaining arguments to the format function the same
2618 as they would have been for the unmodified string).  For example, the
2619 declaration:
2620
2621 @smallexample
2622 extern char *
2623 my_dgettext (char *my_domain, const char *my_format)
2624       __attribute__ ((format_arg (2)));
2625 @end smallexample
2626
2627 @noindent
2628 causes the compiler to check the arguments in calls to a @code{printf},
2629 @code{scanf}, @code{strftime} or @code{strfmon} type function, whose
2630 format string argument is a call to the @code{my_dgettext} function, for
2631 consistency with the format string argument @code{my_format}.  If the
2632 @code{format_arg} attribute had not been specified, all the compiler
2633 could tell in such calls to format functions would be that the format
2634 string argument is not constant; this would generate a warning when
2635 @option{-Wformat-nonliteral} is used, but the calls could not be checked
2636 without the attribute.
2637
2638 The parameter @var{string-index} specifies which argument is the format
2639 string argument (starting from one).  Since non-static C++ methods have
2640 an implicit @code{this} argument, the arguments of such methods should
2641 be counted from two.
2642
2643 The @code{format-arg} attribute allows you to identify your own
2644 functions which modify format strings, so that GCC can check the
2645 calls to @code{printf}, @code{scanf}, @code{strftime} or @code{strfmon}
2646 type function whose operands are a call to one of your own function.
2647 The compiler always treats @code{gettext}, @code{dgettext}, and
2648 @code{dcgettext} in this manner except when strict ISO C support is
2649 requested by @option{-ansi} or an appropriate @option{-std} option, or
2650 @option{-ffreestanding} or @option{-fno-builtin}
2651 is used.  @xref{C Dialect Options,,Options
2652 Controlling C Dialect}.
2653
2654 For Objective-C dialects, the @code{format-arg} attribute may refer to an
2655 @code{NSString} reference for compatibility with the @code{format} attribute
2656 above.
2657
2658 The target may also allow additional types in @code{format-arg} attributes.
2659 @xref{Target Format Checks,,Format Checks Specific to Particular
2660 Target Machines}.
2661
2662 @item function_vector
2663 @cindex calling functions through the function vector on H8/300, M16C, M32C and SH2A processors
2664 Use this attribute on the H8/300, H8/300H, and H8S to indicate that the specified
2665 function should be called through the function vector.  Calling a
2666 function through the function vector will reduce code size, however;
2667 the function vector has a limited size (maximum 128 entries on the H8/300
2668 and 64 entries on the H8/300H and H8S) and shares space with the interrupt vector.
2669
2670 In SH2A target, this attribute declares a function to be called using the
2671 TBR relative addressing mode.  The argument to this attribute is the entry
2672 number of the same function in a vector table containing all the TBR
2673 relative addressable functions.  For the successful jump, register TBR
2674 should contain the start address of this TBR relative vector table.
2675 In the startup routine of the user application, user needs to care of this
2676 TBR register initialization.  The TBR relative vector table can have at
2677 max 256 function entries.  The jumps to these functions will be generated
2678 using a SH2A specific, non delayed branch instruction JSR/N @@(disp8,TBR).
2679 You must use GAS and GLD from GNU binutils version 2.7 or later for
2680 this attribute to work correctly.
2681
2682 Please refer the example of M16C target, to see the use of this
2683 attribute while declaring a function,
2684
2685 In an application, for a function being called once, this attribute will
2686 save at least 8 bytes of code; and if other successive calls are being
2687 made to the same function, it will save 2 bytes of code per each of these
2688 calls.
2689
2690 On M16C/M32C targets, the @code{function_vector} attribute declares a
2691 special page subroutine call function. Use of this attribute reduces
2692 the code size by 2 bytes for each call generated to the
2693 subroutine. The argument to the attribute is the vector number entry
2694 from the special page vector table which contains the 16 low-order
2695 bits of the subroutine's entry address. Each vector table has special
2696 page number (18 to 255) which are used in @code{jsrs} instruction.
2697 Jump addresses of the routines are generated by adding 0x0F0000 (in
2698 case of M16C targets) or 0xFF0000 (in case of M32C targets), to the 2
2699 byte addresses set in the vector table. Therefore you need to ensure
2700 that all the special page vector routines should get mapped within the
2701 address range 0x0F0000 to 0x0FFFFF (for M16C) and 0xFF0000 to 0xFFFFFF
2702 (for M32C).
2703
2704 In the following example 2 bytes will be saved for each call to
2705 function @code{foo}.
2706
2707 @smallexample
2708 void foo (void) __attribute__((function_vector(0x18)));
2709 void foo (void)
2710 @{
2711 @}
2712
2713 void bar (void)
2714 @{
2715     foo();
2716 @}
2717 @end smallexample
2718
2719 If functions are defined in one file and are called in another file,
2720 then be sure to write this declaration in both files.
2721
2722 This attribute is ignored for R8C target.
2723
2724 @item interrupt
2725 @cindex interrupt handler functions
2726 Use this attribute on the ARM, AVR, CR16, Epiphany, M32C, M32R/D, m68k, MeP, MIPS,
2727 RL78, RX and Xstormy16 ports to indicate that the specified function is an
2728 interrupt handler.  The compiler will generate function entry and exit
2729 sequences suitable for use in an interrupt handler when this attribute
2730 is present.
2731
2732 Note, interrupt handlers for the Blackfin, H8/300, H8/300H, H8S, MicroBlaze,
2733 and SH processors can be specified via the @code{interrupt_handler} attribute.
2734
2735 Note, on the AVR, interrupts will be enabled inside the function.
2736
2737 Note, for the ARM, you can specify the kind of interrupt to be handled by
2738 adding an optional parameter to the interrupt attribute like this:
2739
2740 @smallexample
2741 void f () __attribute__ ((interrupt ("IRQ")));
2742 @end smallexample
2743
2744 Permissible values for this parameter are: IRQ, FIQ, SWI, ABORT and UNDEF@.
2745
2746 On ARMv7-M the interrupt type is ignored, and the attribute means the function
2747 may be called with a word aligned stack pointer.
2748
2749 On MIPS targets, you can use the following attributes to modify the behavior
2750 of an interrupt handler:
2751 @table @code
2752 @item use_shadow_register_set
2753 @cindex @code{use_shadow_register_set} attribute
2754 Assume that the handler uses a shadow register set, instead of
2755 the main general-purpose registers.
2756
2757 @item keep_interrupts_masked
2758 @cindex @code{keep_interrupts_masked} attribute
2759 Keep interrupts masked for the whole function.  Without this attribute,
2760 GCC tries to reenable interrupts for as much of the function as it can.
2761
2762 @item use_debug_exception_return
2763 @cindex @code{use_debug_exception_return} attribute
2764 Return using the @code{deret} instruction.  Interrupt handlers that don't
2765 have this attribute return using @code{eret} instead.
2766 @end table
2767
2768 You can use any combination of these attributes, as shown below:
2769 @smallexample
2770 void __attribute__ ((interrupt)) v0 ();
2771 void __attribute__ ((interrupt, use_shadow_register_set)) v1 ();
2772 void __attribute__ ((interrupt, keep_interrupts_masked)) v2 ();
2773 void __attribute__ ((interrupt, use_debug_exception_return)) v3 ();
2774 void __attribute__ ((interrupt, use_shadow_register_set,
2775                      keep_interrupts_masked)) v4 ();
2776 void __attribute__ ((interrupt, use_shadow_register_set,
2777                      use_debug_exception_return)) v5 ();
2778 void __attribute__ ((interrupt, keep_interrupts_masked,
2779                      use_debug_exception_return)) v6 ();
2780 void __attribute__ ((interrupt, use_shadow_register_set,
2781                      keep_interrupts_masked,
2782                      use_debug_exception_return)) v7 ();
2783 @end smallexample
2784
2785 On RL78, use @code{brk_interrupt} instead of @code{interrupt} for
2786 handlers intended to be used with the @code{BRK} opcode (i.e.  those
2787 that must end with @code{RETB} instead of @code{RETI}).
2788
2789 @item ifunc ("@var{resolver}")
2790 @cindex @code{ifunc} attribute
2791 The @code{ifunc} attribute is used to mark a function as an indirect
2792 function using the STT_GNU_IFUNC symbol type extension to the ELF
2793 standard.  This allows the resolution of the symbol value to be
2794 determined dynamically at load time, and an optimized version of the
2795 routine can be selected for the particular processor or other system
2796 characteristics determined then.  To use this attribute, first define
2797 the implementation functions available, and a resolver function that
2798 returns a pointer to the selected implementation function.  The
2799 implementation functions' declarations must match the API of the
2800 function being implemented, the resolver's declaration is be a
2801 function returning pointer to void function returning void:
2802
2803 @smallexample
2804 void *my_memcpy (void *dst, const void *src, size_t len)
2805 @{
2806   @dots{}
2807 @}
2808
2809 static void (*resolve_memcpy (void)) (void)
2810 @{
2811   return my_memcpy; // we'll just always select this routine
2812 @}
2813 @end smallexample
2814
2815 The exported header file declaring the function the user calls would
2816 contain:
2817
2818 @smallexample
2819 extern void *memcpy (void *, const void *, size_t);
2820 @end smallexample
2821
2822 allowing the user to call this as a regular function, unaware of the
2823 implementation.  Finally, the indirect function needs to be defined in
2824 the same translation unit as the resolver function:
2825
2826 @smallexample
2827 void *memcpy (void *, const void *, size_t)
2828      __attribute__ ((ifunc ("resolve_memcpy")));
2829 @end smallexample
2830
2831 Indirect functions cannot be weak, and require a recent binutils (at
2832 least version 2.20.1), and GNU C library (at least version 2.11.1).
2833
2834 @item interrupt_handler
2835 @cindex interrupt handler functions on the Blackfin, m68k, H8/300 and SH processors
2836 Use this attribute on the Blackfin, m68k, H8/300, H8/300H, H8S, and SH to
2837 indicate that the specified function is an interrupt handler.  The compiler
2838 will generate function entry and exit sequences suitable for use in an
2839 interrupt handler when this attribute is present.
2840
2841 @item interrupt_thread
2842 @cindex interrupt thread functions on fido
2843 Use this attribute on fido, a subarchitecture of the m68k, to indicate
2844 that the specified function is an interrupt handler that is designed
2845 to run as a thread.  The compiler omits generate prologue/epilogue
2846 sequences and replaces the return instruction with a @code{sleep}
2847 instruction.  This attribute is available only on fido.
2848
2849 @item isr
2850 @cindex interrupt service routines on ARM
2851 Use this attribute on ARM to write Interrupt Service Routines. This is an
2852 alias to the @code{interrupt} attribute above.
2853
2854 @item kspisusp
2855 @cindex User stack pointer in interrupts on the Blackfin
2856 When used together with @code{interrupt_handler}, @code{exception_handler}
2857 or @code{nmi_handler}, code will be generated to load the stack pointer
2858 from the USP register in the function prologue.
2859
2860 @item l1_text
2861 @cindex @code{l1_text} function attribute
2862 This attribute specifies a function to be placed into L1 Instruction
2863 SRAM@. The function will be put into a specific section named @code{.l1.text}.
2864 With @option{-mfdpic}, function calls with a such function as the callee
2865 or caller will use inlined PLT.
2866
2867 @item l2
2868 @cindex @code{l2} function attribute
2869 On the Blackfin, this attribute specifies a function to be placed into L2
2870 SRAM. The function will be put into a specific section named
2871 @code{.l1.text}. With @option{-mfdpic}, callers of such functions will use
2872 an inlined PLT.
2873
2874 @item leaf
2875 @cindex @code{leaf} function attribute
2876 Calls to external functions with this attribute must return to the current
2877 compilation unit only by return or by exception handling.  In particular, leaf
2878 functions are not allowed to call callback function passed to it from the current
2879 compilation unit or directly call functions exported by the unit or longjmp
2880 into the unit.  Leaf function might still call functions from other compilation
2881 units and thus they are not necessarily leaf in the sense that they contain no
2882 function calls at all.
2883
2884 The attribute is intended for library functions to improve dataflow analysis.
2885 The compiler takes the hint that any data not escaping the current compilation unit can
2886 not be used or modified by the leaf function.  For example, the @code{sin} function
2887 is a leaf function, but @code{qsort} is not.
2888
2889 Note that leaf functions might invoke signals and signal handlers might be
2890 defined in the current compilation unit and use static variables.  The only
2891 compliant way to write such a signal handler is to declare such variables
2892 @code{volatile}.
2893
2894 The attribute has no effect on functions defined within the current compilation
2895 unit.  This is to allow easy merging of multiple compilation units into one,
2896 for example, by using the link time optimization.  For this reason the
2897 attribute is not allowed on types to annotate indirect calls.
2898
2899 @item long_call/short_call
2900 @cindex indirect calls on ARM
2901 This attribute specifies how a particular function is called on
2902 ARM and Epiphany.  Both attributes override the
2903 @option{-mlong-calls} (@pxref{ARM Options})
2904 command-line switch and @code{#pragma long_calls} settings.  The
2905 @code{long_call} attribute indicates that the function might be far
2906 away from the call site and require a different (more expensive)
2907 calling sequence.   The @code{short_call} attribute always places
2908 the offset to the function from the call site into the @samp{BL}
2909 instruction directly.
2910
2911 @item longcall/shortcall
2912 @cindex functions called via pointer on the RS/6000 and PowerPC
2913 On the Blackfin, RS/6000 and PowerPC, the @code{longcall} attribute
2914 indicates that the function might be far away from the call site and
2915 require a different (more expensive) calling sequence.  The
2916 @code{shortcall} attribute indicates that the function is always close
2917 enough for the shorter calling sequence to be used.  These attributes
2918 override both the @option{-mlongcall} switch and, on the RS/6000 and
2919 PowerPC, the @code{#pragma longcall} setting.
2920
2921 @xref{RS/6000 and PowerPC Options}, for more information on whether long
2922 calls are necessary.
2923
2924 @item long_call/near/far
2925 @cindex indirect calls on MIPS
2926 These attributes specify how a particular function is called on MIPS@.
2927 The attributes override the @option{-mlong-calls} (@pxref{MIPS Options})
2928 command-line switch.  The @code{long_call} and @code{far} attributes are
2929 synonyms, and cause the compiler to always call
2930 the function by first loading its address into a register, and then using
2931 the contents of that register.  The @code{near} attribute has the opposite
2932 effect; it specifies that non-PIC calls should be made using the more
2933 efficient @code{jal} instruction.
2934
2935 @item malloc
2936 @cindex @code{malloc} attribute
2937 The @code{malloc} attribute is used to tell the compiler that a function
2938 may be treated as if any non-@code{NULL} pointer it returns cannot
2939 alias any other pointer valid when the function returns and that the memory
2940 has undefined content.
2941 This will often improve optimization.
2942 Standard functions with this property include @code{malloc} and
2943 @code{calloc}.  @code{realloc}-like functions do not have this
2944 property as the memory pointed to does not have undefined content.
2945
2946 @item mips16/nomips16
2947 @cindex @code{mips16} attribute
2948 @cindex @code{nomips16} attribute
2949
2950 On MIPS targets, you can use the @code{mips16} and @code{nomips16}
2951 function attributes to locally select or turn off MIPS16 code generation.
2952 A function with the @code{mips16} attribute is emitted as MIPS16 code,
2953 while MIPS16 code generation is disabled for functions with the
2954 @code{nomips16} attribute.  These attributes override the
2955 @option{-mips16} and @option{-mno-mips16} options on the command line
2956 (@pxref{MIPS Options}).
2957
2958 When compiling files containing mixed MIPS16 and non-MIPS16 code, the
2959 preprocessor symbol @code{__mips16} reflects the setting on the command line,
2960 not that within individual functions.  Mixed MIPS16 and non-MIPS16 code
2961 may interact badly with some GCC extensions such as @code{__builtin_apply}
2962 (@pxref{Constructing Calls}).
2963
2964 @item model (@var{model-name})
2965 @cindex function addressability on the M32R/D
2966 @cindex variable addressability on the IA-64
2967
2968 On the M32R/D, use this attribute to set the addressability of an
2969 object, and of the code generated for a function.  The identifier
2970 @var{model-name} is one of @code{small}, @code{medium}, or
2971 @code{large}, representing each of the code models.
2972
2973 Small model objects live in the lower 16MB of memory (so that their
2974 addresses can be loaded with the @code{ld24} instruction), and are
2975 callable with the @code{bl} instruction.
2976
2977 Medium model objects may live anywhere in the 32-bit address space (the
2978 compiler will generate @code{seth/add3} instructions to load their addresses),
2979 and are callable with the @code{bl} instruction.
2980
2981 Large model objects may live anywhere in the 32-bit address space (the
2982 compiler will generate @code{seth/add3} instructions to load their addresses),
2983 and may not be reachable with the @code{bl} instruction (the compiler will
2984 generate the much slower @code{seth/add3/jl} instruction sequence).
2985
2986 On IA-64, use this attribute to set the addressability of an object.
2987 At present, the only supported identifier for @var{model-name} is
2988 @code{small}, indicating addressability via ``small'' (22-bit)
2989 addresses (so that their addresses can be loaded with the @code{addl}
2990 instruction).  Caveat: such addressing is by definition not position
2991 independent and hence this attribute must not be used for objects
2992 defined by shared libraries.
2993
2994 @item ms_abi/sysv_abi
2995 @cindex @code{ms_abi} attribute
2996 @cindex @code{sysv_abi} attribute
2997
2998 On 32-bit and 64-bit (i?86|x86_64)-*-* targets, you can use an ABI attribute
2999 to indicate which calling convention should be used for a function.  The
3000 @code{ms_abi} attribute tells the compiler to use the Microsoft ABI,
3001 while the @code{sysv_abi} attribute tells the compiler to use the ABI
3002 used on GNU/Linux and other systems.  The default is to use the Microsoft ABI
3003 when targeting Windows.  On all other systems, the default is the x86/AMD ABI.
3004
3005 Note, the @code{ms_abi} attribute for Windows 64-bit targets currently
3006 requires the @option{-maccumulate-outgoing-args} option.
3007
3008 @item callee_pop_aggregate_return (@var{number})
3009 @cindex @code{callee_pop_aggregate_return} attribute
3010
3011 On 32-bit i?86-*-* targets, you can control by those attribute for
3012 aggregate return in memory, if the caller is responsible to pop the hidden
3013 pointer together with the rest of the arguments - @var{number} equal to
3014 zero -, or if the callee is responsible to pop hidden pointer - @var{number}
3015 equal to one.  The default i386 ABI assumes that the callee pops the
3016 stack for hidden pointer.
3017
3018 Note, that on 32-bit i386 Windows targets the compiler assumes that the
3019 caller pops the stack for hidden pointer.
3020
3021 @item ms_hook_prologue
3022 @cindex @code{ms_hook_prologue} attribute
3023
3024 On 32 bit i[34567]86-*-* targets and 64 bit x86_64-*-* targets, you can use
3025 this function attribute to make gcc generate the "hot-patching" function
3026 prologue used in Win32 API functions in Microsoft Windows XP Service Pack 2
3027 and newer.
3028
3029 @item naked
3030 @cindex function without a prologue/epilogue code
3031 Use this attribute on the ARM, AVR, MCORE, RX and SPU ports to indicate that
3032 the specified function does not need prologue/epilogue sequences generated by
3033 the compiler.  It is up to the programmer to provide these sequences. The
3034 only statements that can be safely included in naked functions are
3035 @code{asm} statements that do not have operands.  All other statements,
3036 including declarations of local variables, @code{if} statements, and so
3037 forth, should be avoided.  Naked functions should be used to implement the
3038 body of an assembly function, while allowing the compiler to construct
3039 the requisite function declaration for the assembler.
3040
3041 @item near
3042 @cindex functions which do not handle memory bank switching on 68HC11/68HC12
3043 On 68HC11 and 68HC12 the @code{near} attribute causes the compiler to
3044 use the normal calling convention based on @code{jsr} and @code{rts}.
3045 This attribute can be used to cancel the effect of the @option{-mlong-calls}
3046 option.
3047
3048 On MeP targets this attribute causes the compiler to assume the called
3049 function is close enough to use the normal calling convention,
3050 overriding the @code{-mtf} command line option.
3051
3052 @item nesting
3053 @cindex Allow nesting in an interrupt handler on the Blackfin processor.
3054 Use this attribute together with @code{interrupt_handler},
3055 @code{exception_handler} or @code{nmi_handler} to indicate that the function
3056 entry code should enable nested interrupts or exceptions.
3057
3058 @item nmi_handler
3059 @cindex NMI handler functions on the Blackfin processor
3060 Use this attribute on the Blackfin to indicate that the specified function
3061 is an NMI handler.  The compiler will generate function entry and
3062 exit sequences suitable for use in an NMI handler when this
3063 attribute is present.
3064
3065 @item no_instrument_function
3066 @cindex @code{no_instrument_function} function attribute
3067 @opindex finstrument-functions
3068 If @option{-finstrument-functions} is given, profiling function calls will
3069 be generated at entry and exit of most user-compiled functions.
3070 Functions with this attribute will not be so instrumented.
3071
3072 @item no_split_stack
3073 @cindex @code{no_split_stack} function attribute
3074 @opindex fsplit-stack
3075 If @option{-fsplit-stack} is given, functions will have a small
3076 prologue which decides whether to split the stack.  Functions with the
3077 @code{no_split_stack} attribute will not have that prologue, and thus
3078 may run with only a small amount of stack space available.
3079
3080 @item noinline
3081 @cindex @code{noinline} function attribute
3082 This function attribute prevents a function from being considered for
3083 inlining.
3084 @c Don't enumerate the optimizations by name here; we try to be
3085 @c future-compatible with this mechanism.
3086 If the function does not have side-effects, there are optimizations
3087 other than inlining that causes function calls to be optimized away,
3088 although the function call is live.  To keep such calls from being
3089 optimized away, put
3090 @smallexample
3091 asm ("");
3092 @end smallexample
3093 (@pxref{Extended Asm}) in the called function, to serve as a special
3094 side-effect.
3095
3096 @item noclone
3097 @cindex @code{noclone} function attribute
3098 This function attribute prevents a function from being considered for
3099 cloning - a mechanism which produces specialized copies of functions
3100 and which is (currently) performed by interprocedural constant
3101 propagation.
3102
3103 @item nonnull (@var{arg-index}, @dots{})
3104 @cindex @code{nonnull} function attribute
3105 The @code{nonnull} attribute specifies that some function parameters should
3106 be non-null pointers.  For instance, the declaration:
3107
3108 @smallexample
3109 extern void *
3110 my_memcpy (void *dest, const void *src, size_t len)
3111         __attribute__((nonnull (1, 2)));
3112 @end smallexample
3113
3114 @noindent
3115 causes the compiler to check that, in calls to @code{my_memcpy},
3116 arguments @var{dest} and @var{src} are non-null.  If the compiler
3117 determines that a null pointer is passed in an argument slot marked
3118 as non-null, and the @option{-Wnonnull} option is enabled, a warning
3119 is issued.  The compiler may also choose to make optimizations based
3120 on the knowledge that certain function arguments will not be null.
3121
3122 If no argument index list is given to the @code{nonnull} attribute,
3123 all pointer arguments are marked as non-null.  To illustrate, the
3124 following declaration is equivalent to the previous example:
3125
3126 @smallexample
3127 extern void *
3128 my_memcpy (void *dest, const void *src, size_t len)
3129         __attribute__((nonnull));
3130 @end smallexample
3131
3132 @item noreturn
3133 @cindex @code{noreturn} function attribute
3134 A few standard library functions, such as @code{abort} and @code{exit},
3135 cannot return.  GCC knows this automatically.  Some programs define
3136 their own functions that never return.  You can declare them
3137 @code{noreturn} to tell the compiler this fact.  For example,
3138
3139 @smallexample
3140 @group
3141 void fatal () __attribute__ ((noreturn));
3142
3143 void
3144 fatal (/* @r{@dots{}} */)
3145 @{
3146   /* @r{@dots{}} */ /* @r{Print error message.} */ /* @r{@dots{}} */
3147   exit (1);
3148 @}
3149 @end group
3150 @end smallexample
3151
3152 The @code{noreturn} keyword tells the compiler to assume that
3153 @code{fatal} cannot return.  It can then optimize without regard to what
3154 would happen if @code{fatal} ever did return.  This makes slightly
3155 better code.  More importantly, it helps avoid spurious warnings of
3156 uninitialized variables.
3157
3158 The @code{noreturn} keyword does not affect the exceptional path when that
3159 applies: a @code{noreturn}-marked function may still return to the caller
3160 by throwing an exception or calling @code{longjmp}.
3161
3162 Do not assume that registers saved by the calling function are
3163 restored before calling the @code{noreturn} function.
3164
3165 It does not make sense for a @code{noreturn} function to have a return
3166 type other than @code{void}.
3167
3168 The attribute @code{noreturn} is not implemented in GCC versions
3169 earlier than 2.5.  An alternative way to declare that a function does
3170 not return, which works in the current version and in some older
3171 versions, is as follows:
3172
3173 @smallexample
3174 typedef void voidfn ();
3175
3176 volatile voidfn fatal;
3177 @end smallexample
3178
3179 This approach does not work in GNU C++.
3180
3181 @item nothrow
3182 @cindex @code{nothrow} function attribute
3183 The @code{nothrow} attribute is used to inform the compiler that a
3184 function cannot throw an exception.  For example, most functions in
3185 the standard C library can be guaranteed not to throw an exception
3186 with the notable exceptions of @code{qsort} and @code{bsearch} that
3187 take function pointer arguments.  The @code{nothrow} attribute is not
3188 implemented in GCC versions earlier than 3.3.
3189
3190 @item optimize
3191 @cindex @code{optimize} function attribute
3192 The @code{optimize} attribute is used to specify that a function is to
3193 be compiled with different optimization options than specified on the
3194 command line.  Arguments can either be numbers or strings.  Numbers
3195 are assumed to be an optimization level.  Strings that begin with
3196 @code{O} are assumed to be an optimization option, while other options
3197 are assumed to be used with a @code{-f} prefix.  You can also use the
3198 @samp{#pragma GCC optimize} pragma to set the optimization options
3199 that affect more than one function.
3200 @xref{Function Specific Option Pragmas}, for details about the
3201 @samp{#pragma GCC optimize} pragma.
3202
3203 This can be used for instance to have frequently executed functions
3204 compiled with more aggressive optimization options that produce faster
3205 and larger code, while other functions can be called with less
3206 aggressive options.
3207
3208 @item OS_main/OS_task
3209 @cindex @code{OS_main} AVR function attribute
3210 @cindex @code{OS_task} AVR function attribute
3211 On AVR, functions with the @code{OS_main} or @code{OS_task} attribute
3212 do not save/restore any call-saved register in their prologue/epilogue.
3213
3214 The @code{OS_main} attribute can be used when there @emph{is
3215 guarantee} that interrupts are disabled at the time when the function
3216 is entered.  This will save resources when the stack pointer has to be
3217 changed to set up a frame for local variables.
3218
3219 The @code{OS_task} attribute can be used when there is @emph{no
3220 guarantee} that interrupts are disabled at that time when the function
3221 is entered like for, e@.g@. task functions in a multi-threading operating
3222 system. In that case, changing the stack pointer register will be
3223 guarded by save/clear/restore of the global interrupt enable flag.
3224
3225 The differences to the @code{naked} function attribute are:
3226 @itemize @bullet
3227 @item @code{naked} functions do not have a return instruction whereas 
3228 @code{OS_main} and @code{OS_task} functions will have a @code{RET} or
3229 @code{RETI} return instruction.
3230 @item @code{naked} functions do not set up a frame for local variables
3231 or a frame pointer whereas @code{OS_main} and @code{OS_task} do this
3232 as needed.
3233 @end itemize
3234
3235 @item pcs
3236 @cindex @code{pcs} function attribute
3237
3238 The @code{pcs} attribute can be used to control the calling convention
3239 used for a function on ARM.  The attribute takes an argument that specifies
3240 the calling convention to use.
3241
3242 When compiling using the AAPCS ABI (or a variant of that) then valid
3243 values for the argument are @code{"aapcs"} and @code{"aapcs-vfp"}.  In
3244 order to use a variant other than @code{"aapcs"} then the compiler must
3245 be permitted to use the appropriate co-processor registers (i.e., the
3246 VFP registers must be available in order to use @code{"aapcs-vfp"}).
3247 For example,
3248
3249 @smallexample
3250 /* Argument passed in r0, and result returned in r0+r1.  */
3251 double f2d (float) __attribute__((pcs("aapcs")));
3252 @end smallexample
3253
3254 Variadic functions always use the @code{"aapcs"} calling convention and
3255 the compiler will reject attempts to specify an alternative.
3256
3257 @item pure
3258 @cindex @code{pure} function attribute
3259 Many functions have no effects except the return value and their
3260 return value depends only on the parameters and/or global variables.
3261 Such a function can be subject
3262 to common subexpression elimination and loop optimization just as an
3263 arithmetic operator would be.  These functions should be declared
3264 with the attribute @code{pure}.  For example,
3265
3266 @smallexample
3267 int square (int) __attribute__ ((pure));
3268 @end smallexample
3269
3270 @noindent
3271 says that the hypothetical function @code{square} is safe to call
3272 fewer times than the program says.
3273
3274 Some of common examples of pure functions are @code{strlen} or @code{memcmp}.
3275 Interesting non-pure functions are functions with infinite loops or those
3276 depending on volatile memory or other system resource, that may change between
3277 two consecutive calls (such as @code{feof} in a multithreading environment).
3278
3279 The attribute @code{pure} is not implemented in GCC versions earlier
3280 than 2.96.
3281
3282 @item hot
3283 @cindex @code{hot} function attribute
3284 The @code{hot} attribute is used to inform the compiler that a function is a
3285 hot spot of the compiled program.  The function is optimized more aggressively
3286 and on many target it is placed into special subsection of the text section so
3287 all hot functions appears close together improving locality.
3288
3289 When profile feedback is available, via @option{-fprofile-use}, hot functions
3290 are automatically detected and this attribute is ignored.
3291
3292 The @code{hot} attribute is not implemented in GCC versions earlier
3293 than 4.3.
3294
3295 @item cold
3296 @cindex @code{cold} function attribute
3297 The @code{cold} attribute is used to inform the compiler that a function is
3298 unlikely executed.  The function is optimized for size rather than speed and on
3299 many targets it is placed into special subsection of the text section so all
3300 cold functions appears close together improving code locality of non-cold parts
3301 of program.  The paths leading to call of cold functions within code are marked
3302 as unlikely by the branch prediction mechanism. It is thus useful to mark
3303 functions used to handle unlikely conditions, such as @code{perror}, as cold to
3304 improve optimization of hot functions that do call marked functions in rare
3305 occasions.
3306
3307 When profile feedback is available, via @option{-fprofile-use}, hot functions
3308 are automatically detected and this attribute is ignored.
3309
3310 The @code{cold} attribute is not implemented in GCC versions earlier than 4.3.
3311
3312 @item regparm (@var{number})
3313 @cindex @code{regparm} attribute
3314 @cindex functions that are passed arguments in registers on the 386
3315 On the Intel 386, the @code{regparm} attribute causes the compiler to
3316 pass arguments number one to @var{number} if they are of integral type
3317 in registers EAX, EDX, and ECX instead of on the stack.  Functions that
3318 take a variable number of arguments will continue to be passed all of their
3319 arguments on the stack.
3320
3321 Beware that on some ELF systems this attribute is unsuitable for
3322 global functions in shared libraries with lazy binding (which is the
3323 default).  Lazy binding will send the first call via resolving code in
3324 the loader, which might assume EAX, EDX and ECX can be clobbered, as
3325 per the standard calling conventions.  Solaris 8 is affected by this.
3326 GNU systems with GLIBC 2.1 or higher, and FreeBSD, are believed to be
3327 safe since the loaders there save EAX, EDX and ECX.  (Lazy binding can be
3328 disabled with the linker or the loader if desired, to avoid the
3329 problem.)
3330
3331 @item sseregparm
3332 @cindex @code{sseregparm} attribute
3333 On the Intel 386 with SSE support, the @code{sseregparm} attribute
3334 causes the compiler to pass up to 3 floating point arguments in
3335 SSE registers instead of on the stack.  Functions that take a
3336 variable number of arguments will continue to pass all of their
3337 floating point arguments on the stack.
3338
3339 @item force_align_arg_pointer
3340 @cindex @code{force_align_arg_pointer} attribute
3341 On the Intel x86, the @code{force_align_arg_pointer} attribute may be
3342 applied to individual function definitions, generating an alternate
3343 prologue and epilogue that realigns the runtime stack if necessary.
3344 This supports mixing legacy codes that run with a 4-byte aligned stack
3345 with modern codes that keep a 16-byte stack for SSE compatibility.
3346
3347 @item resbank
3348 @cindex @code{resbank} attribute
3349 On the SH2A target, this attribute enables the high-speed register
3350 saving and restoration using a register bank for @code{interrupt_handler}
3351 routines.  Saving to the bank is performed automatically after the CPU
3352 accepts an interrupt that uses a register bank.
3353
3354 The nineteen 32-bit registers comprising general register R0 to R14,
3355 control register GBR, and system registers MACH, MACL, and PR and the
3356 vector table address offset are saved into a register bank.  Register
3357 banks are stacked in first-in last-out (FILO) sequence.  Restoration
3358 from the bank is executed by issuing a RESBANK instruction.
3359
3360 @item returns_twice
3361 @cindex @code{returns_twice} attribute
3362 The @code{returns_twice} attribute tells the compiler that a function may
3363 return more than one time.  The compiler will ensure that all registers
3364 are dead before calling such a function and will emit a warning about
3365 the variables that may be clobbered after the second return from the
3366 function.  Examples of such functions are @code{setjmp} and @code{vfork}.
3367 The @code{longjmp}-like counterpart of such function, if any, might need
3368 to be marked with the @code{noreturn} attribute.
3369
3370 @item saveall
3371 @cindex save all registers on the Blackfin, H8/300, H8/300H, and H8S
3372 Use this attribute on the Blackfin, H8/300, H8/300H, and H8S to indicate that
3373 all registers except the stack pointer should be saved in the prologue
3374 regardless of whether they are used or not.
3375
3376 @item save_volatiles
3377 @cindex save volatile registers on the MicroBlaze
3378 Use this attribute on the MicroBlaze to indicate that the function is
3379 an interrupt handler.  All volatile registers (in addition to non-volatile
3380 registers) will be saved in the function prologue.  If the function is a leaf
3381 function, only volatiles used by the function are saved.  A normal function
3382 return is generated instead of a return from interrupt.
3383
3384 @item section ("@var{section-name}")
3385 @cindex @code{section} function attribute
3386 Normally, the compiler places the code it generates in the @code{text} section.
3387 Sometimes, however, you need additional sections, or you need certain
3388 particular functions to appear in special sections.  The @code{section}
3389 attribute specifies that a function lives in a particular section.
3390 For example, the declaration:
3391
3392 @smallexample
3393 extern void foobar (void) __attribute__ ((section ("bar")));
3394 @end smallexample
3395
3396 @noindent
3397 puts the function @code{foobar} in the @code{bar} section.
3398
3399 Some file formats do not support arbitrary sections so the @code{section}
3400 attribute is not available on all platforms.
3401 If you need to map the entire contents of a module to a particular
3402 section, consider using the facilities of the linker instead.
3403
3404 @item sentinel
3405 @cindex @code{sentinel} function attribute
3406 This function attribute ensures that a parameter in a function call is
3407 an explicit @code{NULL}.  The attribute is only valid on variadic
3408 functions.  By default, the sentinel is located at position zero, the
3409 last parameter of the function call.  If an optional integer position
3410 argument P is supplied to the attribute, the sentinel must be located at
3411 position P counting backwards from the end of the argument list.
3412
3413 @smallexample
3414 __attribute__ ((sentinel))
3415 is equivalent to
3416 __attribute__ ((sentinel(0)))
3417 @end smallexample
3418
3419 The attribute is automatically set with a position of 0 for the built-in
3420 functions @code{execl} and @code{execlp}.  The built-in function
3421 @code{execle} has the attribute set with a position of 1.
3422
3423 A valid @code{NULL} in this context is defined as zero with any pointer
3424 type.  If your system defines the @code{NULL} macro with an integer type
3425 then you need to add an explicit cast.  GCC replaces @code{stddef.h}
3426 with a copy that redefines NULL appropriately.
3427
3428 The warnings for missing or incorrect sentinels are enabled with
3429 @option{-Wformat}.
3430
3431 @item short_call
3432 See long_call/short_call.
3433
3434 @item shortcall
3435 See longcall/shortcall.
3436
3437 @item signal
3438 @cindex signal handler functions on the AVR processors
3439 Use this attribute on the AVR to indicate that the specified
3440 function is a signal handler.  The compiler will generate function
3441 entry and exit sequences suitable for use in a signal handler when this
3442 attribute is present.  Interrupts will be disabled inside the function.
3443
3444 @item sp_switch
3445 Use this attribute on the SH to indicate an @code{interrupt_handler}
3446 function should switch to an alternate stack.  It expects a string
3447 argument that names a global variable holding the address of the
3448 alternate stack.
3449
3450 @smallexample
3451 void *alt_stack;
3452 void f () __attribute__ ((interrupt_handler,
3453                           sp_switch ("alt_stack")));
3454 @end smallexample
3455
3456 @item stdcall
3457 @cindex functions that pop the argument stack on the 386
3458 On the Intel 386, the @code{stdcall} attribute causes the compiler to
3459 assume that the called function will pop off the stack space used to
3460 pass arguments, unless it takes a variable number of arguments.
3461
3462 @item syscall_linkage
3463 @cindex @code{syscall_linkage} attribute
3464 This attribute is used to modify the IA64 calling convention by marking
3465 all input registers as live at all function exits.  This makes it possible
3466 to restart a system call after an interrupt without having to save/restore
3467 the input registers.  This also prevents kernel data from leaking into
3468 application code.
3469
3470 @item target
3471 @cindex @code{target} function attribute
3472 The @code{target} attribute is used to specify that a function is to
3473 be compiled with different target options than specified on the
3474 command line.  This can be used for instance to have functions
3475 compiled with a different ISA (instruction set architecture) than the
3476 default.  You can also use the @samp{#pragma GCC target} pragma to set
3477 more than one function to be compiled with specific target options.
3478 @xref{Function Specific Option Pragmas}, for details about the
3479 @samp{#pragma GCC target} pragma.
3480
3481 For instance on a 386, you could compile one function with
3482 @code{target("sse4.1,arch=core2")} and another with
3483 @code{target("sse4a,arch=amdfam10")} that would be equivalent to
3484 compiling the first function with @option{-msse4.1} and
3485 @option{-march=core2} options, and the second function with
3486 @option{-msse4a} and @option{-march=amdfam10} options.  It is up to the
3487 user to make sure that a function is only invoked on a machine that
3488 supports the particular ISA it was compiled for (for example by using
3489 @code{cpuid} on 386 to determine what feature bits and architecture
3490 family are used).
3491
3492 @smallexample
3493 int core2_func (void) __attribute__ ((__target__ ("arch=core2")));
3494 int sse3_func (void) __attribute__ ((__target__ ("sse3")));
3495 @end smallexample
3496
3497 On the 386, the following options are allowed:
3498
3499 @table @samp
3500 @item abm
3501 @itemx no-abm
3502 @cindex @code{target("abm")} attribute
3503 Enable/disable the generation of the advanced bit instructions.
3504
3505 @item aes
3506 @itemx no-aes
3507 @cindex @code{target("aes")} attribute
3508 Enable/disable the generation of the AES instructions.
3509
3510 @item mmx
3511 @itemx no-mmx
3512 @cindex @code{target("mmx")} attribute
3513 Enable/disable the generation of the MMX instructions.
3514
3515 @item pclmul
3516 @itemx no-pclmul
3517 @cindex @code{target("pclmul")} attribute
3518 Enable/disable the generation of the PCLMUL instructions.
3519
3520 @item popcnt
3521 @itemx no-popcnt
3522 @cindex @code{target("popcnt")} attribute
3523 Enable/disable the generation of the POPCNT instruction.
3524
3525 @item sse
3526 @itemx no-sse
3527 @cindex @code{target("sse")} attribute
3528 Enable/disable the generation of the SSE instructions.
3529
3530 @item sse2
3531 @itemx no-sse2
3532 @cindex @code{target("sse2")} attribute
3533 Enable/disable the generation of the SSE2 instructions.
3534
3535 @item sse3
3536 @itemx no-sse3
3537 @cindex @code{target("sse3")} attribute
3538 Enable/disable the generation of the SSE3 instructions.
3539
3540 @item sse4
3541 @itemx no-sse4
3542 @cindex @code{target("sse4")} attribute
3543 Enable/disable the generation of the SSE4 instructions (both SSE4.1
3544 and SSE4.2).
3545
3546 @item sse4.1
3547 @itemx no-sse4.1
3548 @cindex @code{target("sse4.1")} attribute
3549 Enable/disable the generation of the sse4.1 instructions.
3550
3551 @item sse4.2
3552 @itemx no-sse4.2
3553 @cindex @code{target("sse4.2")} attribute
3554 Enable/disable the generation of the sse4.2 instructions.
3555
3556 @item sse4a
3557 @itemx no-sse4a
3558 @cindex @code{target("sse4a")} attribute
3559 Enable/disable the generation of the SSE4A instructions.
3560
3561 @item fma4
3562 @itemx no-fma4
3563 @cindex @code{target("fma4")} attribute
3564 Enable/disable the generation of the FMA4 instructions.
3565
3566 @item xop
3567 @itemx no-xop
3568 @cindex @code{target("xop")} attribute
3569 Enable/disable the generation of the XOP instructions.
3570
3571 @item lwp
3572 @itemx no-lwp
3573 @cindex @code{target("lwp")} attribute
3574 Enable/disable the generation of the LWP instructions.
3575
3576 @item ssse3
3577 @itemx no-ssse3
3578 @cindex @code{target("ssse3")} attribute
3579 Enable/disable the generation of the SSSE3 instructions.
3580
3581 @item cld
3582 @itemx no-cld
3583 @cindex @code{target("cld")} attribute
3584 Enable/disable the generation of the CLD before string moves.
3585
3586 @item fancy-math-387
3587 @itemx no-fancy-math-387
3588 @cindex @code{target("fancy-math-387")} attribute
3589 Enable/disable the generation of the @code{sin}, @code{cos}, and
3590 @code{sqrt} instructions on the 387 floating point unit.
3591
3592 @item fused-madd
3593 @itemx no-fused-madd
3594 @cindex @code{target("fused-madd")} attribute
3595 Enable/disable the generation of the fused multiply/add instructions.
3596
3597 @item ieee-fp
3598 @itemx no-ieee-fp
3599 @cindex @code{target("ieee-fp")} attribute
3600 Enable/disable the generation of floating point that depends on IEEE arithmetic.
3601
3602 @item inline-all-stringops
3603 @itemx no-inline-all-stringops
3604 @cindex @code{target("inline-all-stringops")} attribute
3605 Enable/disable inlining of string operations.
3606
3607 @item inline-stringops-dynamically
3608 @itemx no-inline-stringops-dynamically
3609 @cindex @code{target("inline-stringops-dynamically")} attribute
3610 Enable/disable the generation of the inline code to do small string
3611 operations and calling the library routines for large operations.
3612
3613 @item align-stringops
3614 @itemx no-align-stringops
3615 @cindex @code{target("align-stringops")} attribute
3616 Do/do not align destination of inlined string operations.
3617
3618 @item recip
3619 @itemx no-recip
3620 @cindex @code{target("recip")} attribute
3621 Enable/disable the generation of RCPSS, RCPPS, RSQRTSS and RSQRTPS
3622 instructions followed an additional Newton-Raphson step instead of
3623 doing a floating point division.
3624
3625 @item arch=@var{ARCH}
3626 @cindex @code{target("arch=@var{ARCH}")} attribute
3627 Specify the architecture to generate code for in compiling the function.
3628
3629 @item tune=@var{TUNE}
3630 @cindex @code{target("tune=@var{TUNE}")} attribute
3631 Specify the architecture to tune for in compiling the function.
3632
3633 @item fpmath=@var{FPMATH}
3634 @cindex @code{target("fpmath=@var{FPMATH}")} attribute
3635 Specify which floating point unit to use.  The
3636 @code{target("fpmath=sse,387")} option must be specified as
3637 @code{target("fpmath=sse+387")} because the comma would separate
3638 different options.
3639 @end table
3640
3641 On the PowerPC, the following options are allowed:
3642
3643 @table @samp
3644 @item altivec
3645 @itemx no-altivec
3646 @cindex @code{target("altivec")} attribute
3647 Generate code that uses (does not use) AltiVec instructions.  In
3648 32-bit code, you cannot enable Altivec instructions unless
3649 @option{-mabi=altivec} was used on the command line.
3650
3651 @item cmpb
3652 @itemx no-cmpb
3653 @cindex @code{target("cmpb")} attribute
3654 Generate code that uses (does not use) the compare bytes instruction
3655 implemented on the POWER6 processor and other processors that support
3656 the PowerPC V2.05 architecture.
3657
3658 @item dlmzb
3659 @itemx no-dlmzb
3660 @cindex @code{target("dlmzb")} attribute
3661 Generate code that uses (does not use) the string-search @samp{dlmzb}
3662 instruction on the IBM 405, 440, 464 and 476 processors.  This instruction is
3663 generated by default when targetting those processors.
3664
3665 @item fprnd
3666 @itemx no-fprnd
3667 @cindex @code{target("fprnd")} attribute
3668 Generate code that uses (does not use) the FP round to integer
3669 instructions implemented on the POWER5+ processor and other processors
3670 that support the PowerPC V2.03 architecture.
3671
3672 @item hard-dfp
3673 @itemx no-hard-dfp
3674 @cindex @code{target("hard-dfp")} attribute
3675 Generate code that uses (does not use) the decimal floating point
3676 instructions implemented on some POWER processors.
3677
3678 @item isel
3679 @itemx no-isel
3680 @cindex @code{target("isel")} attribute
3681 Generate code that uses (does not use) ISEL instruction.
3682
3683 @item mfcrf
3684 @itemx no-mfcrf
3685 @cindex @code{target("mfcrf")} attribute
3686 Generate code that uses (does not use) the move from condition
3687 register field instruction implemented on the POWER4 processor and
3688 other processors that support the PowerPC V2.01 architecture.
3689
3690 @item mfpgpr
3691 @itemx no-mfpgpr
3692 @cindex @code{target("mfpgpr")} attribute
3693 Generate code that uses (does not use) the FP move to/from general
3694 purpose register instructions implemented on the POWER6X processor and
3695 other processors that support the extended PowerPC V2.05 architecture.
3696
3697 @item mulhw
3698 @itemx no-mulhw
3699 @cindex @code{target("mulhw")} attribute
3700 Generate code that uses (does not use) the half-word multiply and
3701 multiply-accumulate instructions on the IBM 405, 440, 464 and 476 processors.
3702 These instructions are generated by default when targetting those
3703 processors.
3704
3705 @item multiple
3706 @itemx no-multiple
3707 @cindex @code{target("multiple")} attribute
3708 Generate code that uses (does not use) the load multiple word
3709 instructions and the store multiple word instructions.
3710
3711 @item update
3712 @itemx no-update
3713 @cindex @code{target("update")} attribute
3714 Generate code that uses (does not use) the load or store instructions
3715 that update the base register to the address of the calculated memory
3716 location.
3717
3718 @item popcntb
3719 @itemx no-popcntb
3720 @cindex @code{target("popcntb")} attribute
3721 Generate code that uses (does not use) the popcount and double
3722 precision FP reciprocal estimate instruction implemented on the POWER5
3723 processor and other processors that support the PowerPC V2.02
3724 architecture.
3725
3726 @item popcntd
3727 @itemx no-popcntd
3728 @cindex @code{target("popcntd")} attribute
3729 Generate code that uses (does not use) the popcount instruction
3730 implemented on the POWER7 processor and other processors that support
3731 the PowerPC V2.06 architecture.
3732
3733 @item powerpc-gfxopt
3734 @itemx no-powerpc-gfxopt
3735 @cindex @code{target("powerpc-gfxopt")} attribute
3736 Generate code that uses (does not use) the optional PowerPC
3737 architecture instructions in the Graphics group, including
3738 floating-point select.
3739
3740 @item powerpc-gpopt
3741 @itemx no-powerpc-gpopt
3742 @cindex @code{target("powerpc-gpopt")} attribute
3743 Generate code that uses (does not use) the optional PowerPC
3744 architecture instructions in the General Purpose group, including
3745 floating-point square root.
3746
3747 @item recip-precision
3748 @itemx no-recip-precision
3749 @cindex @code{target("recip-precision")} attribute
3750 Assume (do not assume) that the reciprocal estimate instructions
3751 provide higher precision estimates than is mandated by the powerpc
3752 ABI.
3753
3754 @item string
3755 @itemx no-string
3756 @cindex @code{target("string")} attribute
3757 Generate code that uses (does not use) the load string instructions
3758 and the store string word instructions to save multiple registers and
3759 do small block moves.
3760
3761 @item vsx
3762 @itemx no-vsx
3763 @cindex @code{target("vsx")} attribute
3764 Generate code that uses (does not use) vector/scalar (VSX)
3765 instructions, and also enable the use of built-in functions that allow
3766 more direct access to the VSX instruction set.  In 32-bit code, you
3767 cannot enable VSX or Altivec instructions unless
3768 @option{-mabi=altivec} was used on the command line.
3769
3770 @item friz
3771 @itemx no-friz
3772 @cindex @code{target("friz")} attribute
3773 Generate (do not generate) the @code{friz} instruction when the
3774 @option{-funsafe-math-optimizations} option is used to optimize
3775 rounding a floating point value to 64-bit integer and back to floating
3776 point.  The @code{friz} instruction does not return the same value if
3777 the floating point number is too large to fit in an integer.
3778
3779 @item avoid-indexed-addresses
3780 @itemx no-avoid-indexed-addresses
3781 @cindex @code{target("avoid-indexed-addresses")} attribute
3782 Generate code that tries to avoid (not avoid) the use of indexed load
3783 or store instructions.
3784
3785 @item paired
3786 @itemx no-paired
3787 @cindex @code{target("paired")} attribute
3788 Generate code that uses (does not use) the generation of PAIRED simd
3789 instructions.
3790
3791 @item longcall
3792 @itemx no-longcall
3793 @cindex @code{target("longcall")} attribute
3794 Generate code that assumes (does not assume) that all calls are far
3795 away so that a longer more expensive calling sequence is required.
3796
3797 @item cpu=@var{CPU}
3798 @cindex @code{target("cpu=@var{CPU}")} attribute
3799 Specify the architecture to generate code for when compiling the
3800 function.  If you select the @code{target("cpu=power7")} attribute when
3801 generating 32-bit code, VSX and Altivec instructions are not generated
3802 unless you use the @option{-mabi=altivec} option on the command line.
3803
3804 @item tune=@var{TUNE}
3805 @cindex @code{target("tune=@var{TUNE}")} attribute
3806 Specify the architecture to tune for when compiling the function.  If
3807 you do not specify the @code{target("tune=@var{TUNE}")} attribute and
3808 you do specify the @code{target("cpu=@var{CPU}")} attribute,
3809 compilation will tune for the @var{CPU} architecture, and not the
3810 default tuning specified on the command line.
3811 @end table
3812
3813 On the 386/x86_64 and PowerPC backends, you can use either multiple
3814 strings to specify multiple options, or you can separate the option
3815 with a comma (@code{,}).
3816
3817 On the 386/x86_64 and PowerPC backends, the inliner will not inline a
3818 function that has different target options than the caller, unless the
3819 callee has a subset of the target options of the caller.  For example
3820 a function declared with @code{target("sse3")} can inline a function
3821 with @code{target("sse2")}, since @code{-msse3} implies @code{-msse2}.
3822
3823 The @code{target} attribute is not implemented in GCC versions earlier
3824 than 4.4 for the i386/x86_64 and 4.6 for the PowerPC backends.  It is
3825 not currently implemented for other backends.
3826
3827 @item tiny_data
3828 @cindex tiny data section on the H8/300H and H8S
3829 Use this attribute on the H8/300H and H8S to indicate that the specified
3830 variable should be placed into the tiny data section.
3831 The compiler will generate more efficient code for loads and stores
3832 on data in the tiny data section.  Note the tiny data area is limited to
3833 slightly under 32kbytes of data.
3834
3835 @item trap_exit
3836 Use this attribute on the SH for an @code{interrupt_handler} to return using
3837 @code{trapa} instead of @code{rte}.  This attribute expects an integer
3838 argument specifying the trap number to be used.
3839
3840 @item unused
3841 @cindex @code{unused} attribute.
3842 This attribute, attached to a function, means that the function is meant
3843 to be possibly unused.  GCC will not produce a warning for this
3844 function.
3845
3846 @item used
3847 @cindex @code{used} attribute.
3848 This attribute, attached to a function, means that code must be emitted
3849 for the function even if it appears that the function is not referenced.
3850 This is useful, for example, when the function is referenced only in
3851 inline assembly.
3852
3853 When applied to a member function of a C++ class template, the
3854 attribute also means that the function will be instantiated if the
3855 class itself is instantiated.
3856
3857 @item version_id
3858 @cindex @code{version_id} attribute
3859 This IA64 HP-UX attribute, attached to a global variable or function, renames a
3860 symbol to contain a version string, thus allowing for function level
3861 versioning.  HP-UX system header files may use version level functioning
3862 for some system calls.
3863
3864 @smallexample
3865 extern int foo () __attribute__((version_id ("20040821")));
3866 @end smallexample
3867
3868 Calls to @var{foo} will be mapped to calls to @var{foo@{20040821@}}.
3869
3870 @item visibility ("@var{visibility_type}")
3871 @cindex @code{visibility} attribute
3872 This attribute affects the linkage of the declaration to which it is attached.
3873 There are four supported @var{visibility_type} values: default,
3874 hidden, protected or internal visibility.
3875
3876 @smallexample
3877 void __attribute__ ((visibility ("protected")))
3878 f () @{ /* @r{Do something.} */; @}
3879 int i __attribute__ ((visibility ("hidden")));
3880 @end smallexample
3881
3882 The possible values of @var{visibility_type} correspond to the
3883 visibility settings in the ELF gABI.
3884
3885 @table @dfn
3886 @c keep this list of visibilities in alphabetical order.
3887
3888 @item default
3889 Default visibility is the normal case for the object file format.
3890 This value is available for the visibility attribute to override other
3891 options that may change the assumed visibility of entities.
3892
3893 On ELF, default visibility means that the declaration is visible to other
3894 modules and, in shared libraries, means that the declared entity may be
3895 overridden.
3896
3897 On Darwin, default visibility means that the declaration is visible to
3898 other modules.
3899
3900 Default visibility corresponds to ``external linkage'' in the language.
3901
3902 @item hidden
3903 Hidden visibility indicates that the entity declared will have a new
3904 form of linkage, which we'll call ``hidden linkage''.  Two
3905 declarations of an object with hidden linkage refer to the same object
3906 if they are in the same shared object.
3907
3908 @item internal
3909 Internal visibility is like hidden visibility, but with additional
3910 processor specific semantics.  Unless otherwise specified by the
3911 psABI, GCC defines internal visibility to mean that a function is
3912 @emph{never} called from another module.  Compare this with hidden
3913 functions which, while they cannot be referenced directly by other
3914 modules, can be referenced indirectly via function pointers.  By
3915 indicating that a function cannot be called from outside the module,
3916 GCC may for instance omit the load of a PIC register since it is known
3917 that the calling function loaded the correct value.
3918
3919 @item protected
3920 Protected visibility is like default visibility except that it
3921 indicates that references within the defining module will bind to the
3922 definition in that module.  That is, the declared entity cannot be
3923 overridden by another module.
3924
3925 @end table
3926
3927 All visibilities are supported on many, but not all, ELF targets
3928 (supported when the assembler supports the @samp{.visibility}
3929 pseudo-op).  Default visibility is supported everywhere.  Hidden
3930 visibility is supported on Darwin targets.
3931
3932 The visibility attribute should be applied only to declarations which
3933 would otherwise have external linkage.  The attribute should be applied
3934 consistently, so that the same entity should not be declared with
3935 different settings of the attribute.
3936
3937 In C++, the visibility attribute applies to types as well as functions
3938 and objects, because in C++ types have linkage.  A class must not have
3939 greater visibility than its non-static data member types and bases,
3940 and class members default to the visibility of their class.  Also, a
3941 declaration without explicit visibility is limited to the visibility
3942 of its type.
3943
3944 In C++, you can mark member functions and static member variables of a
3945 class with the visibility attribute.  This is useful if you know a
3946 particular method or static member variable should only be used from
3947 one shared object; then you can mark it hidden while the rest of the
3948 class has default visibility.  Care must be taken to avoid breaking
3949 the One Definition Rule; for example, it is usually not useful to mark
3950 an inline method as hidden without marking the whole class as hidden.
3951
3952 A C++ namespace declaration can also have the visibility attribute.
3953 This attribute applies only to the particular namespace body, not to
3954 other definitions of the same namespace; it is equivalent to using
3955 @samp{#pragma GCC visibility} before and after the namespace
3956 definition (@pxref{Visibility Pragmas}).
3957
3958 In C++, if a template argument has limited visibility, this
3959 restriction is implicitly propagated to the template instantiation.
3960 Otherwise, template instantiations and specializations default to the
3961 visibility of their template.
3962
3963 If both the template and enclosing class have explicit visibility, the
3964 visibility from the template is used.
3965
3966 @item vliw
3967 @cindex @code{vliw} attribute
3968 On MeP, the @code{vliw} attribute tells the compiler to emit
3969 instructions in VLIW mode instead of core mode.  Note that this
3970 attribute is not allowed unless a VLIW coprocessor has been configured
3971 and enabled through command line options.
3972
3973 @item warn_unused_result
3974 @cindex @code{warn_unused_result} attribute
3975 The @code{warn_unused_result} attribute causes a warning to be emitted
3976 if a caller of the function with this attribute does not use its
3977 return value.  This is useful for functions where not checking
3978 the result is either a security problem or always a bug, such as
3979 @code{realloc}.
3980
3981 @smallexample
3982 int fn () __attribute__ ((warn_unused_result));
3983 int foo ()
3984 @{
3985   if (fn () < 0) return -1;
3986   fn ();
3987   return 0;
3988 @}
3989 @end smallexample
3990
3991 results in warning on line 5.
3992
3993 @item weak
3994 @cindex @code{weak} attribute
3995 The @code{weak} attribute causes the declaration to be emitted as a weak
3996 symbol rather than a global.  This is primarily useful in defining
3997 library functions which can be overridden in user code, though it can
3998 also be used with non-function declarations.  Weak symbols are supported
3999 for ELF targets, and also for a.out targets when using the GNU assembler
4000 and linker.
4001
4002 @item weakref
4003 @itemx weakref ("@var{target}")
4004 @cindex @code{weakref} attribute
4005 The @code{weakref} attribute marks a declaration as a weak reference.
4006 Without arguments, it should be accompanied by an @code{alias} attribute
4007 naming the target symbol.  Optionally, the @var{target} may be given as
4008 an argument to @code{weakref} itself.  In either case, @code{weakref}
4009 implicitly marks the declaration as @code{weak}.  Without a
4010 @var{target}, given as an argument to @code{weakref} or to @code{alias},
4011 @code{weakref} is equivalent to @code{weak}.
4012
4013 @smallexample
4014 static int x() __attribute__ ((weakref ("y")));
4015 /* is equivalent to... */
4016 static int x() __attribute__ ((weak, weakref, alias ("y")));
4017 /* and to... */
4018 static int x() __attribute__ ((weakref));
4019 static int x() __attribute__ ((alias ("y")));
4020 @end smallexample
4021
4022 A weak reference is an alias that does not by itself require a
4023 definition to be given for the target symbol.  If the target symbol is
4024 only referenced through weak references, then it becomes a @code{weak}
4025 undefined symbol.  If it is directly referenced, however, then such
4026 strong references prevail, and a definition will be required for the
4027 symbol, not necessarily in the same translation unit.
4028
4029 The effect is equivalent to moving all references to the alias to a
4030 separate translation unit, renaming the alias to the aliased symbol,
4031 declaring it as weak, compiling the two separate translation units and
4032 performing a reloadable link on them.
4033
4034 At present, a declaration to which @code{weakref} is attached can
4035 only be @code{static}.
4036
4037 @end table
4038
4039 You can specify multiple attributes in a declaration by separating them
4040 by commas within the double parentheses or by immediately following an
4041 attribute declaration with another attribute declaration.
4042
4043 @cindex @code{#pragma}, reason for not using
4044 @cindex pragma, reason for not using
4045 Some people object to the @code{__attribute__} feature, suggesting that
4046 ISO C's @code{#pragma} should be used instead.  At the time
4047 @code{__attribute__} was designed, there were two reasons for not doing
4048 this.
4049
4050 @enumerate
4051 @item
4052 It is impossible to generate @code{#pragma} commands from a macro.
4053
4054 @item
4055 There is no telling what the same @code{#pragma} might mean in another
4056 compiler.
4057 @end enumerate
4058
4059 These two reasons applied to almost any application that might have been
4060 proposed for @code{#pragma}.  It was basically a mistake to use
4061 @code{#pragma} for @emph{anything}.
4062
4063 The ISO C99 standard includes @code{_Pragma}, which now allows pragmas
4064 to be generated from macros.  In addition, a @code{#pragma GCC}
4065 namespace is now in use for GCC-specific pragmas.  However, it has been
4066 found convenient to use @code{__attribute__} to achieve a natural
4067 attachment of attributes to their corresponding declarations, whereas
4068 @code{#pragma GCC} is of use for constructs that do not naturally form
4069 part of the grammar.  @xref{Other Directives,,Miscellaneous
4070 Preprocessing Directives, cpp, The GNU C Preprocessor}.
4071
4072 @node Attribute Syntax
4073 @section Attribute Syntax
4074 @cindex attribute syntax
4075
4076 This section describes the syntax with which @code{__attribute__} may be
4077 used, and the constructs to which attribute specifiers bind, for the C
4078 language.  Some details may vary for C++ and Objective-C@.  Because of
4079 infelicities in the grammar for attributes, some forms described here
4080 may not be successfully parsed in all cases.
4081
4082 There are some problems with the semantics of attributes in C++.  For
4083 example, there are no manglings for attributes, although they may affect
4084 code generation, so problems may arise when attributed types are used in
4085 conjunction with templates or overloading.  Similarly, @code{typeid}
4086 does not distinguish between types with different attributes.  Support
4087 for attributes in C++ may be restricted in future to attributes on
4088 declarations only, but not on nested declarators.
4089
4090 @xref{Function Attributes}, for details of the semantics of attributes
4091 applying to functions.  @xref{Variable Attributes}, for details of the
4092 semantics of attributes applying to variables.  @xref{Type Attributes},
4093 for details of the semantics of attributes applying to structure, union
4094 and enumerated types.
4095
4096 An @dfn{attribute specifier} is of the form
4097 @code{__attribute__ ((@var{attribute-list}))}.  An @dfn{attribute list}
4098 is a possibly empty comma-separated sequence of @dfn{attributes}, where
4099 each attribute is one of the following:
4100
4101 @itemize @bullet
4102 @item
4103 Empty.  Empty attributes are ignored.
4104
4105 @item
4106 A word (which may be an identifier such as @code{unused}, or a reserved
4107 word such as @code{const}).
4108
4109 @item
4110 A word, followed by, in parentheses, parameters for the attribute.
4111 These parameters take one of the following forms:
4112
4113 @itemize @bullet
4114 @item
4115 An identifier.  For example, @code{mode} attributes use this form.
4116
4117 @item
4118 An identifier followed by a comma and a non-empty comma-separated list
4119 of expressions.  For example, @code{format} attributes use this form.
4120
4121 @item
4122 A possibly empty comma-separated list of expressions.  For example,
4123 @code{format_arg} attributes use this form with the list being a single
4124 integer constant expression, and @code{alias} attributes use this form
4125 with the list being a single string constant.
4126 @end itemize
4127 @end itemize
4128
4129 An @dfn{attribute specifier list} is a sequence of one or more attribute
4130 specifiers, not separated by any other tokens.
4131
4132 In GNU C, an attribute specifier list may appear after the colon following a
4133 label, other than a @code{case} or @code{default} label.  The only
4134 attribute it makes sense to use after a label is @code{unused}.  This
4135 feature is intended for code generated by programs which contains labels
4136 that may be unused but which is compiled with @option{-Wall}.  It would
4137 not normally be appropriate to use in it human-written code, though it
4138 could be useful in cases where the code that jumps to the label is
4139 contained within an @code{#ifdef} conditional.  GNU C++ only permits
4140 attributes on labels if the attribute specifier is immediately
4141 followed by a semicolon (i.e., the label applies to an empty
4142 statement).  If the semicolon is missing, C++ label attributes are
4143 ambiguous, as it is permissible for a declaration, which could begin
4144 with an attribute list, to be labelled in C++.  Declarations cannot be
4145 labelled in C90 or C99, so the ambiguity does not arise there.
4146
4147 An attribute specifier list may appear as part of a @code{struct},
4148 @code{union} or @code{enum} specifier.  It may go either immediately
4149 after the @code{struct}, @code{union} or @code{enum} keyword, or after
4150 the closing brace.  The former syntax is preferred.
4151 Where attribute specifiers follow the closing brace, they are considered
4152 to relate to the structure, union or enumerated type defined, not to any
4153 enclosing declaration the type specifier appears in, and the type
4154 defined is not complete until after the attribute specifiers.
4155 @c Otherwise, there would be the following problems: a shift/reduce
4156 @c conflict between attributes binding the struct/union/enum and
4157 @c binding to the list of specifiers/qualifiers; and "aligned"
4158 @c attributes could use sizeof for the structure, but the size could be
4159 @c changed later by "packed" attributes.
4160
4161 Otherwise, an attribute specifier appears as part of a declaration,
4162 counting declarations of unnamed parameters and type names, and relates
4163 to that declaration (which may be nested in another declaration, for
4164 example in the case of a parameter declaration), or to a particular declarator
4165 within a declaration.  Where an
4166 attribute specifier is applied to a parameter declared as a function or
4167 an array, it should apply to the function or array rather than the
4168 pointer to which the parameter is implicitly converted, but this is not
4169 yet correctly implemented.
4170
4171 Any list of specifiers and qualifiers at the start of a declaration may
4172 contain attribute specifiers, whether or not such a list may in that
4173 context contain storage class specifiers.  (Some attributes, however,
4174 are essentially in the nature of storage class specifiers, and only make
4175 sense where storage class specifiers may be used; for example,
4176 @code{section}.)  There is one necessary limitation to this syntax: the
4177 first old-style parameter declaration in a function definition cannot
4178 begin with an attribute specifier, because such an attribute applies to
4179 the function instead by syntax described below (which, however, is not
4180 yet implemented in this case).  In some other cases, attribute
4181 specifiers are permitted by this grammar but not yet supported by the
4182 compiler.  All attribute specifiers in this place relate to the
4183 declaration as a whole.  In the obsolescent usage where a type of
4184 @code{int} is implied by the absence of type specifiers, such a list of
4185 specifiers and qualifiers may be an attribute specifier list with no
4186 other specifiers or qualifiers.
4187
4188 At present, the first parameter in a function prototype must have some
4189 type specifier which is not an attribute specifier; this resolves an
4190 ambiguity in the interpretation of @code{void f(int
4191 (__attribute__((foo)) x))}, but is subject to change.  At present, if
4192 the parentheses of a function declarator contain only attributes then
4193 those attributes are ignored, rather than yielding an error or warning
4194 or implying a single parameter of type int, but this is subject to
4195 change.
4196
4197 An attribute specifier list may appear immediately before a declarator
4198 (other than the first) in a comma-separated list of declarators in a
4199 declaration of more than one identifier using a single list of
4200 specifiers and qualifiers.  Such attribute specifiers apply
4201 only to the identifier before whose declarator they appear.  For
4202 example, in
4203
4204 @smallexample
4205 __attribute__((noreturn)) void d0 (void),
4206     __attribute__((format(printf, 1, 2))) d1 (const char *, ...),
4207      d2 (void)
4208 @end smallexample
4209
4210 @noindent
4211 the @code{noreturn} attribute applies to all the functions
4212 declared; the @code{format} attribute only applies to @code{d1}.
4213
4214 An attribute specifier list may appear immediately before the comma,
4215 @code{=} or semicolon terminating the declaration of an identifier other
4216 than a function definition.  Such attribute specifiers apply
4217 to the declared object or function.  Where an
4218 assembler name for an object or function is specified (@pxref{Asm
4219 Labels}), the attribute must follow the @code{asm}
4220 specification.
4221
4222 An attribute specifier list may, in future, be permitted to appear after
4223 the declarator in a function definition (before any old-style parameter
4224 declarations or the function body).
4225
4226 Attribute specifiers may be mixed with type qualifiers appearing inside
4227 the @code{[]} of a parameter array declarator, in the C99 construct by
4228 which such qualifiers are applied to the pointer to which the array is
4229 implicitly converted.  Such attribute specifiers apply to the pointer,
4230 not to the array, but at present this is not implemented and they are
4231 ignored.
4232
4233 An attribute specifier list may appear at the start of a nested
4234 declarator.  At present, there are some limitations in this usage: the
4235 attributes correctly apply to the declarator, but for most individual
4236 attributes the semantics this implies are not implemented.
4237 When attribute specifiers follow the @code{*} of a pointer
4238 declarator, they may be mixed with any type qualifiers present.
4239 The following describes the formal semantics of this syntax.  It will make the
4240 most sense if you are familiar with the formal specification of
4241 declarators in the ISO C standard.
4242
4243 Consider (as in C99 subclause 6.7.5 paragraph 4) a declaration @code{T
4244 D1}, where @code{T} contains declaration specifiers that specify a type
4245 @var{Type} (such as @code{int}) and @code{D1} is a declarator that
4246 contains an identifier @var{ident}.  The type specified for @var{ident}
4247 for derived declarators whose type does not include an attribute
4248 specifier is as in the ISO C standard.
4249
4250 If @code{D1} has the form @code{( @var{attribute-specifier-list} D )},
4251 and the declaration @code{T D} specifies the type
4252 ``@var{derived-declarator-type-list} @var{Type}'' for @var{ident}, then
4253 @code{T D1} specifies the type ``@var{derived-declarator-type-list}
4254 @var{attribute-specifier-list} @var{Type}'' for @var{ident}.
4255
4256 If @code{D1} has the form @code{*
4257 @var{type-qualifier-and-attribute-specifier-list} D}, and the
4258 declaration @code{T D} specifies the type
4259 ``@var{derived-declarator-type-list} @var{Type}'' for @var{ident}, then
4260 @code{T D1} specifies the type ``@var{derived-declarator-type-list}
4261 @var{type-qualifier-and-attribute-specifier-list} pointer to @var{Type}'' for
4262 @var{ident}.
4263
4264 For example,
4265
4266 @smallexample
4267 void (__attribute__((noreturn)) ****f) (void);
4268 @end smallexample
4269
4270 @noindent
4271 specifies the type ``pointer to pointer to pointer to pointer to
4272 non-returning function returning @code{void}''.  As another example,
4273
4274 @smallexample
4275 char *__attribute__((aligned(8))) *f;
4276 @end smallexample
4277
4278 @noindent
4279 specifies the type ``pointer to 8-byte-aligned pointer to @code{char}''.
4280 Note again that this does not work with most attributes; for example,
4281 the usage of @samp{aligned} and @samp{noreturn} attributes given above
4282 is not yet supported.
4283
4284 For compatibility with existing code written for compiler versions that
4285 did not implement attributes on nested declarators, some laxity is
4286 allowed in the placing of attributes.  If an attribute that only applies
4287 to types is applied to a declaration, it will be treated as applying to
4288 the type of that declaration.  If an attribute that only applies to
4289 declarations is applied to the type of a declaration, it will be treated
4290 as applying to that declaration; and, for compatibility with code
4291 placing the attributes immediately before the identifier declared, such
4292 an attribute applied to a function return type will be treated as
4293 applying to the function type, and such an attribute applied to an array
4294 element type will be treated as applying to the array type.  If an
4295 attribute that only applies to function types is applied to a
4296 pointer-to-function type, it will be treated as applying to the pointer
4297 target type; if such an attribute is applied to a function return type
4298 that is not a pointer-to-function type, it will be treated as applying
4299 to the function type.
4300
4301 @node Function Prototypes
4302 @section Prototypes and Old-Style Function Definitions
4303 @cindex function prototype declarations
4304 @cindex old-style function definitions
4305 @cindex promotion of formal parameters
4306
4307 GNU C extends ISO C to allow a function prototype to override a later
4308 old-style non-prototype definition.  Consider the following example:
4309
4310 @smallexample
4311 /* @r{Use prototypes unless the compiler is old-fashioned.}  */
4312 #ifdef __STDC__
4313 #define P(x) x
4314 #else
4315 #define P(x) ()
4316 #endif
4317
4318 /* @r{Prototype function declaration.}  */
4319 int isroot P((uid_t));
4320
4321 /* @r{Old-style function definition.}  */
4322 int
4323 isroot (x)   /* @r{??? lossage here ???} */
4324      uid_t x;
4325 @{
4326   return x == 0;
4327 @}
4328 @end smallexample
4329
4330 Suppose the type @code{uid_t} happens to be @code{short}.  ISO C does
4331 not allow this example, because subword arguments in old-style
4332 non-prototype definitions are promoted.  Therefore in this example the
4333 function definition's argument is really an @code{int}, which does not
4334 match the prototype argument type of @code{short}.
4335
4336 This restriction of ISO C makes it hard to write code that is portable
4337 to traditional C compilers, because the programmer does not know
4338 whether the @code{uid_t} type is @code{short}, @code{int}, or
4339 @code{long}.  Therefore, in cases like these GNU C allows a prototype
4340 to override a later old-style definition.  More precisely, in GNU C, a
4341 function prototype argument type overrides the argument type specified
4342 by a later old-style definition if the former type is the same as the
4343 latter type before promotion.  Thus in GNU C the above example is
4344 equivalent to the following:
4345
4346 @smallexample
4347 int isroot (uid_t);
4348
4349 int
4350 isroot (uid_t x)
4351 @{
4352   return x == 0;
4353 @}
4354 @end smallexample
4355
4356 @noindent
4357 GNU C++ does not support old-style function definitions, so this
4358 extension is irrelevant.
4359
4360 @node C++ Comments
4361 @section C++ Style Comments
4362 @cindex @code{//}
4363 @cindex C++ comments
4364 @cindex comments, C++ style
4365
4366 In GNU C, you may use C++ style comments, which start with @samp{//} and
4367 continue until the end of the line.  Many other C implementations allow
4368 such comments, and they are included in the 1999 C standard.  However,
4369 C++ style comments are not recognized if you specify an @option{-std}
4370 option specifying a version of ISO C before C99, or @option{-ansi}
4371 (equivalent to @option{-std=c90}).
4372
4373 @node Dollar Signs
4374 @section Dollar Signs in Identifier Names
4375 @cindex $
4376 @cindex dollar signs in identifier names
4377 @cindex identifier names, dollar signs in
4378
4379 In GNU C, you may normally use dollar signs in identifier names.
4380 This is because many traditional C implementations allow such identifiers.
4381 However, dollar signs in identifiers are not supported on a few target
4382 machines, typically because the target assembler does not allow them.
4383
4384 @node Character Escapes
4385 @section The Character @key{ESC} in Constants
4386
4387 You can use the sequence @samp{\e} in a string or character constant to
4388 stand for the ASCII character @key{ESC}.
4389
4390 @node Variable Attributes
4391 @section Specifying Attributes of Variables
4392 @cindex attribute of variables
4393 @cindex variable attributes
4394
4395 The keyword @code{__attribute__} allows you to specify special
4396 attributes of variables or structure fields.  This keyword is followed
4397 by an attribute specification inside double parentheses.  Some
4398 attributes are currently defined generically for variables.
4399 Other attributes are defined for variables on particular target
4400 systems.  Other attributes are available for functions
4401 (@pxref{Function Attributes}) and for types (@pxref{Type Attributes}).
4402 Other front ends might define more attributes
4403 (@pxref{C++ Extensions,,Extensions to the C++ Language}).
4404
4405 You may also specify attributes with @samp{__} preceding and following
4406 each keyword.  This allows you to use them in header files without
4407 being concerned about a possible macro of the same name.  For example,
4408 you may use @code{__aligned__} instead of @code{aligned}.
4409
4410 @xref{Attribute Syntax}, for details of the exact syntax for using
4411 attributes.
4412
4413 @table @code
4414 @cindex @code{aligned} attribute
4415 @item aligned (@var{alignment})
4416 This attribute specifies a minimum alignment for the variable or
4417 structure field, measured in bytes.  For example, the declaration:
4418
4419 @smallexample
4420 int x __attribute__ ((aligned (16))) = 0;
4421 @end smallexample
4422
4423 @noindent
4424 causes the compiler to allocate the global variable @code{x} on a
4425 16-byte boundary.  On a 68040, this could be used in conjunction with
4426 an @code{asm} expression to access the @code{move16} instruction which
4427 requires 16-byte aligned operands.
4428
4429 You can also specify the alignment of structure fields.  For example, to
4430 create a double-word aligned @code{int} pair, you could write:
4431
4432 @smallexample
4433 struct foo @{ int x[2] __attribute__ ((aligned (8))); @};
4434 @end smallexample
4435
4436 @noindent
4437 This is an alternative to creating a union with a @code{double} member
4438 that forces the union to be double-word aligned.
4439
4440 As in the preceding examples, you can explicitly specify the alignment
4441 (in bytes) that you wish the compiler to use for a given variable or
4442 structure field.  Alternatively, you can leave out the alignment factor
4443 and just ask the compiler to align a variable or field to the
4444 default alignment for the target architecture you are compiling for.
4445 The default alignment is sufficient for all scalar types, but may not be
4446 enough for all vector types on a target which supports vector operations.
4447 The default alignment is fixed for a particular target ABI.
4448
4449 Gcc also provides a target specific macro @code{__BIGGEST_ALIGNMENT__},
4450 which is the largest alignment ever used for any data type on the
4451 target machine you are compiling for.  For example, you could write:
4452
4453 @smallexample
4454 short array[3] __attribute__ ((aligned (__BIGGEST_ALIGNMENT__)));
4455 @end smallexample
4456
4457 The compiler automatically sets the alignment for the declared
4458 variable or field to @code{__BIGGEST_ALIGNMENT__}.  Doing this can
4459 often make copy operations more efficient, because the compiler can
4460 use whatever instructions copy the biggest chunks of memory when
4461 performing copies to or from the variables or fields that you have
4462 aligned this way.  Note that the value of @code{__BIGGEST_ALIGNMENT__}
4463 may change depending on command line options.
4464
4465 When used on a struct, or struct member, the @code{aligned} attribute can
4466 only increase the alignment; in order to decrease it, the @code{packed}
4467 attribute must be specified as well.  When used as part of a typedef, the
4468 @code{aligned} attribute can both increase and decrease alignment, and
4469 specifying the @code{packed} attribute will generate a warning.
4470
4471 Note that the effectiveness of @code{aligned} attributes may be limited
4472 by inherent limitations in your linker.  On many systems, the linker is
4473 only able to arrange for variables to be aligned up to a certain maximum
4474 alignment.  (For some linkers, the maximum supported alignment may
4475 be very very small.)  If your linker is only able to align variables
4476 up to a maximum of 8 byte alignment, then specifying @code{aligned(16)}
4477 in an @code{__attribute__} will still only provide you with 8 byte
4478 alignment.  See your linker documentation for further information.
4479
4480 The @code{aligned} attribute can also be used for functions
4481 (@pxref{Function Attributes}.)
4482
4483 @item cleanup (@var{cleanup_function})
4484 @cindex @code{cleanup} attribute
4485 The @code{cleanup} attribute runs a function when the variable goes
4486 out of scope.  This attribute can only be applied to auto function
4487 scope variables; it may not be applied to parameters or variables
4488 with static storage duration.  The function must take one parameter,
4489 a pointer to a type compatible with the variable.  The return value
4490 of the function (if any) is ignored.
4491
4492 If @option{-fexceptions} is enabled, then @var{cleanup_function}
4493 will be run during the stack unwinding that happens during the
4494 processing of the exception.  Note that the @code{cleanup} attribute
4495 does not allow the exception to be caught, only to perform an action.
4496 It is undefined what happens if @var{cleanup_function} does not
4497 return normally.
4498
4499 @item common
4500 @itemx nocommon
4501 @cindex @code{common} attribute
4502 @cindex @code{nocommon} attribute
4503 @opindex fcommon
4504 @opindex fno-common
4505 The @code{common} attribute requests GCC to place a variable in
4506 ``common'' storage.  The @code{nocommon} attribute requests the
4507 opposite---to allocate space for it directly.
4508
4509 These attributes override the default chosen by the
4510 @option{-fno-common} and @option{-fcommon} flags respectively.
4511
4512 @item deprecated
4513 @itemx deprecated (@var{msg})
4514 @cindex @code{deprecated} attribute
4515 The @code{deprecated} attribute results in a warning if the variable
4516 is used anywhere in the source file.  This is useful when identifying
4517 variables that are expected to be removed in a future version of a
4518 program.  The warning also includes the location of the declaration
4519 of the deprecated variable, to enable users to easily find further
4520 information about why the variable is deprecated, or what they should
4521 do instead.  Note that the warning only occurs for uses:
4522
4523 @smallexample
4524 extern int old_var __attribute__ ((deprecated));
4525 extern int old_var;
4526 int new_fn () @{ return old_var; @}
4527 @end smallexample
4528
4529 results in a warning on line 3 but not line 2.  The optional msg
4530 argument, which must be a string, will be printed in the warning if
4531 present.
4532
4533 The @code{deprecated} attribute can also be used for functions and
4534 types (@pxref{Function Attributes}, @pxref{Type Attributes}.)
4535
4536 @item mode (@var{mode})
4537 @cindex @code{mode} attribute
4538 This attribute specifies the data type for the declaration---whichever
4539 type corresponds to the mode @var{mode}.  This in effect lets you
4540 request an integer or floating point type according to its width.
4541
4542 You may also specify a mode of @samp{byte} or @samp{__byte__} to
4543 indicate the mode corresponding to a one-byte integer, @samp{word} or
4544 @samp{__word__} for the mode of a one-word integer, and @samp{pointer}
4545 or @samp{__pointer__} for the mode used to represent pointers.
4546
4547 @item packed
4548 @cindex @code{packed} attribute
4549 The @code{packed} attribute specifies that a variable or structure field
4550 should have the smallest possible alignment---one byte for a variable,
4551 and one bit for a field, unless you specify a larger value with the
4552 @code{aligned} attribute.
4553
4554 Here is a structure in which the field @code{x} is packed, so that it
4555 immediately follows @code{a}:
4556
4557 @smallexample
4558 struct foo
4559 @{
4560   char a;
4561   int x[2] __attribute__ ((packed));
4562 @};
4563 @end smallexample
4564
4565 @emph{Note:} The 4.1, 4.2 and 4.3 series of GCC ignore the
4566 @code{packed} attribute on bit-fields of type @code{char}.  This has
4567 been fixed in GCC 4.4 but the change can lead to differences in the
4568 structure layout.  See the documentation of
4569 @option{-Wpacked-bitfield-compat} for more information.
4570
4571 @item section ("@var{section-name}")
4572 @cindex @code{section} variable attribute
4573 Normally, the compiler places the objects it generates in sections like
4574 @code{data} and @code{bss}.  Sometimes, however, you need additional sections,
4575 or you need certain particular variables to appear in special sections,
4576 for example to map to special hardware.  The @code{section}
4577 attribute specifies that a variable (or function) lives in a particular
4578 section.  For example, this small program uses several specific section names:
4579
4580 @smallexample
4581 struct duart a __attribute__ ((section ("DUART_A"))) = @{ 0 @};
4582 struct duart b __attribute__ ((section ("DUART_B"))) = @{ 0 @};
4583 char stack[10000] __attribute__ ((section ("STACK"))) = @{ 0 @};
4584 int init_data __attribute__ ((section ("INITDATA")));
4585
4586 main()
4587 @{
4588   /* @r{Initialize stack pointer} */
4589   init_sp (stack + sizeof (stack));
4590
4591   /* @r{Initialize initialized data} */
4592   memcpy (&init_data, &data, &edata - &data);
4593
4594   /* @r{Turn on the serial ports} */
4595   init_duart (&a);
4596   init_duart (&b);
4597 @}
4598 @end smallexample
4599
4600 @noindent
4601 Use the @code{section} attribute with
4602 @emph{global} variables and not @emph{local} variables,
4603 as shown in the example.
4604
4605 You may use the @code{section} attribute with initialized or
4606 uninitialized global variables but the linker requires
4607 each object be defined once, with the exception that uninitialized
4608 variables tentatively go in the @code{common} (or @code{bss}) section
4609 and can be multiply ``defined''.  Using the @code{section} attribute
4610 will change what section the variable goes into and may cause the
4611 linker to issue an error if an uninitialized variable has multiple
4612 definitions.  You can force a variable to be initialized with the
4613 @option{-fno-common} flag or the @code{nocommon} attribute.
4614
4615 Some file formats do not support arbitrary sections so the @code{section}
4616 attribute is not available on all platforms.
4617 If you need to map the entire contents of a module to a particular
4618 section, consider using the facilities of the linker instead.
4619
4620 @item shared
4621 @cindex @code{shared} variable attribute
4622 On Microsoft Windows, in addition to putting variable definitions in a named
4623 section, the section can also be shared among all running copies of an
4624 executable or DLL@.  For example, this small program defines shared data
4625 by putting it in a named section @code{shared} and marking the section
4626 shareable:
4627
4628 @smallexample
4629 int foo __attribute__((section ("shared"), shared)) = 0;
4630
4631 int
4632 main()
4633 @{
4634   /* @r{Read and write foo.  All running
4635      copies see the same value.}  */
4636   return 0;
4637 @}
4638 @end smallexample
4639
4640 @noindent
4641 You may only use the @code{shared} attribute along with @code{section}
4642 attribute with a fully initialized global definition because of the way
4643 linkers work.  See @code{section} attribute for more information.
4644
4645 The @code{shared} attribute is only available on Microsoft Windows@.
4646
4647 @item tls_model ("@var{tls_model}")
4648 @cindex @code{tls_model} attribute
4649 The @code{tls_model} attribute sets thread-local storage model
4650 (@pxref{Thread-Local}) of a particular @code{__thread} variable,
4651 overriding @option{-ftls-model=} command-line switch on a per-variable
4652 basis.
4653 The @var{tls_model} argument should be one of @code{global-dynamic},
4654 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
4655
4656 Not all targets support this attribute.
4657
4658 @item unused
4659 This attribute, attached to a variable, means that the variable is meant
4660 to be possibly unused.  GCC will not produce a warning for this
4661 variable.
4662
4663 @item used
4664 This attribute, attached to a variable, means that the variable must be
4665 emitted even if it appears that the variable is not referenced.
4666
4667 When applied to a static data member of a C++ class template, the
4668 attribute also means that the member will be instantiated if the
4669 class itself is instantiated.
4670
4671 @item vector_size (@var{bytes})
4672 This attribute specifies the vector size for the variable, measured in
4673 bytes.  For example, the declaration:
4674
4675 @smallexample
4676 int foo __attribute__ ((vector_size (16)));
4677 @end smallexample
4678
4679 @noindent
4680 causes the compiler to set the mode for @code{foo}, to be 16 bytes,
4681 divided into @code{int} sized units.  Assuming a 32-bit int (a vector of
4682 4 units of 4 bytes), the corresponding mode of @code{foo} will be V4SI@.
4683
4684 This attribute is only applicable to integral and float scalars,
4685 although arrays, pointers, and function return values are allowed in
4686 conjunction with this construct.
4687
4688 Aggregates with this attribute are invalid, even if they are of the same
4689 size as a corresponding scalar.  For example, the declaration:
4690
4691 @smallexample
4692 struct S @{ int a; @};
4693 struct S  __attribute__ ((vector_size (16))) foo;
4694 @end smallexample
4695
4696 @noindent
4697 is invalid even if the size of the structure is the same as the size of
4698 the @code{int}.
4699
4700 @item selectany
4701 The @code{selectany} attribute causes an initialized global variable to
4702 have link-once semantics.  When multiple definitions of the variable are
4703 encountered by the linker, the first is selected and the remainder are
4704 discarded.  Following usage by the Microsoft compiler, the linker is told
4705 @emph{not} to warn about size or content differences of the multiple
4706 definitions.
4707
4708 Although the primary usage of this attribute is for POD types, the
4709 attribute can also be applied to global C++ objects that are initialized
4710 by a constructor.  In this case, the static initialization and destruction
4711 code for the object is emitted in each translation defining the object,
4712 but the calls to the constructor and destructor are protected by a
4713 link-once guard variable.
4714
4715 The @code{selectany} attribute is only available on Microsoft Windows
4716 targets.  You can use @code{__declspec (selectany)} as a synonym for
4717 @code{__attribute__ ((selectany))} for compatibility with other
4718 compilers.
4719
4720 @item weak
4721 The @code{weak} attribute is described in @ref{Function Attributes}.
4722
4723 @item dllimport
4724 The @code{dllimport} attribute is described in @ref{Function Attributes}.
4725
4726 @item dllexport
4727 The @code{dllexport} attribute is described in @ref{Function Attributes}.
4728
4729 @end table
4730
4731 @anchor{AVR Variable Attributes}
4732 @subsection AVR Variable Attributes
4733
4734 @table @code
4735 @item progmem
4736 @cindex @code{progmem} AVR variable attribute
4737 The @code{progmem} attribute is used on the AVR to place read-only
4738 data in the non-volatile program memory (flash). The @code{progmem}
4739 attribute accomplishes this by putting respective variables into a
4740 section whose name starts with @code{.progmem}.
4741
4742 This attribute works similar to the @code{section} attribute
4743 but adds additional checking. Notice that just like the
4744 @code{section} attribute, @code{progmem} affects the location
4745 of the data but not how this data is accessed.
4746
4747 In order to read data located with the @code{progmem} attribute
4748 (inline) assembler must be used.
4749 @example
4750 /* Use custom macros from @w{@uref{http://nongnu.org/avr-libc/user-manual,avr-libc}} */
4751 #include <avr/pgmspace.h> 
4752
4753 /* Locate var in flash memory */
4754 const int var[2] PROGMEM = @{ 1, 2 @};
4755
4756 int read_var (int i)
4757 @{
4758     /* Access var[] by accessor macro from avr/pgmspace.h */
4759     return (int) pgm_read_word (& var[i]);
4760 @}
4761 @end example
4762
4763 AVR is a Harvard architecture processor and data and read-only data
4764 normally resides in the data memory (RAM).
4765
4766 See also the @ref{AVR Named Address Spaces} section for
4767 an alternate way to locate and access data in flash memory.
4768 @end table
4769
4770 @subsection Blackfin Variable Attributes
4771
4772 Three attributes are currently defined for the Blackfin.
4773
4774 @table @code
4775 @item l1_data
4776 @itemx l1_data_A
4777 @itemx l1_data_B
4778 @cindex @code{l1_data} variable attribute
4779 @cindex @code{l1_data_A} variable attribute
4780 @cindex @code{l1_data_B} variable attribute
4781 Use these attributes on the Blackfin to place the variable into L1 Data SRAM.
4782 Variables with @code{l1_data} attribute will be put into the specific section
4783 named @code{.l1.data}. Those with @code{l1_data_A} attribute will be put into
4784 the specific section named @code{.l1.data.A}. Those with @code{l1_data_B}
4785 attribute will be put into the specific section named @code{.l1.data.B}.
4786
4787 @item l2
4788 @cindex @code{l2} variable attribute
4789 Use this attribute on the Blackfin to place the variable into L2 SRAM.
4790 Variables with @code{l2} attribute will be put into the specific section
4791 named @code{.l2.data}.
4792 @end table
4793
4794 @subsection M32R/D Variable Attributes
4795
4796 One attribute is currently defined for the M32R/D@.
4797
4798 @table @code
4799 @item model (@var{model-name})
4800 @cindex variable addressability on the M32R/D
4801 Use this attribute on the M32R/D to set the addressability of an object.
4802 The identifier @var{model-name} is one of @code{small}, @code{medium},
4803 or @code{large}, representing each of the code models.
4804
4805 Small model objects live in the lower 16MB of memory (so that their
4806 addresses can be loaded with the @code{ld24} instruction).
4807
4808 Medium and large model objects may live anywhere in the 32-bit address space
4809 (the compiler will generate @code{seth/add3} instructions to load their
4810 addresses).
4811 @end table
4812
4813 @anchor{MeP Variable Attributes}
4814 @subsection MeP Variable Attributes
4815
4816 The MeP target has a number of addressing modes and busses.  The
4817 @code{near} space spans the standard memory space's first 16 megabytes
4818 (24 bits).  The @code{far} space spans the entire 32-bit memory space.
4819 The @code{based} space is a 128 byte region in the memory space which
4820 is addressed relative to the @code{$tp} register.  The @code{tiny}
4821 space is a 65536 byte region relative to the @code{$gp} register.  In
4822 addition to these memory regions, the MeP target has a separate 16-bit
4823 control bus which is specified with @code{cb} attributes.
4824
4825 @table @code
4826
4827 @item based
4828 Any variable with the @code{based} attribute will be assigned to the
4829 @code{.based} section, and will be accessed with relative to the
4830 @code{$tp} register.
4831
4832 @item tiny
4833 Likewise, the @code{tiny} attribute assigned variables to the
4834 @code{.tiny} section, relative to the @code{$gp} register.
4835
4836 @item near
4837 Variables with the @code{near} attribute are assumed to have addresses
4838 that fit in a 24-bit addressing mode.  This is the default for large
4839 variables (@code{-mtiny=4} is the default) but this attribute can
4840 override @code{-mtiny=} for small variables, or override @code{-ml}.
4841
4842 @item far
4843 Variables with the @code{far} attribute are addressed using a full
4844 32-bit address.  Since this covers the entire memory space, this
4845 allows modules to make no assumptions about where variables might be
4846 stored.
4847
4848 @item io
4849 @itemx io (@var{addr})
4850 Variables with the @code{io} attribute are used to address
4851 memory-mapped peripherals.  If an address is specified, the variable
4852 is assigned that address, else it is not assigned an address (it is
4853 assumed some other module will assign an address).  Example:
4854
4855 @example
4856 int timer_count __attribute__((io(0x123)));
4857 @end example
4858
4859 @item cb
4860 @itemx cb (@var{addr})
4861 Variables with the @code{cb} attribute are used to access the control
4862 bus, using special instructions.  @code{addr} indicates the control bus
4863 address.  Example:
4864
4865 @example
4866 int cpu_clock __attribute__((cb(0x123)));
4867 @end example
4868
4869 @end table
4870
4871 @anchor{i386 Variable Attributes}
4872 @subsection i386 Variable Attributes
4873
4874 Two attributes are currently defined for i386 configurations:
4875 @code{ms_struct} and @code{gcc_struct}
4876
4877 @table @code
4878 @item ms_struct
4879 @itemx gcc_struct
4880 @cindex @code{ms_struct} attribute
4881 @cindex @code{gcc_struct} attribute
4882
4883 If @code{packed} is used on a structure, or if bit-fields are used
4884 it may be that the Microsoft ABI packs them differently
4885 than GCC would normally pack them.  Particularly when moving packed
4886 data between functions compiled with GCC and the native Microsoft compiler
4887 (either via function call or as data in a file), it may be necessary to access
4888 either format.
4889
4890 Currently @option{-m[no-]ms-bitfields} is provided for the Microsoft Windows X86
4891 compilers to match the native Microsoft compiler.
4892
4893 The Microsoft structure layout algorithm is fairly simple with the exception
4894 of the bitfield packing:
4895
4896 The padding and alignment of members of structures and whether a bit field
4897 can straddle a storage-unit boundary
4898
4899 @enumerate
4900 @item Structure members are stored sequentially in the order in which they are
4901 declared: the first member has the lowest memory address and the last member
4902 the highest.
4903
4904 @item Every data object has an alignment-requirement. The alignment-requirement
4905 for all data except structures, unions, and arrays is either the size of the
4906 object or the current packing size (specified with either the aligned attribute
4907 or the pack pragma), whichever is less. For structures,  unions, and arrays,
4908 the alignment-requirement is the largest alignment-requirement of its members.
4909 Every object is allocated an offset so that:
4910
4911 offset %  alignment-requirement == 0
4912
4913 @item Adjacent bit fields are packed into the same 1-, 2-, or 4-byte allocation
4914 unit if the integral types are the same size and if the next bit field fits
4915 into the current allocation unit without crossing the boundary imposed by the
4916 common alignment requirements of the bit fields.
4917 @end enumerate
4918
4919 Handling of zero-length bitfields:
4920
4921 MSVC interprets zero-length bitfields in the following ways:
4922
4923 @enumerate
4924 @item If a zero-length bitfield is inserted between two bitfields that would
4925 normally be coalesced, the bitfields will not be coalesced.
4926
4927 For example:
4928
4929 @smallexample
4930 struct
4931  @{
4932    unsigned long bf_1 : 12;
4933    unsigned long : 0;
4934    unsigned long bf_2 : 12;
4935  @} t1;
4936 @end smallexample
4937
4938 The size of @code{t1} would be 8 bytes with the zero-length bitfield.  If the
4939 zero-length bitfield were removed, @code{t1}'s size would be 4 bytes.
4940
4941 @item If a zero-length bitfield is inserted after a bitfield, @code{foo}, and the
4942 alignment of the zero-length bitfield is greater than the member that follows it,
4943 @code{bar}, @code{bar} will be aligned as the type of the zero-length bitfield.
4944
4945 For example:
4946
4947 @smallexample
4948 struct
4949  @{
4950    char foo : 4;
4951    short : 0;
4952    char bar;
4953  @} t2;
4954
4955 struct
4956  @{
4957    char foo : 4;
4958    short : 0;
4959    double bar;
4960  @} t3;
4961 @end smallexample
4962
4963 For @code{t2}, @code{bar} will be placed at offset 2, rather than offset 1.
4964 Accordingly, the size of @code{t2} will be 4.  For @code{t3}, the zero-length
4965 bitfield will not affect the alignment of @code{bar} or, as a result, the size
4966 of the structure.
4967
4968 Taking this into account, it is important to note the following:
4969
4970 @enumerate
4971 @item If a zero-length bitfield follows a normal bitfield, the type of the
4972 zero-length bitfield may affect the alignment of the structure as whole. For
4973 example, @code{t2} has a size of 4 bytes, since the zero-length bitfield follows a
4974 normal bitfield, and is of type short.
4975
4976 @item Even if a zero-length bitfield is not followed by a normal bitfield, it may
4977 still affect the alignment of the structure:
4978
4979 @smallexample
4980 struct
4981  @{
4982    char foo : 6;
4983    long : 0;
4984  @} t4;
4985 @end smallexample
4986
4987 Here, @code{t4} will take up 4 bytes.
4988 @end enumerate
4989
4990 @item Zero-length bitfields following non-bitfield members are ignored:
4991
4992 @smallexample
4993 struct
4994  @{
4995    char foo;
4996    long : 0;
4997    char bar;
4998  @} t5;
4999 @end smallexample
5000
5001 Here, @code{t5} will take up 2 bytes.
5002 @end enumerate
5003 @end table
5004
5005 @subsection PowerPC Variable Attributes
5006
5007 Three attributes currently are defined for PowerPC configurations:
5008 @code{altivec}, @code{ms_struct} and @code{gcc_struct}.
5009
5010 For full documentation of the struct attributes please see the
5011 documentation in @ref{i386 Variable Attributes}.
5012
5013 For documentation of @code{altivec} attribute please see the
5014 documentation in @ref{PowerPC Type Attributes}.
5015
5016 @subsection SPU Variable Attributes
5017
5018 The SPU supports the @code{spu_vector} attribute for variables.  For
5019 documentation of this attribute please see the documentation in
5020 @ref{SPU Type Attributes}.
5021
5022 @subsection Xstormy16 Variable Attributes
5023
5024 One attribute is currently defined for xstormy16 configurations:
5025 @code{below100}.
5026
5027 @table @code
5028 @item below100
5029 @cindex @code{below100} attribute
5030
5031 If a variable has the @code{below100} attribute (@code{BELOW100} is
5032 allowed also), GCC will place the variable in the first 0x100 bytes of
5033 memory and use special opcodes to access it.  Such variables will be
5034 placed in either the @code{.bss_below100} section or the
5035 @code{.data_below100} section.
5036
5037 @end table
5038
5039 @node Type Attributes
5040 @section Specifying Attributes of Types
5041 @cindex attribute of types
5042 @cindex type attributes
5043
5044 The keyword @code{__attribute__} allows you to specify special
5045 attributes of @code{struct} and @code{union} types when you define
5046 such types.  This keyword is followed by an attribute specification
5047 inside double parentheses.  Seven attributes are currently defined for
5048 types: @code{aligned}, @code{packed}, @code{transparent_union},
5049 @code{unused}, @code{deprecated}, @code{visibility}, and
5050 @code{may_alias}.  Other attributes are defined for functions
5051 (@pxref{Function Attributes}) and for variables (@pxref{Variable
5052 Attributes}).
5053
5054 You may also specify any one of these attributes with @samp{__}
5055 preceding and following its keyword.  This allows you to use these
5056 attributes in header files without being concerned about a possible
5057 macro of the same name.  For example, you may use @code{__aligned__}
5058 instead of @code{aligned}.
5059
5060 You may specify type attributes in an enum, struct or union type
5061 declaration or definition, or for other types in a @code{typedef}
5062 declaration.
5063
5064 For an enum, struct or union type, you may specify attributes either
5065 between the enum, struct or union tag and the name of the type, or
5066 just past the closing curly brace of the @emph{definition}.  The
5067 former syntax is preferred.
5068
5069 @xref{Attribute Syntax}, for details of the exact syntax for using
5070 attributes.
5071
5072 @table @code
5073 @cindex @code{aligned} attribute
5074 @item aligned (@var{alignment})
5075 This attribute specifies a minimum alignment (in bytes) for variables
5076 of the specified type.  For example, the declarations:
5077
5078 @smallexample
5079 struct S @{ short f[3]; @} __attribute__ ((aligned (8)));
5080 typedef int more_aligned_int __attribute__ ((aligned (8)));
5081 @end smallexample
5082
5083 @noindent
5084 force the compiler to insure (as far as it can) that each variable whose
5085 type is @code{struct S} or @code{more_aligned_int} will be allocated and
5086 aligned @emph{at least} on a 8-byte boundary.  On a SPARC, having all
5087 variables of type @code{struct S} aligned to 8-byte boundaries allows
5088 the compiler to use the @code{ldd} and @code{std} (doubleword load and
5089 store) instructions when copying one variable of type @code{struct S} to
5090 another, thus improving run-time efficiency.
5091
5092 Note that the alignment of any given @code{struct} or @code{union} type
5093 is required by the ISO C standard to be at least a perfect multiple of
5094 the lowest common multiple of the alignments of all of the members of
5095 the @code{struct} or @code{union} in question.  This means that you @emph{can}
5096 effectively adjust the alignment of a @code{struct} or @code{union}
5097 type by attaching an @code{aligned} attribute to any one of the members
5098 of such a type, but the notation illustrated in the example above is a
5099 more obvious, intuitive, and readable way to request the compiler to
5100 adjust the alignment of an entire @code{struct} or @code{union} type.
5101
5102 As in the preceding example, you can explicitly specify the alignment
5103 (in bytes) that you wish the compiler to use for a given @code{struct}
5104 or @code{union} type.  Alternatively, you can leave out the alignment factor
5105 and just ask the compiler to align a type to the maximum
5106 useful alignment for the target machine you are compiling for.  For
5107 example, you could write:
5108
5109 @smallexample
5110 struct S @{ short f[3]; @} __attribute__ ((aligned));
5111 @end smallexample
5112
5113 Whenever you leave out the alignment factor in an @code{aligned}
5114 attribute specification, the compiler automatically sets the alignment
5115 for the type to the largest alignment which is ever used for any data
5116 type on the target machine you are compiling for.  Doing this can often
5117 make copy operations more efficient, because the compiler can use
5118 whatever instructions copy the biggest chunks of memory when performing
5119 copies to or from the variables which have types that you have aligned
5120 this way.
5121
5122 In the example above, if the size of each @code{short} is 2 bytes, then
5123 the size of the entire @code{struct S} type is 6 bytes.  The smallest
5124 power of two which is greater than or equal to that is 8, so the
5125 compiler sets the alignment for the entire @code{struct S} type to 8
5126 bytes.
5127
5128 Note that although you can ask the compiler to select a time-efficient
5129 alignment for a given type and then declare only individual stand-alone
5130 objects of that type, the compiler's ability to select a time-efficient
5131 alignment is primarily useful only when you plan to create arrays of
5132 variables having the relevant (efficiently aligned) type.  If you
5133 declare or use arrays of variables of an efficiently-aligned type, then
5134 it is likely that your program will also be doing pointer arithmetic (or
5135 subscripting, which amounts to the same thing) on pointers to the
5136 relevant type, and the code that the compiler generates for these
5137 pointer arithmetic operations will often be more efficient for
5138 efficiently-aligned types than for other types.
5139
5140 The @code{aligned} attribute can only increase the alignment; but you
5141 can decrease it by specifying @code{packed} as well.  See below.
5142
5143 Note that the effectiveness of @code{aligned} attributes may be limited
5144 by inherent limitations in your linker.  On many systems, the linker is
5145 only able to arrange for variables to be aligned up to a certain maximum
5146 alignment.  (For some linkers, the maximum supported alignment may
5147 be very very small.)  If your linker is only able to align variables
5148 up to a maximum of 8 byte alignment, then specifying @code{aligned(16)}
5149 in an @code{__attribute__} will still only provide you with 8 byte
5150 alignment.  See your linker documentation for further information.
5151
5152 @item packed
5153 This attribute, attached to @code{struct} or @code{union} type
5154 definition, specifies that each member (other than zero-width bitfields)
5155 of the structure or union is placed to minimize the memory required.  When
5156 attached to an @code{enum} definition, it indicates that the smallest
5157 integral type should be used.
5158
5159 @opindex fshort-enums
5160 Specifying this attribute for @code{struct} and @code{union} types is
5161 equivalent to specifying the @code{packed} attribute on each of the
5162 structure or union members.  Specifying the @option{-fshort-enums}
5163 flag on the line is equivalent to specifying the @code{packed}
5164 attribute on all @code{enum} definitions.
5165
5166 In the following example @code{struct my_packed_struct}'s members are
5167 packed closely together, but the internal layout of its @code{s} member
5168 is not packed---to do that, @code{struct my_unpacked_struct} would need to
5169 be packed too.
5170
5171 @smallexample
5172 struct my_unpacked_struct
5173  @{
5174     char c;
5175     int i;
5176  @};
5177
5178 struct __attribute__ ((__packed__)) my_packed_struct
5179   @{
5180      char c;
5181      int  i;
5182      struct my_unpacked_struct s;
5183   @};
5184 @end smallexample
5185
5186 You may only specify this attribute on the definition of an @code{enum},
5187 @code{struct} or @code{union}, not on a @code{typedef} which does not
5188 also define the enumerated type, structure or union.
5189
5190 @item transparent_union
5191 This attribute, attached to a @code{union} type definition, indicates
5192 that any function parameter having that union type causes calls to that
5193 function to be treated in a special way.
5194
5195 First, the argument corresponding to a transparent union type can be of
5196 any type in the union; no cast is required.  Also, if the union contains
5197 a pointer type, the corresponding argument can be a null pointer
5198 constant or a void pointer expression; and if the union contains a void
5199 pointer type, the corresponding argument can be any pointer expression.
5200 If the union member type is a pointer, qualifiers like @code{const} on
5201 the referenced type must be respected, just as with normal pointer
5202 conversions.
5203
5204 Second, the argument is passed to the function using the calling
5205 conventions of the first member of the transparent union, not the calling
5206 conventions of the union itself.  All members of the union must have the
5207 same machine representation; this is necessary for this argument passing
5208 to work properly.
5209
5210 Transparent unions are designed for library functions that have multiple
5211 interfaces for compatibility reasons.  For example, suppose the
5212 @code{wait} function must accept either a value of type @code{int *} to
5213 comply with Posix, or a value of type @code{union wait *} to comply with
5214 the 4.1BSD interface.  If @code{wait}'s parameter were @code{void *},
5215 @code{wait} would accept both kinds of arguments, but it would also
5216 accept any other pointer type and this would make argument type checking
5217 less useful.  Instead, @code{<sys/wait.h>} might define the interface
5218 as follows:
5219
5220 @smallexample
5221 typedef union __attribute__ ((__transparent_union__))
5222   @{
5223     int *__ip;
5224     union wait *__up;
5225   @} wait_status_ptr_t;
5226
5227 pid_t wait (wait_status_ptr_t);
5228 @end smallexample
5229
5230 This interface allows either @code{int *} or @code{union wait *}
5231 arguments to be passed, using the @code{int *} calling convention.
5232 The program can call @code{wait} with arguments of either type:
5233
5234 @smallexample
5235 int w1 () @{ int w; return wait (&w); @}
5236 int w2 () @{ union wait w; return wait (&w); @}
5237 @end smallexample
5238
5239 With this interface, @code{wait}'s implementation might look like this:
5240
5241 @smallexample
5242 pid_t wait (wait_status_ptr_t p)
5243 @{
5244   return waitpid (-1, p.__ip, 0);
5245 @}
5246 @end smallexample
5247
5248 @item unused
5249 When attached to a type (including a @code{union} or a @code{struct}),
5250 this attribute means that variables of that type are meant to appear
5251 possibly unused.  GCC will not produce a warning for any variables of
5252 that type, even if the variable appears to do nothing.  This is often
5253 the case with lock or thread classes, which are usually defined and then
5254 not referenced, but contain constructors and destructors that have
5255 nontrivial bookkeeping functions.
5256
5257 @item deprecated
5258 @itemx deprecated (@var{msg})
5259 The @code{deprecated} attribute results in a warning if the type
5260 is used anywhere in the source file.  This is useful when identifying
5261 types that are expected to be removed in a future version of a program.
5262 If possible, the warning also includes the location of the declaration
5263 of the deprecated type, to enable users to easily find further
5264 information about why the type is deprecated, or what they should do
5265 instead.  Note that the warnings only occur for uses and then only
5266 if the type is being applied to an identifier that itself is not being
5267 declared as deprecated.
5268
5269 @smallexample
5270 typedef int T1 __attribute__ ((deprecated));
5271 T1 x;
5272 typedef T1 T2;
5273 T2 y;
5274 typedef T1 T3 __attribute__ ((deprecated));
5275 T3 z __attribute__ ((deprecated));
5276 @end smallexample
5277
5278 results in a warning on line 2 and 3 but not lines 4, 5, or 6.  No
5279 warning is issued for line 4 because T2 is not explicitly
5280 deprecated.  Line 5 has no warning because T3 is explicitly
5281 deprecated.  Similarly for line 6.  The optional msg
5282 argument, which must be a string, will be printed in the warning if
5283 present.
5284
5285 The @code{deprecated} attribute can also be used for functions and
5286 variables (@pxref{Function Attributes}, @pxref{Variable Attributes}.)
5287
5288 @item may_alias
5289 Accesses through pointers to types with this attribute are not subject
5290 to type-based alias analysis, but are instead assumed to be able to alias
5291 any other type of objects.  In the context of 6.5/7 an lvalue expression
5292 dereferencing such a pointer is treated like having a character type.
5293 See @option{-fstrict-aliasing} for more information on aliasing issues.
5294 This extension exists to support some vector APIs, in which pointers to
5295 one vector type are permitted to alias pointers to a different vector type.
5296
5297 Note that an object of a type with this attribute does not have any
5298 special semantics.
5299
5300 Example of use:
5301
5302 @smallexample
5303 typedef short __attribute__((__may_alias__)) short_a;
5304
5305 int
5306 main (void)
5307 @{
5308   int a = 0x12345678;
5309   short_a *b = (short_a *) &a;
5310
5311   b[1] = 0;
5312
5313   if (a == 0x12345678)
5314     abort();
5315
5316   exit(0);
5317 @}
5318 @end smallexample
5319
5320 If you replaced @code{short_a} with @code{short} in the variable
5321 declaration, the above program would abort when compiled with
5322 @option{-fstrict-aliasing}, which is on by default at @option{-O2} or
5323 above in recent GCC versions.
5324
5325 @item visibility
5326 In C++, attribute visibility (@pxref{Function Attributes}) can also be
5327 applied to class, struct, union and enum types.  Unlike other type
5328 attributes, the attribute must appear between the initial keyword and
5329 the name of the type; it cannot appear after the body of the type.
5330
5331 Note that the type visibility is applied to vague linkage entities
5332 associated with the class (vtable, typeinfo node, etc.).  In
5333 particular, if a class is thrown as an exception in one shared object
5334 and caught in another, the class must have default visibility.
5335 Otherwise the two shared objects will be unable to use the same
5336 typeinfo node and exception handling will break.
5337
5338 @end table
5339
5340 @subsection ARM Type Attributes
5341
5342 On those ARM targets that support @code{dllimport} (such as Symbian
5343 OS), you can use the @code{notshared} attribute to indicate that the
5344 virtual table and other similar data for a class should not be
5345 exported from a DLL@.  For example:
5346
5347 @smallexample
5348 class __declspec(notshared) C @{
5349 public:
5350   __declspec(dllimport) C();
5351   virtual void f();
5352 @}
5353
5354 __declspec(dllexport)
5355 C::C() @{@}
5356 @end smallexample
5357
5358 In this code, @code{C::C} is exported from the current DLL, but the
5359 virtual table for @code{C} is not exported.  (You can use
5360 @code{__attribute__} instead of @code{__declspec} if you prefer, but
5361 most Symbian OS code uses @code{__declspec}.)
5362
5363 @anchor{MeP Type Attributes}
5364 @subsection MeP Type Attributes
5365
5366 Many of the MeP variable attributes may be applied to types as well.
5367 Specifically, the @code{based}, @code{tiny}, @code{near}, and
5368 @code{far} attributes may be applied to either.  The @code{io} and
5369 @code{cb} attributes may not be applied to types.
5370
5371 @anchor{i386 Type Attributes}
5372 @subsection i386 Type Attributes
5373
5374 Two attributes are currently defined for i386 configurations:
5375 @code{ms_struct} and @code{gcc_struct}.
5376
5377 @table @code
5378
5379 @item ms_struct
5380 @itemx gcc_struct
5381 @cindex @code{ms_struct}
5382 @cindex @code{gcc_struct}
5383
5384 If @code{packed} is used on a structure, or if bit-fields are used
5385 it may be that the Microsoft ABI packs them differently
5386 than GCC would normally pack them.  Particularly when moving packed
5387 data between functions compiled with GCC and the native Microsoft compiler
5388 (either via function call or as data in a file), it may be necessary to access
5389 either format.
5390
5391 Currently @option{-m[no-]ms-bitfields} is provided for the Microsoft Windows X86
5392 compilers to match the native Microsoft compiler.
5393 @end table
5394
5395 To specify multiple attributes, separate them by commas within the
5396 double parentheses: for example, @samp{__attribute__ ((aligned (16),
5397 packed))}.
5398
5399 @anchor{PowerPC Type Attributes}
5400 @subsection PowerPC Type Attributes
5401
5402 Three attributes currently are defined for PowerPC configurations:
5403 @code{altivec}, @code{ms_struct} and @code{gcc_struct}.
5404
5405 For full documentation of the @code{ms_struct} and @code{gcc_struct}
5406 attributes please see the documentation in @ref{i386 Type Attributes}.
5407
5408 The @code{altivec} attribute allows one to declare AltiVec vector data
5409 types supported by the AltiVec Programming Interface Manual.  The
5410 attribute requires an argument to specify one of three vector types:
5411 @code{vector__}, @code{pixel__} (always followed by unsigned short),
5412 and @code{bool__} (always followed by unsigned).
5413
5414 @smallexample
5415 __attribute__((altivec(vector__)))
5416 __attribute__((altivec(pixel__))) unsigned short
5417 __attribute__((altivec(bool__))) unsigned
5418 @end smallexample
5419
5420 These attributes mainly are intended to support the @code{__vector},
5421 @code{__pixel}, and @code{__bool} AltiVec keywords.
5422
5423 @anchor{SPU Type Attributes}
5424 @subsection SPU Type Attributes
5425
5426 The SPU supports the @code{spu_vector} attribute for types.  This attribute
5427 allows one to declare vector data types supported by the Sony/Toshiba/IBM SPU
5428 Language Extensions Specification.  It is intended to support the
5429 @code{__vector} keyword.
5430
5431 @node Alignment
5432 @section Inquiring on Alignment of Types or Variables
5433 @cindex alignment
5434 @cindex type alignment
5435 @cindex variable alignment
5436
5437 The keyword @code{__alignof__} allows you to inquire about how an object
5438 is aligned, or the minimum alignment usually required by a type.  Its
5439 syntax is just like @code{sizeof}.
5440
5441 For example, if the target machine requires a @code{double} value to be
5442 aligned on an 8-byte boundary, then @code{__alignof__ (double)} is 8.
5443 This is true on many RISC machines.  On more traditional machine
5444 designs, @code{__alignof__ (double)} is 4 or even 2.
5445
5446 Some machines never actually require alignment; they allow reference to any
5447 data type even at an odd address.  For these machines, @code{__alignof__}
5448 reports the smallest alignment that GCC will give the data type, usually as
5449 mandated by the target ABI.
5450
5451 If the operand of @code{__alignof__} is an lvalue rather than a type,
5452 its value is the required alignment for its type, taking into account
5453 any minimum alignment specified with GCC's @code{__attribute__}
5454 extension (@pxref{Variable Attributes}).  For example, after this
5455 declaration:
5456
5457 @smallexample
5458 struct foo @{ int x; char y; @} foo1;
5459 @end smallexample
5460
5461 @noindent
5462 the value of @code{__alignof__ (foo1.y)} is 1, even though its actual
5463 alignment is probably 2 or 4, the same as @code{__alignof__ (int)}.
5464
5465 It is an error to ask for the alignment of an incomplete type.
5466
5467
5468 @node Inline
5469 @section An Inline Function is As Fast As a Macro
5470 @cindex inline functions
5471 @cindex integrating function code
5472 @cindex open coding
5473 @cindex macros, inline alternative
5474
5475 By declaring a function inline, you can direct GCC to make
5476 calls to that function faster.  One way GCC can achieve this is to
5477 integrate that function's code into the code for its callers.  This
5478 makes execution faster by eliminating the function-call overhead; in
5479 addition, if any of the actual argument values are constant, their
5480 known values may permit simplifications at compile time so that not
5481 all of the inline function's code needs to be included.  The effect on
5482 code size is less predictable; object code may be larger or smaller
5483 with function inlining, depending on the particular case.  You can
5484 also direct GCC to try to integrate all ``simple enough'' functions
5485 into their callers with the option @option{-finline-functions}.
5486
5487 GCC implements three different semantics of declaring a function
5488 inline.  One is available with @option{-std=gnu89} or
5489 @option{-fgnu89-inline} or when @code{gnu_inline} attribute is present
5490 on all inline declarations, another when
5491 @option{-std=c99}, @option{-std=c11},
5492 @option{-std=gnu99} or @option{-std=gnu11}
5493 (without @option{-fgnu89-inline}), and the third
5494 is used when compiling C++.
5495
5496 To declare a function inline, use the @code{inline} keyword in its
5497 declaration, like this:
5498
5499 @smallexample
5500 static inline int
5501 inc (int *a)
5502 @{
5503   return (*a)++;
5504 @}
5505 @end smallexample
5506
5507 If you are writing a header file to be included in ISO C90 programs, write
5508 @code{__inline__} instead of @code{inline}.  @xref{Alternate Keywords}.
5509
5510 The three types of inlining behave similarly in two important cases:
5511 when the @code{inline} keyword is used on a @code{static} function,
5512 like the example above, and when a function is first declared without
5513 using the @code{inline} keyword and then is defined with
5514 @code{inline}, like this:
5515
5516 @smallexample
5517 extern int inc (int *a);
5518 inline int
5519 inc (int *a)
5520 @{
5521   return (*a)++;
5522 @}
5523 @end smallexample
5524
5525 In both of these common cases, the program behaves the same as if you
5526 had not used the @code{inline} keyword, except for its speed.
5527
5528 @cindex inline functions, omission of
5529 @opindex fkeep-inline-functions
5530 When a function is both inline and @code{static}, if all calls to the
5531 function are integrated into the caller, and the function's address is
5532 never used, then the function's own assembler code is never referenced.
5533 In this case, GCC does not actually output assembler code for the
5534 function, unless you specify the option @option{-fkeep-inline-functions}.
5535 Some calls cannot be integrated for various reasons (in particular,
5536 calls that precede the function's definition cannot be integrated, and
5537 neither can recursive calls within the definition).  If there is a
5538 nonintegrated call, then the function is compiled to assembler code as
5539 usual.  The function must also be compiled as usual if the program
5540 refers to its address, because that can't be inlined.
5541
5542 @opindex Winline
5543 Note that certain usages in a function definition can make it unsuitable
5544 for inline substitution.  Among these usages are: use of varargs, use of
5545 alloca, use of variable sized data types (@pxref{Variable Length}),
5546 use of computed goto (@pxref{Labels as Values}), use of nonlocal goto,
5547 and nested functions (@pxref{Nested Functions}).  Using @option{-Winline}
5548 will warn when a function marked @code{inline} could not be substituted,
5549 and will give the reason for the failure.
5550
5551 @cindex automatic @code{inline} for C++ member fns
5552 @cindex @code{inline} automatic for C++ member fns
5553 @cindex member fns, automatically @code{inline}
5554 @cindex C++ member fns, automatically @code{inline}
5555 @opindex fno-default-inline
5556 As required by ISO C++, GCC considers member functions defined within
5557 the body of a class to be marked inline even if they are
5558 not explicitly declared with the @code{inline} keyword.  You can
5559 override this with @option{-fno-default-inline}; @pxref{C++ Dialect
5560 Options,,Options Controlling C++ Dialect}.
5561
5562 GCC does not inline any functions when not optimizing unless you specify
5563 the @samp{always_inline} attribute for the function, like this:
5564
5565 @smallexample
5566 /* @r{Prototype.}  */
5567 inline void foo (const char) __attribute__((always_inline));
5568 @end smallexample
5569
5570 The remainder of this section is specific to GNU C90 inlining.
5571
5572 @cindex non-static inline function
5573 When an inline function is not @code{static}, then the compiler must assume
5574 that there may be calls from other source files; since a global symbol can
5575 be defined only once in any program, the function must not be defined in
5576 the other source files, so the calls therein cannot be integrated.
5577 Therefore, a non-@code{static} inline function is always compiled on its
5578 own in the usual fashion.
5579
5580 If you specify both @code{inline} and @code{extern} in the function
5581 definition, then the definition is used only for inlining.  In no case
5582 is the function compiled on its own, not even if you refer to its
5583 address explicitly.  Such an address becomes an external reference, as
5584 if you had only declared the function, and had not defined it.
5585
5586 This combination of @code{inline} and @code{extern} has almost the
5587 effect of a macro.  The way to use it is to put a function definition in
5588 a header file with these keywords, and put another copy of the
5589 definition (lacking @code{inline} and @code{extern}) in a library file.
5590 The definition in the header file will cause most calls to the function
5591 to be inlined.  If any uses of the function remain, they will refer to
5592 the single copy in the library.
5593
5594 @node Volatiles
5595 @section When is a Volatile Object Accessed?
5596 @cindex accessing volatiles
5597 @cindex volatile read
5598 @cindex volatile write
5599 @cindex volatile access
5600
5601 C has the concept of volatile objects.  These are normally accessed by
5602 pointers and used for accessing hardware or inter-thread
5603 communication.  The standard encourages compilers to refrain from
5604 optimizations concerning accesses to volatile objects, but leaves it
5605 implementation defined as to what constitutes a volatile access.  The
5606 minimum requirement is that at a sequence point all previous accesses
5607 to volatile objects have stabilized and no subsequent accesses have
5608 occurred.  Thus an implementation is free to reorder and combine
5609 volatile accesses which occur between sequence points, but cannot do
5610 so for accesses across a sequence point.  The use of volatile does
5611 not allow you to violate the restriction on updating objects multiple
5612 times between two sequence points.
5613
5614 Accesses to non-volatile objects are not ordered with respect to
5615 volatile accesses.  You cannot use a volatile object as a memory
5616 barrier to order a sequence of writes to non-volatile memory.  For
5617 instance:
5618
5619 @smallexample
5620 int *ptr = @var{something};
5621 volatile int vobj;
5622 *ptr = @var{something};
5623 vobj = 1;
5624 @end smallexample
5625
5626 Unless @var{*ptr} and @var{vobj} can be aliased, it is not guaranteed
5627 that the write to @var{*ptr} will have occurred by the time the update
5628 of @var{vobj} has happened.  If you need this guarantee, you must use
5629 a stronger memory barrier such as:
5630
5631 @smallexample
5632 int *ptr = @var{something};
5633 volatile int vobj;
5634 *ptr = @var{something};
5635 asm volatile ("" : : : "memory");
5636 vobj = 1;
5637 @end smallexample
5638
5639 A scalar volatile object is read when it is accessed in a void context:
5640
5641 @smallexample
5642 volatile int *src = @var{somevalue};
5643 *src;
5644 @end smallexample
5645
5646 Such expressions are rvalues, and GCC implements this as a
5647 read of the volatile object being pointed to.
5648
5649 Assignments are also expressions and have an rvalue.  However when
5650 assigning to a scalar volatile, the volatile object is not reread,
5651 regardless of whether the assignment expression's rvalue is used or
5652 not.  If the assignment's rvalue is used, the value is that assigned
5653 to the volatile object.  For instance, there is no read of @var{vobj}
5654 in all the following cases:
5655
5656 @smallexample
5657 int obj;
5658 volatile int vobj;
5659 vobj = @var{something};
5660 obj = vobj = @var{something};
5661 obj ? vobj = @var{onething} : vobj = @var{anotherthing};
5662 obj = (@var{something}, vobj = @var{anotherthing});
5663 @end smallexample
5664
5665 If you need to read the volatile object after an assignment has
5666 occurred, you must use a separate expression with an intervening
5667 sequence point.
5668
5669 As bitfields are not individually addressable, volatile bitfields may
5670 be implicitly read when written to, or when adjacent bitfields are
5671 accessed.  Bitfield operations may be optimized such that adjacent
5672 bitfields are only partially accessed, if they straddle a storage unit
5673 boundary.  For these reasons it is unwise to use volatile bitfields to
5674 access hardware.
5675
5676 @node Extended Asm
5677 @section Assembler Instructions with C Expression Operands
5678 @cindex extended @code{asm}
5679 @cindex @code{asm} expressions
5680 @cindex assembler instructions
5681 @cindex registers
5682
5683 In an assembler instruction using @code{asm}, you can specify the
5684 operands of the instruction using C expressions.  This means you need not
5685 guess which registers or memory locations will contain the data you want
5686 to use.
5687
5688 You must specify an assembler instruction template much like what
5689 appears in a machine description, plus an operand constraint string for
5690 each operand.
5691
5692 For example, here is how to use the 68881's @code{fsinx} instruction:
5693
5694 @smallexample
5695 asm ("fsinx %1,%0" : "=f" (result) : "f" (angle));
5696 @end smallexample
5697
5698 @noindent
5699 Here @code{angle} is the C expression for the input operand while
5700 @code{result} is that of the output operand.  Each has @samp{"f"} as its
5701 operand constraint, saying that a floating point register is required.
5702 The @samp{=} in @samp{=f} indicates that the operand is an output; all
5703 output operands' constraints must use @samp{=}.  The constraints use the
5704 same language used in the machine description (@pxref{Constraints}).
5705
5706 Each operand is described by an operand-constraint string followed by
5707 the C expression in parentheses.  A colon separates the assembler
5708 template from the first output operand and another separates the last
5709 output operand from the first input, if any.  Commas separate the
5710 operands within each group.  The total number of operands is currently
5711 limited to 30; this limitation may be lifted in some future version of
5712 GCC@.
5713
5714 If there are no output operands but there are input operands, you must
5715 place two consecutive colons surrounding the place where the output
5716 operands would go.
5717
5718 As of GCC version 3.1, it is also possible to specify input and output
5719 operands using symbolic names which can be referenced within the
5720 assembler code.  These names are specified inside square brackets
5721 preceding the constraint string, and can be referenced inside the
5722 assembler code using @code{%[@var{name}]} instead of a percentage sign
5723 followed by the operand number.  Using named operands the above example
5724 could look like:
5725
5726 @smallexample
5727 asm ("fsinx %[angle],%[output]"
5728      : [output] "=f" (result)
5729      : [angle] "f" (angle));
5730 @end smallexample
5731
5732 @noindent
5733 Note that the symbolic operand names have no relation whatsoever to
5734 other C identifiers.  You may use any name you like, even those of
5735 existing C symbols, but you must ensure that no two operands within the same
5736 assembler construct use the same symbolic name.
5737
5738 Output operand expressions must be lvalues; the compiler can check this.
5739 The input operands need not be lvalues.  The compiler cannot check
5740 whether the operands have data types that are reasonable for the
5741 instruction being executed.  It does not parse the assembler instruction
5742 template and does not know what it means or even whether it is valid
5743 assembler input.  The extended @code{asm} feature is most often used for
5744 machine instructions the compiler itself does not know exist.  If
5745 the output expression cannot be directly addressed (for example, it is a
5746 bit-field), your constraint must allow a register.  In that case, GCC
5747 will use the register as the output of the @code{asm}, and then store
5748 that register into the output.
5749
5750 The ordinary output operands must be write-only; GCC will assume that
5751 the values in these operands before the instruction are dead and need
5752 not be generated.  Extended asm supports input-output or read-write
5753 operands.  Use the constraint character @samp{+} to indicate such an
5754 operand and list it with the output operands.  You should only use
5755 read-write operands when the constraints for the operand (or the
5756 operand in which only some of the bits are to be changed) allow a
5757 register.
5758
5759 You may, as an alternative, logically split its function into two
5760 separate operands, one input operand and one write-only output
5761 operand.  The connection between them is expressed by constraints
5762 which say they need to be in the same location when the instruction
5763 executes.  You can use the same C expression for both operands, or
5764 different expressions.  For example, here we write the (fictitious)
5765 @samp{combine} instruction with @code{bar} as its read-only source
5766 operand and @code{foo} as its read-write destination:
5767
5768 @smallexample
5769 asm ("combine %2,%0" : "=r" (foo) : "0" (foo), "g" (bar));
5770 @end smallexample
5771
5772 @noindent
5773 The constraint @samp{"0"} for operand 1 says that it must occupy the
5774 same location as operand 0.  A number in constraint is allowed only in
5775 an input operand and it must refer to an output operand.
5776
5777 Only a number in the constraint can guarantee that one operand will be in
5778 the same place as another.  The mere fact that @code{foo} is the value
5779 of both operands is not enough to guarantee that they will be in the
5780 same place in the generated assembler code.  The following would not
5781 work reliably:
5782
5783 @smallexample
5784 asm ("combine %2,%0" : "=r" (foo) : "r" (foo), "g" (bar));
5785 @end smallexample
5786
5787 Various optimizations or reloading could cause operands 0 and 1 to be in
5788 different registers; GCC knows no reason not to do so.  For example, the
5789 compiler might find a copy of the value of @code{foo} in one register and
5790 use it for operand 1, but generate the output operand 0 in a different
5791 register (copying it afterward to @code{foo}'s own address).  Of course,
5792 since the register for operand 1 is not even mentioned in the assembler
5793 code, the result will not work, but GCC can't tell that.
5794
5795 As of GCC version 3.1, one may write @code{[@var{name}]} instead of
5796 the operand number for a matching constraint.  For example:
5797
5798 @smallexample
5799 asm ("cmoveq %1,%2,%[result]"
5800      : [result] "=r"(result)
5801      : "r" (test), "r"(new), "[result]"(old));
5802 @end smallexample
5803
5804 Sometimes you need to make an @code{asm} operand be a specific register,
5805 but there's no matching constraint letter for that register @emph{by
5806 itself}.  To force the operand into that register, use a local variable
5807 for the operand and specify the register in the variable declaration.
5808 @xref{Explicit Reg Vars}.  Then for the @code{asm} operand, use any
5809 register constraint letter that matches the register:
5810
5811 @smallexample
5812 register int *p1 asm ("r0") = @dots{};
5813 register int *p2 asm ("r1") = @dots{};
5814 register int *result asm ("r0");
5815 asm ("sysint" : "=r" (result) : "0" (p1), "r" (p2));
5816 @end smallexample
5817
5818 @anchor{Example of asm with clobbered asm reg}
5819 In the above example, beware that a register that is call-clobbered by
5820 the target ABI will be overwritten by any function call in the
5821 assignment, including library calls for arithmetic operators.
5822 Also a register may be clobbered when generating some operations,
5823 like variable shift, memory copy or memory move on x86.
5824 Assuming it is a call-clobbered register, this may happen to @code{r0}
5825 above by the assignment to @code{p2}.  If you have to use such a
5826 register, use temporary variables for expressions between the register
5827 assignment and use:
5828
5829 @smallexample
5830 int t1 = @dots{};
5831 register int *p1 asm ("r0") = @dots{};
5832 register int *p2 asm ("r1") = t1;
5833 register int *result asm ("r0");
5834 asm ("sysint" : "=r" (result) : "0" (p1), "r" (p2));
5835 @end smallexample
5836
5837 Some instructions clobber specific hard registers.  To describe this,
5838 write a third colon after the input operands, followed by the names of
5839 the clobbered hard registers (given as strings).  Here is a realistic
5840 example for the VAX:
5841
5842 @smallexample
5843 asm volatile ("movc3 %0,%1,%2"
5844               : /* @r{no outputs} */
5845               : "g" (from), "g" (to), "g" (count)
5846               : "r0", "r1", "r2", "r3", "r4", "r5");
5847 @end smallexample
5848
5849 You may not write a clobber description in a way that overlaps with an
5850 input or output operand.  For example, you may not have an operand
5851 describing a register class with one member if you mention that register
5852 in the clobber list.  Variables declared to live in specific registers
5853 (@pxref{Explicit Reg Vars}), and used as asm input or output operands must
5854 have no part mentioned in the clobber description.
5855 There is no way for you to specify that an input
5856 operand is modified without also specifying it as an output
5857 operand.  Note that if all the output operands you specify are for this
5858 purpose (and hence unused), you will then also need to specify
5859 @code{volatile} for the @code{asm} construct, as described below, to
5860 prevent GCC from deleting the @code{asm} statement as unused.
5861
5862 If you refer to a particular hardware register from the assembler code,
5863 you will probably have to list the register after the third colon to
5864 tell the compiler the register's value is modified.  In some assemblers,
5865 the register names begin with @samp{%}; to produce one @samp{%} in the
5866 assembler code, you must write @samp{%%} in the input.
5867
5868 If your assembler instruction can alter the condition code register, add
5869 @samp{cc} to the list of clobbered registers.  GCC on some machines
5870 represents the condition codes as a specific hardware register;
5871 @samp{cc} serves to name this register.  On other machines, the
5872 condition code is handled differently, and specifying @samp{cc} has no
5873 effect.  But it is valid no matter what the machine.
5874
5875 If your assembler instructions access memory in an unpredictable
5876 fashion, add @samp{memory} to the list of clobbered registers.  This
5877 will cause GCC to not keep memory values cached in registers across the
5878 assembler instruction and not optimize stores or loads to that memory.
5879 You will also want to add the @code{volatile} keyword if the memory
5880 affected is not listed in the inputs or outputs of the @code{asm}, as
5881 the @samp{memory} clobber does not count as a side-effect of the
5882 @code{asm}.  If you know how large the accessed memory is, you can add
5883 it as input or output but if this is not known, you should add
5884 @samp{memory}.  As an example, if you access ten bytes of a string, you
5885 can use a memory input like:
5886
5887 @smallexample
5888 @{"m"( (@{ struct @{ char x[10]; @} *p = (void *)ptr ; *p; @}) )@}.
5889 @end smallexample
5890
5891 Note that in the following example the memory input is necessary,
5892 otherwise GCC might optimize the store to @code{x} away:
5893 @smallexample
5894 int foo ()
5895 @{
5896   int x = 42;
5897   int *y = &x;
5898   int result;
5899   asm ("magic stuff accessing an 'int' pointed to by '%1'"
5900         "=&d" (r) : "a" (y), "m" (*y));
5901   return result;
5902 @}
5903 @end smallexample
5904
5905 You can put multiple assembler instructions together in a single
5906 @code{asm} template, separated by the characters normally used in assembly
5907 code for the system.  A combination that works in most places is a newline
5908 to break the line, plus a tab character to move to the instruction field
5909 (written as @samp{\n\t}).  Sometimes semicolons can be used, if the
5910 assembler allows semicolons as a line-breaking character.  Note that some
5911 assembler dialects use semicolons to start a comment.
5912 The input operands are guaranteed not to use any of the clobbered
5913 registers, and neither will the output operands' addresses, so you can
5914 read and write the clobbered registers as many times as you like.  Here
5915 is an example of multiple instructions in a template; it assumes the
5916 subroutine @code{_foo} accepts arguments in registers 9 and 10:
5917
5918 @smallexample
5919 asm ("movl %0,r9\n\tmovl %1,r10\n\tcall _foo"
5920      : /* no outputs */
5921      : "g" (from), "g" (to)
5922      : "r9", "r10");
5923 @end smallexample
5924
5925 Unless an output operand has the @samp{&} constraint modifier, GCC
5926 may allocate it in the same register as an unrelated input operand, on
5927 the assumption the inputs are consumed before the outputs are produced.
5928 This assumption may be false if the assembler code actually consists of
5929 more than one instruction.  In such a case, use @samp{&} for each output
5930 operand that may not overlap an input.  @xref{Modifiers}.
5931
5932 If you want to test the condition code produced by an assembler
5933 instruction, you must include a branch and a label in the @code{asm}
5934 construct, as follows:
5935
5936 @smallexample
5937 asm ("clr %0\n\tfrob %1\n\tbeq 0f\n\tmov #1,%0\n0:"
5938      : "g" (result)
5939      : "g" (input));
5940 @end smallexample
5941
5942 @noindent
5943 This assumes your assembler supports local labels, as the GNU assembler
5944 and most Unix assemblers do.
5945
5946 Speaking of labels, jumps from one @code{asm} to another are not
5947 supported.  The compiler's optimizers do not know about these jumps, and
5948 therefore they cannot take account of them when deciding how to
5949 optimize.  @xref{Extended asm with goto}.
5950
5951 @cindex macros containing @code{asm}
5952 Usually the most convenient way to use these @code{asm} instructions is to
5953 encapsulate them in macros that look like functions.  For example,
5954
5955 @smallexample
5956 #define sin(x)       \
5957 (@{ double __value, __arg = (x);   \
5958    asm ("fsinx %1,%0": "=f" (__value): "f" (__arg));  \
5959    __value; @})
5960 @end smallexample
5961
5962 @noindent
5963 Here the variable @code{__arg} is used to make sure that the instruction
5964 operates on a proper @code{double} value, and to accept only those
5965 arguments @code{x} which can convert automatically to a @code{double}.
5966
5967 Another way to make sure the instruction operates on the correct data
5968 type is to use a cast in the @code{asm}.  This is different from using a
5969 variable @code{__arg} in that it converts more different types.  For
5970 example, if the desired type were @code{int}, casting the argument to
5971 @code{int} would accept a pointer with no complaint, while assigning the
5972 argument to an @code{int} variable named @code{__arg} would warn about
5973 using a pointer unless the caller explicitly casts it.
5974
5975 If an @code{asm} has output operands, GCC assumes for optimization
5976 purposes the instruction has no side effects except to change the output
5977 operands.  This does not mean instructions with a side effect cannot be
5978 used, but you must be careful, because the compiler may eliminate them
5979 if the output operands aren't used, or move them out of loops, or
5980 replace two with one if they constitute a common subexpression.  Also,
5981 if your instruction does have a side effect on a variable that otherwise
5982 appears not to change, the old value of the variable may be reused later
5983 if it happens to be found in a register.
5984
5985 You can prevent an @code{asm} instruction from being deleted
5986 by writing the keyword @code{volatile} after
5987 the @code{asm}.  For example:
5988
5989 @smallexample
5990 #define get_and_set_priority(new)              \
5991 (@{ int __old;                                  \
5992    asm volatile ("get_and_set_priority %0, %1" \
5993                  : "=g" (__old) : "g" (new));  \
5994    __old; @})
5995 @end smallexample
5996
5997 @noindent
5998 The @code{volatile} keyword indicates that the instruction has
5999 important side-effects.  GCC will not delete a volatile @code{asm} if
6000 it is reachable.  (The instruction can still be deleted if GCC can
6001 prove that control-flow will never reach the location of the
6002 instruction.)  Note that even a volatile @code{asm} instruction
6003 can be moved relative to other code, including across jump
6004 instructions.  For example, on many targets there is a system
6005 register which can be set to control the rounding mode of
6006 floating point operations.  You might try
6007 setting it with a volatile @code{asm}, like this PowerPC example:
6008
6009 @smallexample
6010        asm volatile("mtfsf 255,%0" : : "f" (fpenv));
6011        sum = x + y;
6012 @end smallexample
6013
6014 @noindent
6015 This will not work reliably, as the compiler may move the addition back
6016 before the volatile @code{asm}.  To make it work you need to add an
6017 artificial dependency to the @code{asm} referencing a variable in the code
6018 you don't want moved, for example:
6019
6020 @smallexample
6021     asm volatile ("mtfsf 255,%1" : "=X"(sum): "f"(fpenv));
6022     sum = x + y;
6023 @end smallexample
6024
6025 Similarly, you can't expect a
6026 sequence of volatile @code{asm} instructions to remain perfectly
6027 consecutive.  If you want consecutive output, use a single @code{asm}.
6028 Also, GCC will perform some optimizations across a volatile @code{asm}
6029 instruction; GCC does not ``forget everything'' when it encounters
6030 a volatile @code{asm} instruction the way some other compilers do.
6031
6032 An @code{asm} instruction without any output operands will be treated
6033 identically to a volatile @code{asm} instruction.
6034
6035 It is a natural idea to look for a way to give access to the condition
6036 code left by the assembler instruction.  However, when we attempted to
6037 implement this, we found no way to make it work reliably.  The problem
6038 is that output operands might need reloading, which would result in
6039 additional following ``store'' instructions.  On most machines, these
6040 instructions would alter the condition code before there was time to
6041 test it.  This problem doesn't arise for ordinary ``test'' and
6042 ``compare'' instructions because they don't have any output operands.
6043
6044 For reasons similar to those described above, it is not possible to give
6045 an assembler instruction access to the condition code left by previous
6046 instructions.
6047
6048 @anchor{Extended asm with goto}
6049 As of GCC version 4.5, @code{asm goto} may be used to have the assembly
6050 jump to one or more C labels.  In this form, a fifth section after the
6051 clobber list contains a list of all C labels to which the assembly may jump.
6052 Each label operand is implicitly self-named.  The @code{asm} is also assumed
6053 to fall through to the next statement.
6054
6055 This form of @code{asm} is restricted to not have outputs.  This is due
6056 to a internal restriction in the compiler that control transfer instructions
6057 cannot have outputs.  This restriction on @code{asm goto} may be lifted
6058 in some future version of the compiler.  In the mean time, @code{asm goto}
6059 may include a memory clobber, and so leave outputs in memory.
6060
6061 @smallexample
6062 int frob(int x)
6063 @{
6064   int y;
6065   asm goto ("frob %%r5, %1; jc %l[error]; mov (%2), %%r5"
6066             : : "r"(x), "r"(&y) : "r5", "memory" : error);
6067   return y;
6068  error:
6069   return -1;
6070 @}
6071 @end smallexample
6072
6073 In this (inefficient) example, the @code{frob} instruction sets the
6074 carry bit to indicate an error.  The @code{jc} instruction detects
6075 this and branches to the @code{error} label.  Finally, the output
6076 of the @code{frob} instruction (@code{%r5}) is stored into the memory
6077 for variable @code{y}, which is later read by the @code{return} statement.
6078
6079 @smallexample
6080 void doit(void)
6081 @{
6082   int i = 0;
6083   asm goto ("mfsr %%r1, 123; jmp %%r1;"
6084             ".pushsection doit_table;"
6085             ".long %l0, %l1, %l2, %l3;"
6086             ".popsection"
6087             : : : "r1" : label1, label2, label3, label4);
6088   __builtin_unreachable ();
6089
6090  label1:
6091   f1();
6092   return;
6093  label2:
6094   f2();
6095   return;
6096  label3:
6097   i = 1;
6098  label4:
6099   f3(i);
6100 @}
6101 @end smallexample
6102
6103 In this (also inefficient) example, the @code{mfsr} instruction reads
6104 an address from some out-of-band machine register, and the following
6105 @code{jmp} instruction branches to that address.  The address read by
6106 the @code{mfsr} instruction is assumed to have been previously set via
6107 some application-specific mechanism to be one of the four values stored
6108 in the @code{doit_table} section.  Finally, the @code{asm} is followed
6109 by a call to @code{__builtin_unreachable} to indicate that the @code{asm}
6110 does not in fact fall through.
6111
6112 @smallexample
6113 #define TRACE1(NUM)                         \
6114   do @{                                      \
6115     asm goto ("0: nop;"                     \
6116               ".pushsection trace_table;"   \
6117               ".long 0b, %l0;"              \
6118               ".popsection"                 \
6119               : : : : trace#NUM);           \
6120     if (0) @{ trace#NUM: trace(); @}          \
6121   @} while (0)
6122 #define TRACE  TRACE1(__COUNTER__)
6123 @end smallexample
6124
6125 In this example (which in fact inspired the @code{asm goto} feature)
6126 we want on rare occasions to call the @code{trace} function; on other
6127 occasions we'd like to keep the overhead to the absolute minimum.
6128 The normal code path consists of a single @code{nop} instruction.
6129 However, we record the address of this @code{nop} together with the
6130 address of a label that calls the @code{trace} function.  This allows
6131 the @code{nop} instruction to be patched at runtime to be an
6132 unconditional branch to the stored label.  It is assumed that an
6133 optimizing compiler will move the labeled block out of line, to
6134 optimize the fall through path from the @code{asm}.
6135
6136 If you are writing a header file that should be includable in ISO C
6137 programs, write @code{__asm__} instead of @code{asm}.  @xref{Alternate
6138 Keywords}.
6139
6140 @subsection Size of an @code{asm}
6141
6142 Some targets require that GCC track the size of each instruction used in
6143 order to generate correct code.  Because the final length of an
6144 @code{asm} is only known by the assembler, GCC must make an estimate as
6145 to how big it will be.  The estimate is formed by counting the number of
6146 statements in the pattern of the @code{asm} and multiplying that by the
6147 length of the longest instruction on that processor.  Statements in the
6148 @code{asm} are identified by newline characters and whatever statement
6149 separator characters are supported by the assembler; on most processors
6150 this is the `@code{;}' character.
6151
6152 Normally, GCC's estimate is perfectly adequate to ensure that correct
6153 code is generated, but it is possible to confuse the compiler if you use
6154 pseudo instructions or assembler macros that expand into multiple real
6155 instructions or if you use assembler directives that expand to more
6156 space in the object file than would be needed for a single instruction.
6157 If this happens then the assembler will produce a diagnostic saying that
6158 a label is unreachable.
6159
6160 @subsection i386 floating point asm operands
6161
6162 There are several rules on the usage of stack-like regs in
6163 asm_operands insns.  These rules apply only to the operands that are
6164 stack-like regs:
6165
6166 @enumerate
6167 @item
6168 Given a set of input regs that die in an asm_operands, it is
6169 necessary to know which are implicitly popped by the asm, and
6170 which must be explicitly popped by gcc.
6171
6172 An input reg that is implicitly popped by the asm must be
6173 explicitly clobbered, unless it is constrained to match an
6174 output operand.
6175
6176 @item
6177 For any input reg that is implicitly popped by an asm, it is
6178 necessary to know how to adjust the stack to compensate for the pop.
6179 If any non-popped input is closer to the top of the reg-stack than
6180 the implicitly popped reg, it would not be possible to know what the
6181 stack looked like---it's not clear how the rest of the stack ``slides
6182 up''.
6183
6184 All implicitly popped input regs must be closer to the top of
6185 the reg-stack than any input that is not implicitly popped.
6186
6187 It is possible that if an input dies in an insn, reload might
6188 use the input reg for an output reload.  Consider this example:
6189
6190 @smallexample
6191 asm ("foo" : "=t" (a) : "f" (b));
6192 @end smallexample
6193
6194 This asm says that input B is not popped by the asm, and that
6195 the asm pushes a result onto the reg-stack, i.e., the stack is one
6196 deeper after the asm than it was before.  But, it is possible that
6197 reload will think that it can use the same reg for both the input and
6198 the output, if input B dies in this insn.
6199
6200 If any input operand uses the @code{f} constraint, all output reg
6201 constraints must use the @code{&} earlyclobber.
6202
6203 The asm above would be written as
6204
6205 @smallexample
6206 asm ("foo" : "=&t" (a) : "f" (b));
6207 @end smallexample
6208
6209 @item
6210 Some operands need to be in particular places on the stack.  All
6211 output operands fall in this category---there is no other way to
6212 know which regs the outputs appear in unless the user indicates
6213 this in the constraints.
6214
6215 Output operands must specifically indicate which reg an output
6216 appears in after an asm.  @code{=f} is not allowed: the operand
6217 constraints must select a class with a single reg.
6218
6219 @item
6220 Output operands may not be ``inserted'' between existing stack regs.
6221 Since no 387 opcode uses a read/write operand, all output operands
6222 are dead before the asm_operands, and are pushed by the asm_operands.
6223 It makes no sense to push anywhere but the top of the reg-stack.
6224
6225 Output operands must start at the top of the reg-stack: output
6226 operands may not ``skip'' a reg.
6227
6228 @item
6229 Some asm statements may need extra stack space for internal
6230 calculations.  This can be guaranteed by clobbering stack registers
6231 unrelated to the inputs and outputs.
6232
6233 @end enumerate
6234
6235 Here are a couple of reasonable asms to want to write.  This asm
6236 takes one input, which is internally popped, and produces two outputs.
6237
6238 @smallexample
6239 asm ("fsincos" : "=t" (cos), "=u" (sin) : "0" (inp));
6240 @end smallexample
6241
6242 This asm takes two inputs, which are popped by the @code{fyl2xp1} opcode,
6243 and replaces them with one output.  The user must code the @code{st(1)}
6244 clobber for reg-stack.c to know that @code{fyl2xp1} pops both inputs.
6245
6246 @smallexample
6247 asm ("fyl2xp1" : "=t" (result) : "0" (x), "u" (y) : "st(1)");
6248 @end smallexample
6249
6250 @include md.texi
6251
6252 @node Asm Labels
6253 @section Controlling Names Used in Assembler Code
6254 @cindex assembler names for identifiers
6255 @cindex names used in assembler code
6256 @cindex identifiers, names in assembler code
6257
6258 You can specify the name to be used in the assembler code for a C
6259 function or variable by writing the @code{asm} (or @code{__asm__})
6260 keyword after the declarator as follows:
6261
6262 @smallexample
6263 int foo asm ("myfoo") = 2;
6264 @end smallexample
6265
6266 @noindent
6267 This specifies that the name to be used for the variable @code{foo} in
6268 the assembler code should be @samp{myfoo} rather than the usual
6269 @samp{_foo}.
6270
6271 On systems where an underscore is normally prepended to the name of a C
6272 function or variable, this feature allows you to define names for the
6273 linker that do not start with an underscore.
6274
6275 It does not make sense to use this feature with a non-static local
6276 variable since such variables do not have assembler names.  If you are
6277 trying to put the variable in a particular register, see @ref{Explicit
6278 Reg Vars}.  GCC presently accepts such code with a warning, but will
6279 probably be changed to issue an error, rather than a warning, in the
6280 future.
6281
6282 You cannot use @code{asm} in this way in a function @emph{definition}; but
6283 you can get the same effect by writing a declaration for the function
6284 before its definition and putting @code{asm} there, like this:
6285
6286 @smallexample
6287 extern func () asm ("FUNC");
6288
6289 func (x, y)
6290      int x, y;
6291 /* @r{@dots{}} */
6292 @end smallexample
6293
6294 It is up to you to make sure that the assembler names you choose do not
6295 conflict with any other assembler symbols.  Also, you must not use a
6296 register name; that would produce completely invalid assembler code.  GCC
6297 does not as yet have the ability to store static variables in registers.
6298 Perhaps that will be added.
6299
6300 @node Explicit Reg Vars
6301 @section Variables in Specified Registers
6302 @cindex explicit register variables
6303 @cindex variables in specified registers
6304 @cindex specified registers
6305 @cindex registers, global allocation
6306
6307 GNU C allows you to put a few global variables into specified hardware
6308 registers.  You can also specify the register in which an ordinary
6309 register variable should be allocated.
6310
6311 @itemize @bullet
6312 @item
6313 Global register variables reserve registers throughout the program.
6314 This may be useful in programs such as programming language
6315 interpreters which have a couple of global variables that are accessed
6316 very often.
6317
6318 @item
6319 Local register variables in specific registers do not reserve the
6320 registers, except at the point where they are used as input or output
6321 operands in an @code{asm} statement and the @code{asm} statement itself is
6322 not deleted.  The compiler's data flow analysis is capable of determining
6323 where the specified registers contain live values, and where they are
6324 available for other uses.  Stores into local register variables may be deleted
6325 when they appear to be dead according to dataflow analysis.  References
6326 to local register variables may be deleted or moved or simplified.
6327
6328 These local variables are sometimes convenient for use with the extended
6329 @code{asm} feature (@pxref{Extended Asm}), if you want to write one
6330 output of the assembler instruction directly into a particular register.
6331 (This will work provided the register you specify fits the constraints
6332 specified for that operand in the @code{asm}.)
6333 @end itemize
6334
6335 @menu
6336 * Global Reg Vars::
6337 * Local Reg Vars::
6338 @end menu
6339
6340 @node Global Reg Vars
6341 @subsection Defining Global Register Variables
6342 @cindex global register variables
6343 @cindex registers, global variables in
6344
6345 You can define a global register variable in GNU C like this:
6346
6347 @smallexample
6348 register int *foo asm ("a5");
6349 @end smallexample
6350
6351 @noindent
6352 Here @code{a5} is the name of the register which should be used.  Choose a
6353 register which is normally saved and restored by function calls on your
6354 machine, so that library routines will not clobber it.
6355
6356 Naturally the register name is cpu-dependent, so you would need to
6357 conditionalize your program according to cpu type.  The register
6358 @code{a5} would be a good choice on a 68000 for a variable of pointer
6359 type.  On machines with register windows, be sure to choose a ``global''
6360 register that is not affected magically by the function call mechanism.
6361
6362 In addition, operating systems on one type of cpu may differ in how they
6363 name the registers; then you would need additional conditionals.  For
6364 example, some 68000 operating systems call this register @code{%a5}.
6365
6366 Eventually there may be a way of asking the compiler to choose a register
6367 automatically, but first we need to figure out how it should choose and
6368 how to enable you to guide the choice.  No solution is evident.
6369
6370 Defining a global register variable in a certain register reserves that
6371 register entirely for this use, at least within the current compilation.
6372 The register will not be allocated for any other purpose in the functions
6373 in the current compilation.  The register will not be saved and restored by
6374 these functions.  Stores into this register are never deleted even if they
6375 would appear to be dead, but references may be deleted or moved or
6376 simplified.
6377
6378 It is not safe to access the global register variables from signal
6379 handlers, or from more than one thread of control, because the system
6380 library routines may temporarily use the register for other things (unless
6381 you recompile them specially for the task at hand).
6382
6383 @cindex @code{qsort}, and global register variables
6384 It is not safe for one function that uses a global register variable to
6385 call another such function @code{foo} by way of a third function
6386 @code{lose} that was compiled without knowledge of this variable (i.e.@: in a
6387 different source file in which the variable wasn't declared).  This is
6388 because @code{lose} might save the register and put some other value there.
6389 For example, you can't expect a global register variable to be available in
6390 the comparison-function that you pass to @code{qsort}, since @code{qsort}
6391 might have put something else in that register.  (If you are prepared to
6392 recompile @code{qsort} with the same global register variable, you can
6393 solve this problem.)
6394
6395 If you want to recompile @code{qsort} or other source files which do not
6396 actually use your global register variable, so that they will not use that
6397 register for any other purpose, then it suffices to specify the compiler
6398 option @option{-ffixed-@var{reg}}.  You need not actually add a global
6399 register declaration to their source code.
6400
6401 A function which can alter the value of a global register variable cannot
6402 safely be called from a function compiled without this variable, because it
6403 could clobber the value the caller expects to find there on return.
6404 Therefore, the function which is the entry point into the part of the
6405 program that uses the global register variable must explicitly save and
6406 restore the value which belongs to its caller.
6407
6408 @cindex register variable after @code{longjmp}
6409 @cindex global register after @code{longjmp}
6410 @cindex value after @code{longjmp}
6411 @findex longjmp
6412 @findex setjmp
6413 On most machines, @code{longjmp} will restore to each global register
6414 variable the value it had at the time of the @code{setjmp}.  On some
6415 machines, however, @code{longjmp} will not change the value of global
6416 register variables.  To be portable, the function that called @code{setjmp}
6417 should make other arrangements to save the values of the global register
6418 variables, and to restore them in a @code{longjmp}.  This way, the same
6419 thing will happen regardless of what @code{longjmp} does.
6420
6421 All global register variable declarations must precede all function
6422 definitions.  If such a declaration could appear after function
6423 definitions, the declaration would be too late to prevent the register from
6424 being used for other purposes in the preceding functions.
6425
6426 Global register variables may not have initial values, because an
6427 executable file has no means to supply initial contents for a register.
6428
6429 On the SPARC, there are reports that g3 @dots{} g7 are suitable
6430 registers, but certain library functions, such as @code{getwd}, as well
6431 as the subroutines for division and remainder, modify g3 and g4.  g1 and
6432 g2 are local temporaries.
6433
6434 On the 68000, a2 @dots{} a5 should be suitable, as should d2 @dots{} d7.
6435 Of course, it will not do to use more than a few of those.
6436
6437 @node Local Reg Vars
6438 @subsection Specifying Registers for Local Variables
6439 @cindex local variables, specifying registers
6440 @cindex specifying registers for local variables
6441 @cindex registers for local variables
6442
6443 You can define a local register variable with a specified register
6444 like this:
6445
6446 @smallexample
6447 register int *foo asm ("a5");
6448 @end smallexample
6449
6450 @noindent
6451 Here @code{a5} is the name of the register which should be used.  Note
6452 that this is the same syntax used for defining global register
6453 variables, but for a local variable it would appear within a function.
6454
6455 Naturally the register name is cpu-dependent, but this is not a
6456 problem, since specific registers are most often useful with explicit
6457 assembler instructions (@pxref{Extended Asm}).  Both of these things
6458 generally require that you conditionalize your program according to
6459 cpu type.
6460
6461 In addition, operating systems on one type of cpu may differ in how they
6462 name the registers; then you would need additional conditionals.  For
6463 example, some 68000 operating systems call this register @code{%a5}.
6464
6465 Defining such a register variable does not reserve the register; it
6466 remains available for other uses in places where flow control determines
6467 the variable's value is not live.
6468
6469 This option does not guarantee that GCC will generate code that has
6470 this variable in the register you specify at all times.  You may not
6471 code an explicit reference to this register in the @emph{assembler
6472 instruction template} part of an @code{asm} statement and assume it will
6473 always refer to this variable.  However, using the variable as an
6474 @code{asm} @emph{operand} guarantees that the specified register is used
6475 for the operand.
6476
6477 Stores into local register variables may be deleted when they appear to be dead
6478 according to dataflow analysis.  References to local register variables may
6479 be deleted or moved or simplified.
6480
6481 As for global register variables, it's recommended that you choose a
6482 register which is normally saved and restored by function calls on
6483 your machine, so that library routines will not clobber it.  A common
6484 pitfall is to initialize multiple call-clobbered registers with
6485 arbitrary expressions, where a function call or library call for an
6486 arithmetic operator will overwrite a register value from a previous
6487 assignment, for example @code{r0} below:
6488 @smallexample
6489 register int *p1 asm ("r0") = @dots{};
6490 register int *p2 asm ("r1") = @dots{};
6491 @end smallexample
6492 In those cases, a solution is to use a temporary variable for
6493 each arbitrary expression.   @xref{Example of asm with clobbered asm reg}.
6494
6495 @node Alternate Keywords
6496 @section Alternate Keywords
6497 @cindex alternate keywords
6498 @cindex keywords, alternate
6499
6500 @option{-ansi} and the various @option{-std} options disable certain
6501 keywords.  This causes trouble when you want to use GNU C extensions, or
6502 a general-purpose header file that should be usable by all programs,
6503 including ISO C programs.  The keywords @code{asm}, @code{typeof} and
6504 @code{inline} are not available in programs compiled with
6505 @option{-ansi} or @option{-std} (although @code{inline} can be used in a
6506 program compiled with @option{-std=c99} or @option{-std=c11}).  The
6507 ISO C99 keyword
6508 @code{restrict} is only available when @option{-std=gnu99} (which will
6509 eventually be the default) or @option{-std=c99} (or the equivalent
6510 @option{-std=iso9899:1999}), or an option for a later standard
6511 version, is used.
6512
6513 The way to solve these problems is to put @samp{__} at the beginning and
6514 end of each problematical keyword.  For example, use @code{__asm__}
6515 instead of @code{asm}, and @code{__inline__} instead of @code{inline}.
6516
6517 Other C compilers won't accept these alternative keywords; if you want to
6518 compile with another compiler, you can define the alternate keywords as
6519 macros to replace them with the customary keywords.  It looks like this:
6520
6521 @smallexample
6522 #ifndef __GNUC__
6523 #define __asm__ asm
6524 #endif
6525 @end smallexample
6526
6527 @findex __extension__
6528 @opindex pedantic
6529 @option{-pedantic} and other options cause warnings for many GNU C extensions.
6530 You can
6531 prevent such warnings within one expression by writing
6532 @code{__extension__} before the expression.  @code{__extension__} has no
6533 effect aside from this.
6534
6535 @node Incomplete Enums
6536 @section Incomplete @code{enum} Types
6537
6538 You can define an @code{enum} tag without specifying its possible values.
6539 This results in an incomplete type, much like what you get if you write
6540 @code{struct foo} without describing the elements.  A later declaration
6541 which does specify the possible values completes the type.
6542
6543 You can't allocate variables or storage using the type while it is
6544 incomplete.  However, you can work with pointers to that type.
6545
6546 This extension may not be very useful, but it makes the handling of
6547 @code{enum} more consistent with the way @code{struct} and @code{union}
6548 are handled.
6549
6550 This extension is not supported by GNU C++.
6551
6552 @node Function Names
6553 @section Function Names as Strings
6554 @cindex @code{__func__} identifier
6555 @cindex @code{__FUNCTION__} identifier
6556 @cindex @code{__PRETTY_FUNCTION__} identifier
6557
6558 GCC provides three magic variables which hold the name of the current
6559 function, as a string.  The first of these is @code{__func__}, which
6560 is part of the C99 standard:
6561
6562 The identifier @code{__func__} is implicitly declared by the translator
6563 as if, immediately following the opening brace of each function
6564 definition, the declaration
6565
6566 @smallexample
6567 static const char __func__[] = "function-name";
6568 @end smallexample
6569
6570 @noindent
6571 appeared, where function-name is the name of the lexically-enclosing
6572 function.  This name is the unadorned name of the function.
6573
6574 @code{__FUNCTION__} is another name for @code{__func__}.  Older
6575 versions of GCC recognize only this name.  However, it is not
6576 standardized.  For maximum portability, we recommend you use
6577 @code{__func__}, but provide a fallback definition with the
6578 preprocessor:
6579
6580 @smallexample
6581 #if __STDC_VERSION__ < 199901L
6582 # if __GNUC__ >= 2
6583 #  define __func__ __FUNCTION__
6584 # else
6585 #  define __func__ "<unknown>"
6586 # endif
6587 #endif
6588 @end smallexample
6589
6590 In C, @code{__PRETTY_FUNCTION__} is yet another name for
6591 @code{__func__}.  However, in C++, @code{__PRETTY_FUNCTION__} contains
6592 the type signature of the function as well as its bare name.  For
6593 example, this program:
6594
6595 @smallexample
6596 extern "C" @{
6597 extern int printf (char *, ...);
6598 @}
6599
6600 class a @{
6601  public:
6602   void sub (int i)
6603     @{
6604       printf ("__FUNCTION__ = %s\n", __FUNCTION__);
6605       printf ("__PRETTY_FUNCTION__ = %s\n", __PRETTY_FUNCTION__);
6606     @}
6607 @};
6608
6609 int
6610 main (void)
6611 @{
6612   a ax;
6613   ax.sub (0);
6614   return 0;
6615 @}
6616 @end smallexample
6617
6618 @noindent
6619 gives this output:
6620
6621 @smallexample
6622 __FUNCTION__ = sub
6623 __PRETTY_FUNCTION__ = void a::sub(int)
6624 @end smallexample
6625
6626 These identifiers are not preprocessor macros.  In GCC 3.3 and
6627 earlier, in C only, @code{__FUNCTION__} and @code{__PRETTY_FUNCTION__}
6628 were treated as string literals; they could be used to initialize
6629 @code{char} arrays, and they could be concatenated with other string
6630 literals.  GCC 3.4 and later treat them as variables, like
6631 @code{__func__}.  In C++, @code{__FUNCTION__} and
6632 @code{__PRETTY_FUNCTION__} have always been variables.
6633
6634 @node Return Address
6635 @section Getting the Return or Frame Address of a Function
6636
6637 These functions may be used to get information about the callers of a
6638 function.
6639
6640 @deftypefn {Built-in Function} {void *} __builtin_return_address (unsigned int @var{level})
6641 This function returns the return address of the current function, or of
6642 one of its callers.  The @var{level} argument is number of frames to
6643 scan up the call stack.  A value of @code{0} yields the return address
6644 of the current function, a value of @code{1} yields the return address
6645 of the caller of the current function, and so forth.  When inlining
6646 the expected behavior is that the function will return the address of
6647 the function that will be returned to.  To work around this behavior use
6648 the @code{noinline} function attribute.
6649
6650 The @var{level} argument must be a constant integer.
6651
6652 On some machines it may be impossible to determine the return address of
6653 any function other than the current one; in such cases, or when the top
6654 of the stack has been reached, this function will return @code{0} or a
6655 random value.  In addition, @code{__builtin_frame_address} may be used
6656 to determine if the top of the stack has been reached.
6657
6658 Additional post-processing of the returned value may be needed, see
6659 @code{__builtin_extract_return_address}.
6660
6661 This function should only be used with a nonzero argument for debugging
6662 purposes.
6663 @end deftypefn
6664
6665 @deftypefn {Built-in Function} {void *} __builtin_extract_return_address (void *@var{addr})
6666 The address as returned by @code{__builtin_return_address} may have to be fed
6667 through this function to get the actual encoded address.  For example, on the
6668 31-bit S/390 platform the highest bit has to be masked out, or on SPARC
6669 platforms an offset has to be added for the true next instruction to be
6670 executed.
6671
6672 If no fixup is needed, this function simply passes through @var{addr}.
6673 @end deftypefn
6674
6675 @deftypefn {Built-in Function} {void *} __builtin_frob_return_address (void *@var{addr})
6676 This function does the reverse of @code{__builtin_extract_return_address}.
6677 @end deftypefn
6678
6679 @deftypefn {Built-in Function} {void *} __builtin_frame_address (unsigned int @var{level})
6680 This function is similar to @code{__builtin_return_address}, but it
6681 returns the address of the function frame rather than the return address
6682 of the function.  Calling @code{__builtin_frame_address} with a value of
6683 @code{0} yields the frame address of the current function, a value of
6684 @code{1} yields the frame address of the caller of the current function,
6685 and so forth.
6686
6687 The frame is the area on the stack which holds local variables and saved
6688 registers.  The frame address is normally the address of the first word
6689 pushed on to the stack by the function.  However, the exact definition
6690 depends upon the processor and the calling convention.  If the processor
6691 has a dedicated frame pointer register, and the function has a frame,
6692 then @code{__builtin_frame_address} will return the value of the frame
6693 pointer register.
6694
6695 On some machines it may be impossible to determine the frame address of
6696 any function other than the current one; in such cases, or when the top
6697 of the stack has been reached, this function will return @code{0} if
6698 the first frame pointer is properly initialized by the startup code.
6699
6700 This function should only be used with a nonzero argument for debugging
6701 purposes.
6702 @end deftypefn
6703
6704 @node Vector Extensions
6705 @section Using vector instructions through built-in functions
6706
6707 On some targets, the instruction set contains SIMD vector instructions that
6708 operate on multiple values contained in one large register at the same time.
6709 For example, on the i386 the MMX, 3DNow!@: and SSE extensions can be used
6710 this way.
6711
6712 The first step in using these extensions is to provide the necessary data
6713 types.  This should be done using an appropriate @code{typedef}:
6714
6715 @smallexample
6716 typedef int v4si __attribute__ ((vector_size (16)));
6717 @end smallexample
6718
6719 The @code{int} type specifies the base type, while the attribute specifies
6720 the vector size for the variable, measured in bytes.  For example, the
6721 declaration above causes the compiler to set the mode for the @code{v4si}
6722 type to be 16 bytes wide and divided into @code{int} sized units.  For
6723 a 32-bit @code{int} this means a vector of 4 units of 4 bytes, and the
6724 corresponding mode of @code{foo} will be @acronym{V4SI}.
6725
6726 The @code{vector_size} attribute is only applicable to integral and
6727 float scalars, although arrays, pointers, and function return values
6728 are allowed in conjunction with this construct.
6729
6730 All the basic integer types can be used as base types, both as signed
6731 and as unsigned: @code{char}, @code{short}, @code{int}, @code{long},
6732 @code{long long}.  In addition, @code{float} and @code{double} can be
6733 used to build floating-point vector types.
6734
6735 Specifying a combination that is not valid for the current architecture
6736 will cause GCC to synthesize the instructions using a narrower mode.
6737 For example, if you specify a variable of type @code{V4SI} and your
6738 architecture does not allow for this specific SIMD type, GCC will
6739 produce code that uses 4 @code{SIs}.
6740
6741 The types defined in this manner can be used with a subset of normal C
6742 operations.  Currently, GCC will allow using the following operators
6743 on these types: @code{+, -, *, /, unary minus, ^, |, &, ~, %}@.
6744
6745 The operations behave like C++ @code{valarrays}.  Addition is defined as
6746 the addition of the corresponding elements of the operands.  For
6747 example, in the code below, each of the 4 elements in @var{a} will be
6748 added to the corresponding 4 elements in @var{b} and the resulting
6749 vector will be stored in @var{c}.
6750
6751 @smallexample
6752 typedef int v4si __attribute__ ((vector_size (16)));
6753
6754 v4si a, b, c;
6755
6756 c = a + b;
6757 @end smallexample
6758
6759 Subtraction, multiplication, division, and the logical operations
6760 operate in a similar manner.  Likewise, the result of using the unary
6761 minus or complement operators on a vector type is a vector whose
6762 elements are the negative or complemented values of the corresponding
6763 elements in the operand.
6764
6765 In C it is possible to use shifting operators @code{<<}, @code{>>} on
6766 integer-type vectors. The operation is defined as following: @code{@{a0,
6767 a1, @dots{}, an@} >> @{b0, b1, @dots{}, bn@} == @{a0 >> b0, a1 >> b1,
6768 @dots{}, an >> bn@}}@. Vector operands must have the same number of
6769 elements. 
6770
6771 For the convenience in C it is allowed to use a binary vector operation
6772 where one operand is a scalar. In that case the compiler will transform
6773 the scalar operand into a vector where each element is the scalar from
6774 the operation. The transformation will happen only if the scalar could be
6775 safely converted to the vector-element type.
6776 Consider the following code.
6777
6778 @smallexample
6779 typedef int v4si __attribute__ ((vector_size (16)));
6780
6781 v4si a, b, c;
6782 long l;
6783
6784 a = b + 1;    /* a = b + @{1,1,1,1@}; */
6785 a = 2 * b;    /* a = @{2,2,2,2@} * b; */
6786
6787 a = l + a;    /* Error, cannot convert long to int. */
6788 @end smallexample
6789
6790 In C vectors can be subscripted as if the vector were an array with
6791 the same number of elements and base type.  Out of bound accesses
6792 invoke undefined behavior at runtime.  Warnings for out of bound
6793 accesses for vector subscription can be enabled with
6794 @option{-Warray-bounds}.
6795
6796 In GNU C vector comparison is supported within standard comparison
6797 operators: @code{==, !=, <, <=, >, >=}. Comparison operands can be
6798 vector expressions of integer-type or real-type. Comparison between
6799 integer-type vectors and real-type vectors are not supported.  The
6800 result of the comparison is a vector of the same width and number of
6801 elements as the comparison operands with a signed integral element
6802 type.
6803
6804 Vectors are compared element-wise producing 0 when comparison is false
6805 and -1 (constant of the appropriate type where all bits are set)
6806 otherwise. Consider the following example.
6807
6808 @smallexample
6809 typedef int v4si __attribute__ ((vector_size (16)));
6810
6811 v4si a = @{1,2,3,4@};
6812 v4si b = @{3,2,1,4@};
6813 v4si c;
6814
6815 c = a >  b;     /* The result would be @{0, 0,-1, 0@}  */
6816 c = a == b;     /* The result would be @{0,-1, 0,-1@}  */
6817 @end smallexample
6818
6819 Vector shuffling is available using functions
6820 @code{__builtin_shuffle (vec, mask)} and
6821 @code{__builtin_shuffle (vec0, vec1, mask)}.
6822 Both functions construct a permutation of elements from one or two
6823 vectors and return a vector of the same type as the input vector(s).
6824 The @var{mask} is an integral vector with the same width (@var{W})
6825 and element count (@var{N}) as the output vector.
6826
6827 The elements of the input vectors are numbered in memory ordering of
6828 @var{vec0} beginning at 0 and @var{vec1} beginning at @var{N}.  The
6829 elements of @var{mask} are considered modulo @var{N} in the single-operand
6830 case and modulo @math{2*@var{N}} in the two-operand case.
6831
6832 Consider the following example,
6833
6834 @smallexample
6835 typedef int v4si __attribute__ ((vector_size (16)));
6836
6837 v4si a = @{1,2,3,4@};
6838 v4si b = @{5,6,7,8@};
6839 v4si mask1 = @{0,1,1,3@};
6840 v4si mask2 = @{0,4,2,5@};
6841 v4si res;
6842
6843 res = __builtin_shuffle (a, mask1);       /* res is @{1,2,2,4@}  */
6844 res = __builtin_shuffle (a, b, mask2);    /* res is @{1,5,3,6@}  */
6845 @end smallexample
6846
6847 Note that @code{__builtin_shuffle} is intentionally semantically
6848 compatible with the OpenCL @code{shuffle} and @code{shuffle2} functions.
6849
6850 You can declare variables and use them in function calls and returns, as
6851 well as in assignments and some casts.  You can specify a vector type as
6852 a return type for a function.  Vector types can also be used as function
6853 arguments.  It is possible to cast from one vector type to another,
6854 provided they are of the same size (in fact, you can also cast vectors
6855 to and from other datatypes of the same size).
6856
6857 You cannot operate between vectors of different lengths or different
6858 signedness without a cast.
6859
6860 @node Offsetof
6861 @section Offsetof
6862 @findex __builtin_offsetof
6863
6864 GCC implements for both C and C++ a syntactic extension to implement
6865 the @code{offsetof} macro.
6866
6867 @smallexample
6868 primary:
6869         "__builtin_offsetof" "(" @code{typename} "," offsetof_member_designator ")"
6870
6871 offsetof_member_designator:
6872           @code{identifier}
6873         | offsetof_member_designator "." @code{identifier}
6874         | offsetof_member_designator "[" @code{expr} "]"
6875 @end smallexample
6876
6877 This extension is sufficient such that
6878
6879 @smallexample
6880 #define offsetof(@var{type}, @var{member})  __builtin_offsetof (@var{type}, @var{member})
6881 @end smallexample
6882
6883 is a suitable definition of the @code{offsetof} macro.  In C++, @var{type}
6884 may be dependent.  In either case, @var{member} may consist of a single
6885 identifier, or a sequence of member accesses and array references.
6886
6887 @node __sync Builtins
6888 @section Legacy __sync built-in functions for atomic memory access
6889
6890 The following builtins are intended to be compatible with those described
6891 in the @cite{Intel Itanium Processor-specific Application Binary Interface},
6892 section 7.4.  As such, they depart from the normal GCC practice of using
6893 the ``__builtin_'' prefix, and further that they are overloaded such that
6894 they work on multiple types.
6895
6896 The definition given in the Intel documentation allows only for the use of
6897 the types @code{int}, @code{long}, @code{long long} as well as their unsigned
6898 counterparts.  GCC will allow any integral scalar or pointer type that is
6899 1, 2, 4 or 8 bytes in length.
6900
6901 Not all operations are supported by all target processors.  If a particular
6902 operation cannot be implemented on the target processor, a warning will be
6903 generated and a call an external function will be generated.  The external
6904 function will carry the same name as the builtin, with an additional suffix
6905 @samp{_@var{n}} where @var{n} is the size of the data type.
6906
6907 @c ??? Should we have a mechanism to suppress this warning?  This is almost
6908 @c useful for implementing the operation under the control of an external
6909 @c mutex.
6910
6911 In most cases, these builtins are considered a @dfn{full barrier}.  That is,
6912 no memory operand will be moved across the operation, either forward or
6913 backward.  Further, instructions will be issued as necessary to prevent the
6914 processor from speculating loads across the operation and from queuing stores
6915 after the operation.
6916
6917 All of the routines are described in the Intel documentation to take
6918 ``an optional list of variables protected by the memory barrier''.  It's
6919 not clear what is meant by that; it could mean that @emph{only} the
6920 following variables are protected, or it could mean that these variables
6921 should in addition be protected.  At present GCC ignores this list and
6922 protects all variables which are globally accessible.  If in the future
6923 we make some use of this list, an empty list will continue to mean all
6924 globally accessible variables.
6925
6926 @table @code
6927 @item @var{type} __sync_fetch_and_add (@var{type} *ptr, @var{type} value, ...)
6928 @itemx @var{type} __sync_fetch_and_sub (@var{type} *ptr, @var{type} value, ...)
6929 @itemx @var{type} __sync_fetch_and_or (@var{type} *ptr, @var{type} value, ...)
6930 @itemx @var{type} __sync_fetch_and_and (@var{type} *ptr, @var{type} value, ...)
6931 @itemx @var{type} __sync_fetch_and_xor (@var{type} *ptr, @var{type} value, ...)
6932 @itemx @var{type} __sync_fetch_and_nand (@var{type} *ptr, @var{type} value, ...)
6933 @findex __sync_fetch_and_add
6934 @findex __sync_fetch_and_sub
6935 @findex __sync_fetch_and_or
6936 @findex __sync_fetch_and_and
6937 @findex __sync_fetch_and_xor
6938 @findex __sync_fetch_and_nand
6939 These builtins perform the operation suggested by the name, and
6940 returns the value that had previously been in memory.  That is,
6941
6942 @smallexample
6943 @{ tmp = *ptr; *ptr @var{op}= value; return tmp; @}
6944 @{ tmp = *ptr; *ptr = ~(tmp & value); return tmp; @}   // nand
6945 @end smallexample
6946
6947 @emph{Note:} GCC 4.4 and later implement @code{__sync_fetch_and_nand}
6948 builtin as @code{*ptr = ~(tmp & value)} instead of @code{*ptr = ~tmp & value}.
6949
6950 @item @var{type} __sync_add_and_fetch (@var{type} *ptr, @var{type} value, ...)
6951 @itemx @var{type} __sync_sub_and_fetch (@var{type} *ptr, @var{type} value, ...)
6952 @itemx @var{type} __sync_or_and_fetch (@var{type} *ptr, @var{type} value, ...)
6953 @itemx @var{type} __sync_and_and_fetch (@var{type} *ptr, @var{type} value, ...)
6954 @itemx @var{type} __sync_xor_and_fetch (@var{type} *ptr, @var{type} value, ...)
6955 @itemx @var{type} __sync_nand_and_fetch (@var{type} *ptr, @var{type} value, ...)
6956 @findex __sync_add_and_fetch
6957 @findex __sync_sub_and_fetch
6958 @findex __sync_or_and_fetch
6959 @findex __sync_and_and_fetch
6960 @findex __sync_xor_and_fetch
6961 @findex __sync_nand_and_fetch
6962 These builtins perform the operation suggested by the name, and
6963 return the new value.  That is,
6964
6965 @smallexample
6966 @{ *ptr @var{op}= value; return *ptr; @}
6967 @{ *ptr = ~(*ptr & value); return *ptr; @}   // nand
6968 @end smallexample
6969
6970 @emph{Note:} GCC 4.4 and later implement @code{__sync_nand_and_fetch}
6971 builtin as @code{*ptr = ~(*ptr & value)} instead of
6972 @code{*ptr = ~*ptr & value}.
6973
6974 @item bool __sync_bool_compare_and_swap (@var{type} *ptr, @var{type} oldval, @var{type} newval, ...)
6975 @itemx @var{type} __sync_val_compare_and_swap (@var{type} *ptr, @var{type} oldval, @var{type} newval, ...)
6976 @findex __sync_bool_compare_and_swap
6977 @findex __sync_val_compare_and_swap
6978 These builtins perform an atomic compare and swap.  That is, if the current
6979 value of @code{*@var{ptr}} is @var{oldval}, then write @var{newval} into
6980 @code{*@var{ptr}}.
6981
6982 The ``bool'' version returns true if the comparison is successful and
6983 @var{newval} was written.  The ``val'' version returns the contents
6984 of @code{*@var{ptr}} before the operation.
6985
6986 @item __sync_synchronize (...)
6987 @findex __sync_synchronize
6988 This builtin issues a full memory barrier.
6989
6990 @item @var{type} __sync_lock_test_and_set (@var{type} *ptr, @var{type} value, ...)
6991 @findex __sync_lock_test_and_set
6992 This builtin, as described by Intel, is not a traditional test-and-set
6993 operation, but rather an atomic exchange operation.  It writes @var{value}
6994 into @code{*@var{ptr}}, and returns the previous contents of
6995 @code{*@var{ptr}}.
6996
6997 Many targets have only minimal support for such locks, and do not support
6998 a full exchange operation.  In this case, a target may support reduced
6999 functionality here by which the @emph{only} valid value to store is the
7000 immediate constant 1.  The exact value actually stored in @code{*@var{ptr}}
7001 is implementation defined.
7002
7003 This builtin is not a full barrier, but rather an @dfn{acquire barrier}.
7004 This means that references after the builtin cannot move to (or be
7005 speculated to) before the builtin, but previous memory stores may not
7006 be globally visible yet, and previous memory loads may not yet be
7007 satisfied.
7008
7009 @item void __sync_lock_release (@var{type} *ptr, ...)
7010 @findex __sync_lock_release
7011 This builtin releases the lock acquired by @code{__sync_lock_test_and_set}.
7012 Normally this means writing the constant 0 to @code{*@var{ptr}}.
7013
7014 This builtin is not a full barrier, but rather a @dfn{release barrier}.
7015 This means that all previous memory stores are globally visible, and all
7016 previous memory loads have been satisfied, but following memory reads
7017 are not prevented from being speculated to before the barrier.
7018 @end table
7019
7020 @node __atomic Builtins
7021 @section Built-in functions for memory model aware atomic operations
7022
7023 The following built-in functions approximately match the requirements for
7024 C++11 memory model. Many are similar to the @samp{__sync} prefixed built-in
7025 functions, but all also have a memory model parameter.  These are all
7026 identified by being prefixed with @samp{__atomic}, and most are overloaded
7027 such that they work with multiple types.
7028
7029 GCC will allow any integral scalar or pointer type that is 1, 2, 4, or 8
7030 bytes in length. 16-byte integral types are also allowed if
7031 @samp{__int128} (@pxref{__int128}) is supported by the architecture.
7032
7033 Target architectures are encouraged to provide their own patterns for
7034 each of these built-in functions.  If no target is provided, the original 
7035 non-memory model set of @samp{__sync} atomic built-in functions will be
7036 utilized, along with any required synchronization fences surrounding it in
7037 order to achieve the proper behaviour.  Execution in this case is subject
7038 to the same restrictions as those built-in functions.
7039
7040 If there is no pattern or mechanism to provide a lock free instruction
7041 sequence, a call is made to an external routine with the same parameters
7042 to be resolved at runtime.
7043
7044 The four non-arithmetic functions (load, store, exchange, and 
7045 compare_exchange) all have a generic version as well.  This generic
7046 version will work on any data type.  If the data type size maps to one
7047 of the integral sizes which may have lock free support, the generic
7048 version will utilize the lock free built-in function.  Otherwise an
7049 external call is left to be resolved at runtime.  This external call will
7050 be the same format with the addition of a @samp{size_t} parameter inserted
7051 as the first parameter indicating the size of the object being pointed to.
7052 All objects must be the same size.
7053
7054 There are 6 different memory models which can be specified.  These map
7055 to the same names in the C++11 standard.  Refer there or to the
7056 @uref{http://gcc.gnu.org/wiki/Atomic/GCCMM/AtomicSync,GCC wiki on
7057 atomic synchronization} for more detailed definitions.  These memory
7058 models integrate both barriers to code motion as well as synchronization
7059 requirements with other threads. These are listed in approximately
7060 ascending order of strength.
7061
7062 @table  @code
7063 @item __ATOMIC_RELAXED
7064 No barriers or synchronization.
7065 @item __ATOMIC_CONSUME
7066 Data dependency only for both barrier and synchronization with another
7067 thread.
7068 @item __ATOMIC_ACQUIRE
7069 Barrier to hoisting of code and synchronizes with release (or stronger)
7070 semantic stores from another thread.
7071 @item __ATOMIC_RELEASE
7072 Barrier to sinking of code and synchronizes with acquire (or stronger)
7073 semantic loads from another thread.
7074 @item __ATOMIC_ACQ_REL
7075 Full barrier in both directions and synchronizes with acquire loads and
7076 release stores in another thread.
7077 @item __ATOMIC_SEQ_CST
7078 Full barrier in both directions and synchronizes with acquire loads and
7079 release stores in all threads.
7080 @end table
7081
7082 When implementing patterns for these built-in functions , the memory model
7083 parameter can be ignored as long as the pattern implements the most
7084 restrictive @code{__ATOMIC_SEQ_CST} model.  Any of the other memory models
7085 will execute correctly with this memory model but they may not execute as
7086 efficiently as they could with a more appropriate implemention of the
7087 relaxed requirements.
7088
7089 Note that the C++11 standard allows for the memory model parameter to be
7090 determined at runtime rather than at compile time.  These built-in
7091 functions will map any runtime value to @code{__ATOMIC_SEQ_CST} rather
7092 than invoke a runtime library call or inline a switch statement.  This is
7093 standard compliant, safe, and the simplest approach for now.
7094
7095 @deftypefn {Built-in Function} @var{type} __atomic_load_n (@var{type} *ptr, int memmodel)
7096 This built-in function implements an atomic load operation.  It returns the
7097 contents of @code{*@var{ptr}}.
7098
7099 The valid memory model variants are
7100 @code{__ATOMIC_RELAXED}, @code{__ATOMIC_SEQ_CST}, @code{__ATOMIC_ACQUIRE},
7101 and @code{__ATOMIC_CONSUME}.
7102
7103 @end deftypefn
7104
7105 @deftypefn {Built-in Function} void __atomic_load (@var{type} *ptr, @var{type} *ret, int memmodel)
7106 This is the generic version of an atomic load.  It will return the
7107 contents of @code{*@var{ptr}} in @code{*@var{ret}}.
7108
7109 @end deftypefn
7110
7111 @deftypefn {Built-in Function} void __atomic_store_n (@var{type} *ptr, @var{type} val, int memmodel)
7112 This built-in function implements an atomic store operation.  It writes 
7113 @code{@var{val}} into @code{*@var{ptr}}.  
7114
7115 The valid memory model variants are
7116 @code{__ATOMIC_RELAXED}, @code{__ATOMIC_SEQ_CST}, and @code{__ATOMIC_RELEASE}.
7117
7118 @end deftypefn
7119
7120 @deftypefn {Built-in Function} void __atomic_store (@var{type} *ptr, @var{type} *val, int memmodel)
7121 This is the generic version of an atomic store.  It will store the value
7122 of @code{*@var{val}} into @code{*@var{ptr}}.
7123
7124 @end deftypefn
7125
7126 @deftypefn {Built-in Function} @var{type} __atomic_exchange_n (@var{type} *ptr, @var{type} val, int memmodel)
7127 This built-in function implements an atomic exchange operation.  It writes
7128 @var{val} into @code{*@var{ptr}}, and returns the previous contents of
7129 @code{*@var{ptr}}.
7130
7131 The valid memory model variants are
7132 @code{__ATOMIC_RELAXED}, @code{__ATOMIC_SEQ_CST}, @code{__ATOMIC_ACQUIRE},
7133 @code{__ATOMIC_RELEASE}, and @code{__ATOMIC_ACQ_REL}.
7134
7135 @end deftypefn
7136
7137 @deftypefn {Built-in Function} void __atomic_exchange (@var{type} *ptr, @var{type} *val, @var{type} *ret, int memmodel)
7138 This is the generic version of an atomic exchange.  It will store the
7139 contents of @code{*@var{val}} into @code{*@var{ptr}}. The original value
7140 of @code{*@var{ptr}} will be copied into @code{*@var{ret}}.
7141
7142 @end deftypefn
7143
7144 @deftypefn {Built-in Function} bool __atomic_compare_exchange_n (@var{type} *ptr, @var{type} *expected, @var{type} desired, bool weak, int success_memmodel, int failure_memmodel)
7145 This built-in function implements an atomic compare and exchange operation.
7146 This compares the contents of @code{*@var{ptr}} with the contents of
7147 @code{*@var{expected}} and if equal, writes @var{desired} into
7148 @code{*@var{ptr}}.  If they are not equal, the current contents of
7149 @code{*@var{ptr}} is written into @code{*@var{expected}}.  @var{weak} is true
7150 for weak compare_exchange, and false for the strong variation.  Many targets 
7151 only offer the strong variation and ignore the parameter.  When in doubt, use
7152 the strong variation.
7153
7154 True is returned if @var{desired} is written into
7155 @code{*@var{ptr}} and the execution is considered to conform to the
7156 memory model specified by @var{success_memmodel}.  There are no
7157 restrictions on what memory model can be used here.
7158
7159 False is returned otherwise, and the execution is considered to conform
7160 to @var{failure_memmodel}. This memory model cannot be
7161 @code{__ATOMIC_RELEASE} nor @code{__ATOMIC_ACQ_REL}.  It also cannot be a
7162 stronger model than that specified by @var{success_memmodel}.
7163
7164 @end deftypefn
7165
7166 @deftypefn {Built-in Function} bool __atomic_compare_exchange (@var{type} *ptr, @var{type} *expected, @var{type} *desired, bool weak, int success_memmodel, int failure_memmodel)
7167 This built-in function implements the generic version of
7168 @code{__atomic_compare_exchange}.  The function is virtually identical to
7169 @code{__atomic_compare_exchange_n}, except the desired value is also a
7170 pointer.
7171
7172 @end deftypefn
7173
7174 @deftypefn {Built-in Function} @var{type} __atomic_add_fetch (@var{type} *ptr, @var{type} val, int memmodel)
7175 @deftypefnx {Built-in Function} @var{type} __atomic_sub_fetch (@var{type} *ptr, @var{type} val, int memmodel)
7176 @deftypefnx {Built-in Function} @var{type} __atomic_and_fetch (@var{type} *ptr, @var{type} val, int memmodel)
7177 @deftypefnx {Built-in Function} @var{type} __atomic_xor_fetch (@var{type} *ptr, @var{type} val, int memmodel)
7178 @deftypefnx {Built-in Function} @var{type} __atomic_or_fetch (@var{type} *ptr, @var{type} val, int memmodel)
7179 @deftypefnx {Built-in Function} @var{type} __atomic_nand_fetch (@var{type} *ptr, @var{type} val, int memmodel)
7180 These built-in functions perform the operation suggested by the name, and
7181 return the result of the operation. That is,
7182
7183 @smallexample
7184 @{ *ptr @var{op}= val; return *ptr; @}
7185 @end smallexample
7186
7187 All memory models are valid.
7188
7189 @end deftypefn
7190
7191 @deftypefn {Built-in Function} @var{type} __atomic_fetch_add (@var{type} *ptr, @var{type} val, int memmodel)
7192 @deftypefnx {Built-in Function} @var{type} __atomic_fetch_sub (@var{type} *ptr, @var{type} val, int memmodel)
7193 @deftypefnx {Built-in Function} @var{type} __atomic_fetch_and (@var{type} *ptr, @var{type} val, int memmodel)
7194 @deftypefnx {Built-in Function} @var{type} __atomic_fetch_xor (@var{type} *ptr, @var{type} val, int memmodel)
7195 @deftypefnx {Built-in Function} @var{type} __atomic_fetch_or (@var{type} *ptr, @var{type} val, int memmodel)
7196 @deftypefnx {Built-in Function} @var{type} __atomic_fetch_nand (@var{type} *ptr, @var{type} val, int memmodel)
7197 These built-in functions perform the operation suggested by the name, and
7198 return the value that had previously been in @code{*@var{ptr}}.  That is,
7199
7200 @smallexample
7201 @{ tmp = *ptr; *ptr @var{op}= val; return tmp; @}
7202 @end smallexample
7203
7204 All memory models are valid.
7205
7206 @end deftypefn
7207
7208 @deftypefn {Built-in Function} bool __atomic_test_and_set (void *ptr, int memmodel)
7209
7210 This built-in function performs an atomic test-and-set operation on
7211 the byte at @code{*@var{ptr}}.  The byte is set to some implementation
7212 defined non-zero "set" value and the return value is @code{true} if and only
7213 if the previous contents were "set".
7214
7215 All memory models are valid.
7216
7217 @end deftypefn
7218
7219 @deftypefn {Built-in Function} void __atomic_clear (bool *ptr, int memmodel)
7220
7221 This built-in function performs an atomic clear operation on
7222 @code{*@var{ptr}}.  After the operation, @code{*@var{ptr}} will contain 0.
7223
7224 The valid memory model variants are
7225 @code{__ATOMIC_RELAXED}, @code{__ATOMIC_SEQ_CST}, and
7226 @code{__ATOMIC_RELEASE}.
7227
7228 @end deftypefn
7229
7230 @deftypefn {Built-in Function} void __atomic_thread_fence (int memmodel)
7231
7232 This built-in function acts as a synchronization fence between threads
7233 based on the specified memory model.
7234
7235 All memory orders are valid.
7236
7237 @end deftypefn
7238
7239 @deftypefn {Built-in Function} void __atomic_signal_fence (int memmodel)
7240
7241 This built-in function acts as a synchronization fence between a thread
7242 and signal handlers based in the same thread.
7243
7244 All memory orders are valid.
7245
7246 @end deftypefn
7247
7248 @deftypefn {Built-in Function} bool __atomic_always_lock_free (size_t size,  void *ptr)
7249
7250 This built-in function returns true if objects of @var{size} bytes will always
7251 generate lock free atomic instructions for the target architecture.  
7252 @var{size} must resolve to a compile time constant and the result also resolves to compile time constant.
7253
7254 @var{ptr} is an optional pointer to the object which may be used to determine
7255 alignment.  A value of 0 indicates typical alignment should be used.  The 
7256 compiler may also ignore this parameter.
7257
7258 @smallexample
7259 if (_atomic_always_lock_free (sizeof (long long), 0))
7260 @end smallexample
7261
7262 @end deftypefn
7263
7264 @deftypefn {Built-in Function} bool __atomic_is_lock_free (size_t size, void *ptr)
7265
7266 This built-in function returns true if objects of @var{size} bytes will always
7267 generate lock free atomic instructions for the target architecture.  If
7268 it is not known to be lock free a call is made to a runtime routine named
7269 @code{__atomic_is_lock_free}.
7270
7271 @var{ptr} is an optional pointer to the object which may be used to determine
7272 alignment.  A value of 0 indicates typical alignment should be used.  The 
7273 compiler may also ignore this parameter.
7274 @end deftypefn
7275
7276 @node Object Size Checking
7277 @section Object Size Checking Builtins
7278 @findex __builtin_object_size
7279 @findex __builtin___memcpy_chk
7280 @findex __builtin___mempcpy_chk
7281 @findex __builtin___memmove_chk
7282 @findex __builtin___memset_chk
7283 @findex __builtin___strcpy_chk
7284 @findex __builtin___stpcpy_chk
7285 @findex __builtin___strncpy_chk
7286 @findex __builtin___strcat_chk
7287 @findex __builtin___strncat_chk
7288 @findex __builtin___sprintf_chk
7289 @findex __builtin___snprintf_chk
7290 @findex __builtin___vsprintf_chk
7291 @findex __builtin___vsnprintf_chk
7292 @findex __builtin___printf_chk
7293 @findex __builtin___vprintf_chk
7294 @findex __builtin___fprintf_chk
7295 @findex __builtin___vfprintf_chk
7296
7297 GCC implements a limited buffer overflow protection mechanism
7298 that can prevent some buffer overflow attacks.
7299
7300 @deftypefn {Built-in Function} {size_t} __builtin_object_size (void * @var{ptr}, int @var{type})
7301 is a built-in construct that returns a constant number of bytes from
7302 @var{ptr} to the end of the object @var{ptr} pointer points to
7303 (if known at compile time).  @code{__builtin_object_size} never evaluates
7304 its arguments for side-effects.  If there are any side-effects in them, it
7305 returns @code{(size_t) -1} for @var{type} 0 or 1 and @code{(size_t) 0}
7306 for @var{type} 2 or 3.  If there are multiple objects @var{ptr} can
7307 point to and all of them are known at compile time, the returned number
7308 is the maximum of remaining byte counts in those objects if @var{type} & 2 is
7309 0 and minimum if nonzero.  If it is not possible to determine which objects
7310 @var{ptr} points to at compile time, @code{__builtin_object_size} should
7311 return @code{(size_t) -1} for @var{type} 0 or 1 and @code{(size_t) 0}
7312 for @var{type} 2 or 3.
7313
7314 @var{type} is an integer constant from 0 to 3.  If the least significant
7315 bit is clear, objects are whole variables, if it is set, a closest
7316 surrounding subobject is considered the object a pointer points to.
7317 The second bit determines if maximum or minimum of remaining bytes
7318 is computed.
7319
7320 @smallexample
7321 struct V @{ char buf1[10]; int b; char buf2[10]; @} var;
7322 char *p = &var.buf1[1], *q = &var.b;
7323
7324 /* Here the object p points to is var.  */
7325 assert (__builtin_object_size (p, 0) == sizeof (var) - 1);
7326 /* The subobject p points to is var.buf1.  */
7327 assert (__builtin_object_size (p, 1) == sizeof (var.buf1) - 1);
7328 /* The object q points to is var.  */
7329 assert (__builtin_object_size (q, 0)
7330         == (char *) (&var + 1) - (char *) &var.b);
7331 /* The subobject q points to is var.b.  */
7332 assert (__builtin_object_size (q, 1) == sizeof (var.b));
7333 @end smallexample
7334 @end deftypefn
7335
7336 There are built-in functions added for many common string operation
7337 functions, e.g., for @code{memcpy} @code{__builtin___memcpy_chk}
7338 built-in is provided.  This built-in has an additional last argument,
7339 which is the number of bytes remaining in object the @var{dest}
7340 argument points to or @code{(size_t) -1} if the size is not known.
7341
7342 The built-in functions are optimized into the normal string functions
7343 like @code{memcpy} if the last argument is @code{(size_t) -1} or if
7344 it is known at compile time that the destination object will not
7345 be overflown.  If the compiler can determine at compile time the
7346 object will be always overflown, it issues a warning.
7347
7348 The intended use can be e.g.
7349
7350 @smallexample
7351 #undef memcpy
7352 #define bos0(dest) __builtin_object_size (dest, 0)
7353 #define memcpy(dest, src, n) \
7354   __builtin___memcpy_chk (dest, src, n, bos0 (dest))
7355
7356 char *volatile p;
7357 char buf[10];
7358 /* It is unknown what object p points to, so this is optimized
7359    into plain memcpy - no checking is possible.  */
7360 memcpy (p, "abcde", n);
7361 /* Destination is known and length too.  It is known at compile
7362    time there will be no overflow.  */
7363 memcpy (&buf[5], "abcde", 5);
7364 /* Destination is known, but the length is not known at compile time.
7365    This will result in __memcpy_chk call that can check for overflow
7366    at runtime.  */
7367 memcpy (&buf[5], "abcde", n);
7368 /* Destination is known and it is known at compile time there will
7369    be overflow.  There will be a warning and __memcpy_chk call that
7370    will abort the program at runtime.  */
7371 memcpy (&buf[6], "abcde", 5);
7372 @end smallexample
7373
7374 Such built-in functions are provided for @code{memcpy}, @code{mempcpy},
7375 @code{memmove}, @code{memset}, @code{strcpy}, @code{stpcpy}, @code{strncpy},
7376 @code{strcat} and @code{strncat}.
7377
7378 There are also checking built-in functions for formatted output functions.
7379 @smallexample
7380 int __builtin___sprintf_chk (char *s, int flag, size_t os, const char *fmt, ...);
7381 int __builtin___snprintf_chk (char *s, size_t maxlen, int flag, size_t os,
7382                               const char *fmt, ...);
7383 int __builtin___vsprintf_chk (char *s, int flag, size_t os, const char *fmt,
7384                               va_list ap);
7385 int __builtin___vsnprintf_chk (char *s, size_t maxlen, int flag, size_t os,
7386                                const char *fmt, va_list ap);
7387 @end smallexample
7388
7389 The added @var{flag} argument is passed unchanged to @code{__sprintf_chk}
7390 etc.@: functions and can contain implementation specific flags on what
7391 additional security measures the checking function might take, such as
7392 handling @code{%n} differently.
7393
7394 The @var{os} argument is the object size @var{s} points to, like in the
7395 other built-in functions.  There is a small difference in the behavior
7396 though, if @var{os} is @code{(size_t) -1}, the built-in functions are
7397 optimized into the non-checking functions only if @var{flag} is 0, otherwise
7398 the checking function is called with @var{os} argument set to
7399 @code{(size_t) -1}.
7400
7401 In addition to this, there are checking built-in functions
7402 @code{__builtin___printf_chk}, @code{__builtin___vprintf_chk},
7403 @code{__builtin___fprintf_chk} and @code{__builtin___vfprintf_chk}.
7404 These have just one additional argument, @var{flag}, right before
7405 format string @var{fmt}.  If the compiler is able to optimize them to
7406 @code{fputc} etc.@: functions, it will, otherwise the checking function
7407 should be called and the @var{flag} argument passed to it.
7408
7409 @node Other Builtins
7410 @section Other built-in functions provided by GCC
7411 @cindex built-in functions
7412 @findex __builtin_fpclassify
7413 @findex __builtin_isfinite
7414 @findex __builtin_isnormal
7415 @findex __builtin_isgreater
7416 @findex __builtin_isgreaterequal
7417 @findex __builtin_isinf_sign
7418 @findex __builtin_isless
7419 @findex __builtin_islessequal
7420 @findex __builtin_islessgreater
7421 @findex __builtin_isunordered
7422 @findex __builtin_powi
7423 @findex __builtin_powif
7424 @findex __builtin_powil
7425 @findex _Exit
7426 @findex _exit
7427 @findex abort
7428 @findex abs
7429 @findex acos
7430 @findex acosf
7431 @findex acosh
7432 @findex acoshf
7433 @findex acoshl
7434 @findex acosl
7435 @findex alloca
7436 @findex asin
7437 @findex asinf
7438 @findex asinh
7439 @findex asinhf
7440 @findex asinhl
7441 @findex asinl
7442 @findex atan
7443 @findex atan2
7444 @findex atan2f
7445 @findex atan2l
7446 @findex atanf
7447 @findex atanh
7448 @findex atanhf
7449 @findex atanhl
7450 @findex atanl
7451 @findex bcmp
7452 @findex bzero
7453 @findex cabs
7454 @findex cabsf
7455 @findex cabsl
7456 @findex cacos
7457 @findex cacosf
7458 @findex cacosh
7459 @findex cacoshf
7460 @findex cacoshl
7461 @findex cacosl
7462 @findex calloc
7463 @findex carg
7464 @findex cargf
7465 @findex cargl
7466 @findex casin
7467 @findex casinf
7468 @findex casinh
7469 @findex casinhf
7470 @findex casinhl
7471 @findex casinl
7472 @findex catan
7473 @findex catanf
7474 @findex catanh
7475 @findex catanhf
7476 @findex catanhl
7477 @findex catanl
7478 @findex cbrt
7479 @findex cbrtf
7480 @findex cbrtl
7481 @findex ccos
7482 @findex ccosf
7483 @findex ccosh
7484 @findex ccoshf
7485 @findex ccoshl
7486 @findex ccosl
7487 @findex ceil
7488 @findex ceilf
7489 @findex ceill
7490 @findex cexp
7491 @findex cexpf
7492 @findex cexpl
7493 @findex cimag
7494 @findex cimagf
7495 @findex cimagl
7496 @findex clog
7497 @findex clogf
7498 @findex clogl
7499 @findex conj
7500 @findex conjf
7501 @findex conjl
7502 @findex copysign
7503 @findex copysignf
7504 @findex copysignl
7505 @findex cos
7506 @findex cosf
7507 @findex cosh
7508 @findex coshf
7509 @findex coshl
7510 @findex cosl
7511 @findex cpow
7512 @findex cpowf
7513 @findex cpowl
7514 @findex cproj
7515 @findex cprojf
7516 @findex cprojl
7517 @findex creal
7518 @findex crealf
7519 @findex creall
7520 @findex csin
7521 @findex csinf
7522 @findex csinh
7523 @findex csinhf
7524 @findex csinhl
7525 @findex csinl
7526 @findex csqrt
7527 @findex csqrtf
7528 @findex csqrtl
7529 @findex ctan
7530 @findex ctanf
7531 @findex ctanh
7532 @findex ctanhf
7533 @findex ctanhl
7534 @findex ctanl
7535 @findex dcgettext
7536 @findex dgettext
7537 @findex drem
7538 @findex dremf
7539 @findex dreml
7540 @findex erf
7541 @findex erfc
7542 @findex erfcf
7543 @findex erfcl
7544 @findex erff
7545 @findex erfl
7546 @findex exit
7547 @findex exp
7548 @findex exp10
7549 @findex exp10f
7550 @findex exp10l
7551 @findex exp2
7552 @findex exp2f
7553 @findex exp2l
7554 @findex expf
7555 @findex expl
7556 @findex expm1
7557 @findex expm1f
7558 @findex expm1l
7559 @findex fabs
7560 @findex fabsf
7561 @findex fabsl
7562 @findex fdim
7563 @findex fdimf
7564 @findex fdiml
7565 @findex ffs
7566 @findex floor
7567 @findex floorf
7568 @findex floorl
7569 @findex fma
7570 @findex fmaf
7571 @findex fmal
7572 @findex fmax
7573 @findex fmaxf
7574 @findex fmaxl
7575 @findex fmin
7576 @findex fminf
7577 @findex fminl
7578 @findex fmod
7579 @findex fmodf
7580 @findex fmodl
7581 @findex fprintf
7582 @findex fprintf_unlocked
7583 @findex fputs
7584 @findex fputs_unlocked
7585 @findex frexp
7586 @findex frexpf
7587 @findex frexpl
7588 @findex fscanf
7589 @findex gamma
7590 @findex gammaf
7591 @findex gammal
7592 @findex gamma_r
7593 @findex gammaf_r
7594 @findex gammal_r
7595 @findex gettext
7596 @findex hypot
7597 @findex hypotf
7598 @findex hypotl
7599 @findex ilogb
7600 @findex ilogbf
7601 @findex ilogbl
7602 @findex imaxabs
7603 @findex index
7604 @findex isalnum
7605 @findex isalpha
7606 @findex isascii
7607 @findex isblank
7608 @findex iscntrl
7609 @findex isdigit
7610 @findex isgraph
7611 @findex islower
7612 @findex isprint
7613 @findex ispunct
7614 @findex isspace
7615 @findex isupper
7616 @findex iswalnum
7617 @findex iswalpha
7618 @findex iswblank
7619 @findex iswcntrl
7620 @findex iswdigit
7621 @findex iswgraph
7622 @findex iswlower
7623 @findex iswprint
7624 @findex iswpunct
7625 @findex iswspace
7626 @findex iswupper
7627 @findex iswxdigit
7628 @findex isxdigit
7629 @findex j0
7630 @findex j0f
7631 @findex j0l
7632 @findex j1
7633 @findex j1f
7634 @findex j1l
7635 @findex jn
7636 @findex jnf
7637 @findex jnl
7638 @findex labs
7639 @findex ldexp
7640 @findex ldexpf
7641 @findex ldexpl
7642 @findex lgamma
7643 @findex lgammaf
7644 @findex lgammal
7645 @findex lgamma_r
7646 @findex lgammaf_r
7647 @findex lgammal_r
7648 @findex llabs
7649 @findex llrint
7650 @findex llrintf
7651 @findex llrintl
7652 @findex llround
7653 @findex llroundf
7654 @findex llroundl
7655 @findex log
7656 @findex log10
7657 @findex log10f
7658 @findex log10l
7659 @findex log1p
7660 @findex log1pf
7661 @findex log1pl
7662 @findex log2
7663 @findex log2f
7664 @findex log2l
7665 @findex logb
7666 @findex logbf
7667 @findex logbl
7668 @findex logf
7669 @findex logl
7670 @findex lrint
7671 @findex lrintf
7672 @findex lrintl
7673 @findex lround
7674 @findex lroundf
7675 @findex lroundl
7676 @findex malloc
7677 @findex memchr
7678 @findex memcmp
7679 @findex memcpy
7680 @findex mempcpy
7681 @findex memset
7682 @findex modf
7683 @findex modff
7684 @findex modfl
7685 @findex nearbyint
7686 @findex nearbyintf
7687 @findex nearbyintl
7688 @findex nextafter
7689 @findex nextafterf
7690 @findex nextafterl
7691 @findex nexttoward
7692 @findex nexttowardf
7693 @findex nexttowardl
7694 @findex pow
7695 @findex pow10
7696 @findex pow10f
7697 @findex pow10l
7698 @findex powf
7699 @findex powl
7700 @findex printf
7701 @findex printf_unlocked
7702 @findex putchar
7703 @findex puts
7704 @findex remainder
7705 @findex remainderf
7706 @findex remainderl
7707 @findex remquo
7708 @findex remquof
7709 @findex remquol
7710 @findex rindex
7711 @findex rint
7712 @findex rintf
7713 @findex rintl
7714 @findex round
7715 @findex roundf
7716 @findex roundl
7717 @findex scalb
7718 @findex scalbf
7719 @findex scalbl
7720 @findex scalbln
7721 @findex scalblnf
7722 @findex scalblnf
7723 @findex scalbn
7724 @findex scalbnf
7725 @findex scanfnl
7726 @findex signbit
7727 @findex signbitf
7728 @findex signbitl
7729 @findex signbitd32
7730 @findex signbitd64
7731 @findex signbitd128
7732 @findex significand
7733 @findex significandf
7734 @findex significandl
7735 @findex sin
7736 @findex sincos
7737 @findex sincosf
7738 @findex sincosl
7739 @findex sinf
7740 @findex sinh
7741 @findex sinhf
7742 @findex sinhl
7743 @findex sinl
7744 @findex snprintf
7745 @findex sprintf
7746 @findex sqrt
7747 @findex sqrtf
7748 @findex sqrtl
7749 @findex sscanf
7750 @findex stpcpy
7751 @findex stpncpy
7752 @findex strcasecmp
7753 @findex strcat
7754 @findex strchr
7755 @findex strcmp
7756 @findex strcpy
7757 @findex strcspn
7758 @findex strdup
7759 @findex strfmon
7760 @findex strftime
7761 @findex strlen
7762 @findex strncasecmp
7763 @findex strncat
7764 @findex strncmp
7765 @findex strncpy
7766 @findex strndup
7767 @findex strpbrk
7768 @findex strrchr
7769 @findex strspn
7770 @findex strstr
7771 @findex tan
7772 @findex tanf
7773 @findex tanh
7774 @findex tanhf
7775 @findex tanhl
7776 @findex tanl
7777 @findex tgamma
7778 @findex tgammaf
7779 @findex tgammal
7780 @findex toascii
7781 @findex tolower
7782 @findex toupper
7783 @findex towlower
7784 @findex towupper
7785 @findex trunc
7786 @findex truncf
7787 @findex truncl
7788 @findex vfprintf
7789 @findex vfscanf
7790 @findex vprintf
7791 @findex vscanf
7792 @findex vsnprintf
7793 @findex vsprintf
7794 @findex vsscanf
7795 @findex y0
7796 @findex y0f
7797 @findex y0l
7798 @findex y1
7799 @findex y1f
7800 @findex y1l
7801 @findex yn
7802 @findex ynf
7803 @findex ynl
7804
7805 GCC provides a large number of built-in functions other than the ones
7806 mentioned above.  Some of these are for internal use in the processing
7807 of exceptions or variable-length argument lists and will not be
7808 documented here because they may change from time to time; we do not
7809 recommend general use of these functions.
7810
7811 The remaining functions are provided for optimization purposes.
7812
7813 @opindex fno-builtin
7814 GCC includes built-in versions of many of the functions in the standard
7815 C library.  The versions prefixed with @code{__builtin_} will always be
7816 treated as having the same meaning as the C library function even if you
7817 specify the @option{-fno-builtin} option.  (@pxref{C Dialect Options})
7818 Many of these functions are only optimized in certain cases; if they are
7819 not optimized in a particular case, a call to the library function will
7820 be emitted.
7821
7822 @opindex ansi
7823 @opindex std
7824 Outside strict ISO C mode (@option{-ansi}, @option{-std=c90},
7825 @option{-std=c99} or @option{-std=c11}), the functions
7826 @code{_exit}, @code{alloca}, @code{bcmp}, @code{bzero},
7827 @code{dcgettext}, @code{dgettext}, @code{dremf}, @code{dreml},
7828 @code{drem}, @code{exp10f}, @code{exp10l}, @code{exp10}, @code{ffsll},
7829 @code{ffsl}, @code{ffs}, @code{fprintf_unlocked},
7830 @code{fputs_unlocked}, @code{gammaf}, @code{gammal}, @code{gamma},
7831 @code{gammaf_r}, @code{gammal_r}, @code{gamma_r}, @code{gettext},
7832 @code{index}, @code{isascii}, @code{j0f}, @code{j0l}, @code{j0},
7833 @code{j1f}, @code{j1l}, @code{j1}, @code{jnf}, @code{jnl}, @code{jn},
7834 @code{lgammaf_r}, @code{lgammal_r}, @code{lgamma_r}, @code{mempcpy},
7835 @code{pow10f}, @code{pow10l}, @code{pow10}, @code{printf_unlocked},
7836 @code{rindex}, @code{scalbf}, @code{scalbl}, @code{scalb},
7837 @code{signbit}, @code{signbitf}, @code{signbitl}, @code{signbitd32},
7838 @code{signbitd64}, @code{signbitd128}, @code{significandf},
7839 @code{significandl}, @code{significand}, @code{sincosf},
7840 @code{sincosl}, @code{sincos}, @code{stpcpy}, @code{stpncpy},
7841 @code{strcasecmp}, @code{strdup}, @code{strfmon}, @code{strncasecmp},
7842 @code{strndup}, @code{toascii}, @code{y0f}, @code{y0l}, @code{y0},
7843 @code{y1f}, @code{y1l}, @code{y1}, @code{ynf}, @code{ynl} and
7844 @code{yn}
7845 may be handled as built-in functions.
7846 All these functions have corresponding versions
7847 prefixed with @code{__builtin_}, which may be used even in strict C90
7848 mode.
7849
7850 The ISO C99 functions
7851 @code{_Exit}, @code{acoshf}, @code{acoshl}, @code{acosh}, @code{asinhf},
7852 @code{asinhl}, @code{asinh}, @code{atanhf}, @code{atanhl}, @code{atanh},
7853 @code{cabsf}, @code{cabsl}, @code{cabs}, @code{cacosf}, @code{cacoshf},
7854 @code{cacoshl}, @code{cacosh}, @code{cacosl}, @code{cacos},
7855 @code{cargf}, @code{cargl}, @code{carg}, @code{casinf}, @code{casinhf},
7856 @code{casinhl}, @code{casinh}, @code{casinl}, @code{casin},
7857 @code{catanf}, @code{catanhf}, @code{catanhl}, @code{catanh},
7858 @code{catanl}, @code{catan}, @code{cbrtf}, @code{cbrtl}, @code{cbrt},
7859 @code{ccosf}, @code{ccoshf}, @code{ccoshl}, @code{ccosh}, @code{ccosl},
7860 @code{ccos}, @code{cexpf}, @code{cexpl}, @code{cexp}, @code{cimagf},
7861 @code{cimagl}, @code{cimag}, @code{clogf}, @code{clogl}, @code{clog},
7862 @code{conjf}, @code{conjl}, @code{conj}, @code{copysignf}, @code{copysignl},
7863 @code{copysign}, @code{cpowf}, @code{cpowl}, @code{cpow}, @code{cprojf},
7864 @code{cprojl}, @code{cproj}, @code{crealf}, @code{creall}, @code{creal},
7865 @code{csinf}, @code{csinhf}, @code{csinhl}, @code{csinh}, @code{csinl},
7866 @code{csin}, @code{csqrtf}, @code{csqrtl}, @code{csqrt}, @code{ctanf},
7867 @code{ctanhf}, @code{ctanhl}, @code{ctanh}, @code{ctanl}, @code{ctan},
7868 @code{erfcf}, @code{erfcl}, @code{erfc}, @code{erff}, @code{erfl},
7869 @code{erf}, @code{exp2f}, @code{exp2l}, @code{exp2}, @code{expm1f},
7870 @code{expm1l}, @code{expm1}, @code{fdimf}, @code{fdiml}, @code{fdim},
7871 @code{fmaf}, @code{fmal}, @code{fmaxf}, @code{fmaxl}, @code{fmax},
7872 @code{fma}, @code{fminf}, @code{fminl}, @code{fmin}, @code{hypotf},
7873 @code{hypotl}, @code{hypot}, @code{ilogbf}, @code{ilogbl}, @code{ilogb},
7874 @code{imaxabs}, @code{isblank}, @code{iswblank}, @code{lgammaf},
7875 @code{lgammal}, @code{lgamma}, @code{llabs}, @code{llrintf}, @code{llrintl},
7876 @code{llrint}, @code{llroundf}, @code{llroundl}, @code{llround},
7877 @code{log1pf}, @code{log1pl}, @code{log1p}, @code{log2f}, @code{log2l},
7878 @code{log2}, @code{logbf}, @code{logbl}, @code{logb}, @code{lrintf},
7879 @code{lrintl}, @code{lrint}, @code{lroundf}, @code{lroundl},
7880 @code{lround}, @code{nearbyintf}, @code{nearbyintl}, @code{nearbyint},
7881 @code{nextafterf}, @code{nextafterl}, @code{nextafter},
7882 @code{nexttowardf}, @code{nexttowardl}, @code{nexttoward},
7883 @code{remainderf}, @code{remainderl}, @code{remainder}, @code{remquof},
7884 @code{remquol}, @code{remquo}, @code{rintf}, @code{rintl}, @code{rint},
7885 @code{roundf}, @code{roundl}, @code{round}, @code{scalblnf},
7886 @code{scalblnl}, @code{scalbln}, @code{scalbnf}, @code{scalbnl},
7887 @code{scalbn}, @code{snprintf}, @code{tgammaf}, @code{tgammal},
7888 @code{tgamma}, @code{truncf}, @code{truncl}, @code{trunc},
7889 @code{vfscanf}, @code{vscanf}, @code{vsnprintf} and @code{vsscanf}
7890 are handled as built-in functions
7891 except in strict ISO C90 mode (@option{-ansi} or @option{-std=c90}).
7892
7893 There are also built-in versions of the ISO C99 functions
7894 @code{acosf}, @code{acosl}, @code{asinf}, @code{asinl}, @code{atan2f},
7895 @code{atan2l}, @code{atanf}, @code{atanl}, @code{ceilf}, @code{ceill},
7896 @code{cosf}, @code{coshf}, @code{coshl}, @code{cosl}, @code{expf},
7897 @code{expl}, @code{fabsf}, @code{fabsl}, @code{floorf}, @code{floorl},
7898 @code{fmodf}, @code{fmodl}, @code{frexpf}, @code{frexpl}, @code{ldexpf},
7899 @code{ldexpl}, @code{log10f}, @code{log10l}, @code{logf}, @code{logl},
7900 @code{modfl}, @code{modf}, @code{powf}, @code{powl}, @code{sinf},
7901 @code{sinhf}, @code{sinhl}, @code{sinl}, @code{sqrtf}, @code{sqrtl},
7902 @code{tanf}, @code{tanhf}, @code{tanhl} and @code{tanl}
7903 that are recognized in any mode since ISO C90 reserves these names for
7904 the purpose to which ISO C99 puts them.  All these functions have
7905 corresponding versions prefixed with @code{__builtin_}.
7906
7907 The ISO C94 functions
7908 @code{iswalnum}, @code{iswalpha}, @code{iswcntrl}, @code{iswdigit},
7909 @code{iswgraph}, @code{iswlower}, @code{iswprint}, @code{iswpunct},
7910 @code{iswspace}, @code{iswupper}, @code{iswxdigit}, @code{towlower} and
7911 @code{towupper}
7912 are handled as built-in functions
7913 except in strict ISO C90 mode (@option{-ansi} or @option{-std=c90}).
7914
7915 The ISO C90 functions
7916 @code{abort}, @code{abs}, @code{acos}, @code{asin}, @code{atan2},
7917 @code{atan}, @code{calloc}, @code{ceil}, @code{cosh}, @code{cos},
7918 @code{exit}, @code{exp}, @code{fabs}, @code{floor}, @code{fmod},
7919 @code{fprintf}, @code{fputs}, @code{frexp}, @code{fscanf},
7920 @code{isalnum}, @code{isalpha}, @code{iscntrl}, @code{isdigit},
7921 @code{isgraph}, @code{islower}, @code{isprint}, @code{ispunct},
7922 @code{isspace}, @code{isupper}, @code{isxdigit}, @code{tolower},
7923 @code{toupper}, @code{labs}, @code{ldexp}, @code{log10}, @code{log},
7924 @code{malloc}, @code{memchr}, @code{memcmp}, @code{memcpy},
7925 @code{memset}, @code{modf}, @code{pow}, @code{printf}, @code{putchar},
7926 @code{puts}, @code{scanf}, @code{sinh}, @code{sin}, @code{snprintf},
7927 @code{sprintf}, @code{sqrt}, @code{sscanf}, @code{strcat},
7928 @code{strchr}, @code{strcmp}, @code{strcpy}, @code{strcspn},
7929 @code{strlen}, @code{strncat}, @code{strncmp}, @code{strncpy},
7930 @code{strpbrk}, @code{strrchr}, @code{strspn}, @code{strstr},
7931 @code{tanh}, @code{tan}, @code{vfprintf}, @code{vprintf} and @code{vsprintf}
7932 are all recognized as built-in functions unless
7933 @option{-fno-builtin} is specified (or @option{-fno-builtin-@var{function}}
7934 is specified for an individual function).  All of these functions have
7935 corresponding versions prefixed with @code{__builtin_}.
7936
7937 GCC provides built-in versions of the ISO C99 floating point comparison
7938 macros that avoid raising exceptions for unordered operands.  They have
7939 the same names as the standard macros ( @code{isgreater},
7940 @code{isgreaterequal}, @code{isless}, @code{islessequal},
7941 @code{islessgreater}, and @code{isunordered}) , with @code{__builtin_}
7942 prefixed.  We intend for a library implementor to be able to simply
7943 @code{#define} each standard macro to its built-in equivalent.
7944 In the same fashion, GCC provides @code{fpclassify}, @code{isfinite},
7945 @code{isinf_sign} and @code{isnormal} built-ins used with
7946 @code{__builtin_} prefixed.  The @code{isinf} and @code{isnan}
7947 builtins appear both with and without the @code{__builtin_} prefix.
7948
7949 @deftypefn {Built-in Function} int __builtin_types_compatible_p (@var{type1}, @var{type2})
7950
7951 You can use the built-in function @code{__builtin_types_compatible_p} to
7952 determine whether two types are the same.
7953
7954 This built-in function returns 1 if the unqualified versions of the
7955 types @var{type1} and @var{type2} (which are types, not expressions) are
7956 compatible, 0 otherwise.  The result of this built-in function can be
7957 used in integer constant expressions.
7958
7959 This built-in function ignores top level qualifiers (e.g., @code{const},
7960 @code{volatile}).  For example, @code{int} is equivalent to @code{const
7961 int}.
7962
7963 The type @code{int[]} and @code{int[5]} are compatible.  On the other
7964 hand, @code{int} and @code{char *} are not compatible, even if the size
7965 of their types, on the particular architecture are the same.  Also, the
7966 amount of pointer indirection is taken into account when determining
7967 similarity.  Consequently, @code{short *} is not similar to
7968 @code{short **}.  Furthermore, two types that are typedefed are
7969 considered compatible if their underlying types are compatible.
7970
7971 An @code{enum} type is not considered to be compatible with another
7972 @code{enum} type even if both are compatible with the same integer
7973 type; this is what the C standard specifies.
7974 For example, @code{enum @{foo, bar@}} is not similar to
7975 @code{enum @{hot, dog@}}.
7976
7977 You would typically use this function in code whose execution varies
7978 depending on the arguments' types.  For example:
7979
7980 @smallexample
7981 #define foo(x)                                                  \
7982   (@{                                                           \
7983     typeof (x) tmp = (x);                                       \
7984     if (__builtin_types_compatible_p (typeof (x), long double)) \
7985       tmp = foo_long_double (tmp);                              \
7986     else if (__builtin_types_compatible_p (typeof (x), double)) \
7987       tmp = foo_double (tmp);                                   \
7988     else if (__builtin_types_compatible_p (typeof (x), float))  \
7989       tmp = foo_float (tmp);                                    \
7990     else                                                        \
7991       abort ();                                                 \
7992     tmp;                                                        \
7993   @})
7994 @end smallexample
7995
7996 @emph{Note:} This construct is only available for C@.
7997
7998 @end deftypefn
7999
8000 @deftypefn {Built-in Function} @var{type} __builtin_choose_expr (@var{const_exp}, @var{exp1}, @var{exp2})
8001
8002 You can use the built-in function @code{__builtin_choose_expr} to
8003 evaluate code depending on the value of a constant expression.  This
8004 built-in function returns @var{exp1} if @var{const_exp}, which is an
8005 integer constant expression, is nonzero.  Otherwise it returns @var{exp2}.
8006
8007 This built-in function is analogous to the @samp{? :} operator in C,
8008 except that the expression returned has its type unaltered by promotion
8009 rules.  Also, the built-in function does not evaluate the expression
8010 that was not chosen.  For example, if @var{const_exp} evaluates to true,
8011 @var{exp2} is not evaluated even if it has side-effects.
8012
8013 This built-in function can return an lvalue if the chosen argument is an
8014 lvalue.
8015
8016 If @var{exp1} is returned, the return type is the same as @var{exp1}'s
8017 type.  Similarly, if @var{exp2} is returned, its return type is the same
8018 as @var{exp2}.
8019
8020 Example:
8021
8022 @smallexample
8023 #define foo(x)                                                    \
8024   __builtin_choose_expr (                                         \
8025     __builtin_types_compatible_p (typeof (x), double),            \
8026     foo_double (x),                                               \
8027     __builtin_choose_expr (                                       \
8028       __builtin_types_compatible_p (typeof (x), float),           \
8029       foo_float (x),                                              \
8030       /* @r{The void expression results in a compile-time error}  \
8031          @r{when assigning the result to something.}  */          \
8032       (void)0))
8033 @end smallexample
8034
8035 @emph{Note:} This construct is only available for C@.  Furthermore, the
8036 unused expression (@var{exp1} or @var{exp2} depending on the value of
8037 @var{const_exp}) may still generate syntax errors.  This may change in
8038 future revisions.
8039
8040 @end deftypefn
8041
8042 @deftypefn {Built-in Function} @var{type} __builtin_complex (@var{real}, @var{imag})
8043
8044 The built-in function @code{__builtin_complex} is provided for use in
8045 implementing the ISO C11 macros @code{CMPLXF}, @code{CMPLX} and
8046 @code{CMPLXL}.  @var{real} and @var{imag} must have the same type, a
8047 real binary floating-point type, and the result has the corresponding
8048 complex type with real and imaginary parts @var{real} and @var{imag}.
8049 Unlike @samp{@var{real} + I * @var{imag}}, this works even when
8050 infinities, NaNs and negative zeros are involved.
8051
8052 @end deftypefn
8053
8054 @deftypefn {Built-in Function} int __builtin_constant_p (@var{exp})
8055 You can use the built-in function @code{__builtin_constant_p} to
8056 determine if a value is known to be constant at compile-time and hence
8057 that GCC can perform constant-folding on expressions involving that
8058 value.  The argument of the function is the value to test.  The function
8059 returns the integer 1 if the argument is known to be a compile-time
8060 constant and 0 if it is not known to be a compile-time constant.  A
8061 return of 0 does not indicate that the value is @emph{not} a constant,
8062 but merely that GCC cannot prove it is a constant with the specified
8063 value of the @option{-O} option.
8064
8065 You would typically use this function in an embedded application where
8066 memory was a critical resource.  If you have some complex calculation,
8067 you may want it to be folded if it involves constants, but need to call
8068 a function if it does not.  For example:
8069
8070 @smallexample
8071 #define Scale_Value(X)      \
8072   (__builtin_constant_p (X) \
8073   ? ((X) * SCALE + OFFSET) : Scale (X))
8074 @end smallexample
8075
8076 You may use this built-in function in either a macro or an inline
8077 function.  However, if you use it in an inlined function and pass an
8078 argument of the function as the argument to the built-in, GCC will
8079 never return 1 when you call the inline function with a string constant
8080 or compound literal (@pxref{Compound Literals}) and will not return 1
8081 when you pass a constant numeric value to the inline function unless you
8082 specify the @option{-O} option.
8083
8084 You may also use @code{__builtin_constant_p} in initializers for static
8085 data.  For instance, you can write
8086
8087 @smallexample
8088 static const int table[] = @{
8089    __builtin_constant_p (EXPRESSION) ? (EXPRESSION) : -1,
8090    /* @r{@dots{}} */
8091 @};
8092 @end smallexample
8093
8094 @noindent
8095 This is an acceptable initializer even if @var{EXPRESSION} is not a
8096 constant expression, including the case where
8097 @code{__builtin_constant_p} returns 1 because @var{EXPRESSION} can be
8098 folded to a constant but @var{EXPRESSION} contains operands that would
8099 not otherwise be permitted in a static initializer (for example,
8100 @code{0 && foo ()}).  GCC must be more conservative about evaluating the
8101 built-in in this case, because it has no opportunity to perform
8102 optimization.
8103
8104 Previous versions of GCC did not accept this built-in in data
8105 initializers.  The earliest version where it is completely safe is
8106 3.0.1.
8107 @end deftypefn
8108
8109 @deftypefn {Built-in Function} long __builtin_expect (long @var{exp}, long @var{c})
8110 @opindex fprofile-arcs
8111 You may use @code{__builtin_expect} to provide the compiler with
8112 branch prediction information.  In general, you should prefer to
8113 use actual profile feedback for this (@option{-fprofile-arcs}), as
8114 programmers are notoriously bad at predicting how their programs
8115 actually perform.  However, there are applications in which this
8116 data is hard to collect.
8117
8118 The return value is the value of @var{exp}, which should be an integral
8119 expression.  The semantics of the built-in are that it is expected that
8120 @var{exp} == @var{c}.  For example:
8121
8122 @smallexample
8123 if (__builtin_expect (x, 0))
8124   foo ();
8125 @end smallexample
8126
8127 @noindent
8128 would indicate that we do not expect to call @code{foo}, since
8129 we expect @code{x} to be zero.  Since you are limited to integral
8130 expressions for @var{exp}, you should use constructions such as
8131
8132 @smallexample
8133 if (__builtin_expect (ptr != NULL, 1))
8134   foo (*ptr);
8135 @end smallexample
8136
8137 @noindent
8138 when testing pointer or floating-point values.
8139 @end deftypefn
8140
8141 @deftypefn {Built-in Function} void __builtin_trap (void)
8142 This function causes the program to exit abnormally.  GCC implements
8143 this function by using a target-dependent mechanism (such as
8144 intentionally executing an illegal instruction) or by calling
8145 @code{abort}.  The mechanism used may vary from release to release so
8146 you should not rely on any particular implementation.
8147 @end deftypefn
8148
8149 @deftypefn {Built-in Function} void __builtin_unreachable (void)
8150 If control flow reaches the point of the @code{__builtin_unreachable},
8151 the program is undefined.  It is useful in situations where the
8152 compiler cannot deduce the unreachability of the code.
8153
8154 One such case is immediately following an @code{asm} statement that
8155 will either never terminate, or one that transfers control elsewhere
8156 and never returns.  In this example, without the
8157 @code{__builtin_unreachable}, GCC would issue a warning that control
8158 reaches the end of a non-void function.  It would also generate code
8159 to return after the @code{asm}.
8160
8161 @smallexample
8162 int f (int c, int v)
8163 @{
8164   if (c)
8165     @{
8166       return v;
8167     @}
8168   else
8169     @{
8170       asm("jmp error_handler");
8171       __builtin_unreachable ();
8172     @}
8173 @}
8174 @end smallexample
8175
8176 Because the @code{asm} statement unconditionally transfers control out
8177 of the function, control will never reach the end of the function
8178 body.  The @code{__builtin_unreachable} is in fact unreachable and
8179 communicates this fact to the compiler.
8180
8181 Another use for @code{__builtin_unreachable} is following a call a
8182 function that never returns but that is not declared
8183 @code{__attribute__((noreturn))}, as in this example:
8184
8185 @smallexample
8186 void function_that_never_returns (void);
8187
8188 int g (int c)
8189 @{
8190   if (c)
8191     @{
8192       return 1;
8193     @}
8194   else
8195     @{
8196       function_that_never_returns ();
8197       __builtin_unreachable ();
8198     @}
8199 @}
8200 @end smallexample
8201
8202 @end deftypefn
8203
8204 @deftypefn {Built-in Function} void *__builtin_assume_aligned (const void *@var{exp}, size_t @var{align}, ...)
8205 This function returns its first argument, and allows the compiler
8206 to assume that the returned pointer is at least @var{align} bytes
8207 aligned.  This built-in can have either two or three arguments,
8208 if it has three, the third argument should have integer type, and
8209 if it is non-zero means misalignment offset.  For example:
8210
8211 @smallexample
8212 void *x = __builtin_assume_aligned (arg, 16);
8213 @end smallexample
8214
8215 means that the compiler can assume x, set to arg, is at least
8216 16 byte aligned, while:
8217
8218 @smallexample
8219 void *x = __builtin_assume_aligned (arg, 32, 8);
8220 @end smallexample
8221
8222 means that the compiler can assume for x, set to arg, that
8223 (char *) x - 8 is 32 byte aligned.
8224 @end deftypefn
8225
8226 @deftypefn {Built-in Function} void __builtin___clear_cache (char *@var{begin}, char *@var{end})
8227 This function is used to flush the processor's instruction cache for
8228 the region of memory between @var{begin} inclusive and @var{end}
8229 exclusive.  Some targets require that the instruction cache be
8230 flushed, after modifying memory containing code, in order to obtain
8231 deterministic behavior.
8232
8233 If the target does not require instruction cache flushes,
8234 @code{__builtin___clear_cache} has no effect.  Otherwise either
8235 instructions are emitted in-line to clear the instruction cache or a
8236 call to the @code{__clear_cache} function in libgcc is made.
8237 @end deftypefn
8238
8239 @deftypefn {Built-in Function} void __builtin_prefetch (const void *@var{addr}, ...)
8240 This function is used to minimize cache-miss latency by moving data into
8241 a cache before it is accessed.
8242 You can insert calls to @code{__builtin_prefetch} into code for which
8243 you know addresses of data in memory that is likely to be accessed soon.
8244 If the target supports them, data prefetch instructions will be generated.
8245 If the prefetch is done early enough before the access then the data will
8246 be in the cache by the time it is accessed.
8247
8248 The value of @var{addr} is the address of the memory to prefetch.
8249 There are two optional arguments, @var{rw} and @var{locality}.
8250 The value of @var{rw} is a compile-time constant one or zero; one
8251 means that the prefetch is preparing for a write to the memory address
8252 and zero, the default, means that the prefetch is preparing for a read.
8253 The value @var{locality} must be a compile-time constant integer between
8254 zero and three.  A value of zero means that the data has no temporal
8255 locality, so it need not be left in the cache after the access.  A value
8256 of three means that the data has a high degree of temporal locality and
8257 should be left in all levels of cache possible.  Values of one and two
8258 mean, respectively, a low or moderate degree of temporal locality.  The
8259 default is three.
8260
8261 @smallexample
8262 for (i = 0; i < n; i++)
8263   @{
8264     a[i] = a[i] + b[i];
8265     __builtin_prefetch (&a[i+j], 1, 1);
8266     __builtin_prefetch (&b[i+j], 0, 1);
8267     /* @r{@dots{}} */
8268   @}
8269 @end smallexample
8270
8271 Data prefetch does not generate faults if @var{addr} is invalid, but
8272 the address expression itself must be valid.  For example, a prefetch
8273 of @code{p->next} will not fault if @code{p->next} is not a valid
8274 address, but evaluation will fault if @code{p} is not a valid address.
8275
8276 If the target does not support data prefetch, the address expression
8277 is evaluated if it includes side effects but no other code is generated
8278 and GCC does not issue a warning.
8279 @end deftypefn
8280
8281 @deftypefn {Built-in Function} double __builtin_huge_val (void)
8282 Returns a positive infinity, if supported by the floating-point format,
8283 else @code{DBL_MAX}.  This function is suitable for implementing the
8284 ISO C macro @code{HUGE_VAL}.
8285 @end deftypefn
8286
8287 @deftypefn {Built-in Function} float __builtin_huge_valf (void)
8288 Similar to @code{__builtin_huge_val}, except the return type is @code{float}.
8289 @end deftypefn
8290
8291 @deftypefn {Built-in Function} {long double} __builtin_huge_vall (void)
8292 Similar to @code{__builtin_huge_val}, except the return
8293 type is @code{long double}.
8294 @end deftypefn
8295
8296 @deftypefn {Built-in Function} int __builtin_fpclassify (int, int, int, int, int, ...)
8297 This built-in implements the C99 fpclassify functionality.  The first
8298 five int arguments should be the target library's notion of the
8299 possible FP classes and are used for return values.  They must be
8300 constant values and they must appear in this order: @code{FP_NAN},
8301 @code{FP_INFINITE}, @code{FP_NORMAL}, @code{FP_SUBNORMAL} and
8302 @code{FP_ZERO}.  The ellipsis is for exactly one floating point value
8303 to classify.  GCC treats the last argument as type-generic, which
8304 means it does not do default promotion from float to double.
8305 @end deftypefn
8306
8307 @deftypefn {Built-in Function} double __builtin_inf (void)
8308 Similar to @code{__builtin_huge_val}, except a warning is generated
8309 if the target floating-point format does not support infinities.
8310 @end deftypefn
8311
8312 @deftypefn {Built-in Function} _Decimal32 __builtin_infd32 (void)
8313 Similar to @code{__builtin_inf}, except the return type is @code{_Decimal32}.
8314 @end deftypefn
8315
8316 @deftypefn {Built-in Function} _Decimal64 __builtin_infd64 (void)
8317 Similar to @code{__builtin_inf}, except the return type is @code{_Decimal64}.
8318 @end deftypefn
8319
8320 @deftypefn {Built-in Function} _Decimal128 __builtin_infd128 (void)
8321 Similar to @code{__builtin_inf}, except the return type is @code{_Decimal128}.
8322 @end deftypefn
8323
8324 @deftypefn {Built-in Function} float __builtin_inff (void)
8325 Similar to @code{__builtin_inf}, except the return type is @code{float}.
8326 This function is suitable for implementing the ISO C99 macro @code{INFINITY}.
8327 @end deftypefn
8328
8329 @deftypefn {Built-in Function} {long double} __builtin_infl (void)
8330 Similar to @code{__builtin_inf}, except the return
8331 type is @code{long double}.
8332 @end deftypefn
8333
8334 @deftypefn {Built-in Function} int __builtin_isinf_sign (...)
8335 Similar to @code{isinf}, except the return value will be negative for
8336 an argument of @code{-Inf}.  Note while the parameter list is an
8337 ellipsis, this function only accepts exactly one floating point
8338 argument.  GCC treats this parameter as type-generic, which means it
8339 does not do default promotion from float to double.
8340 @end deftypefn
8341
8342 @deftypefn {Built-in Function} double __builtin_nan (const char *str)
8343 This is an implementation of the ISO C99 function @code{nan}.
8344
8345 Since ISO C99 defines this function in terms of @code{strtod}, which we
8346 do not implement, a description of the parsing is in order.  The string
8347 is parsed as by @code{strtol}; that is, the base is recognized by
8348 leading @samp{0} or @samp{0x} prefixes.  The number parsed is placed
8349 in the significand such that the least significant bit of the number
8350 is at the least significant bit of the significand.  The number is
8351 truncated to fit the significand field provided.  The significand is
8352 forced to be a quiet NaN@.
8353
8354 This function, if given a string literal all of which would have been
8355 consumed by strtol, is evaluated early enough that it is considered a
8356 compile-time constant.
8357 @end deftypefn
8358
8359 @deftypefn {Built-in Function} _Decimal32 __builtin_nand32 (const char *str)
8360 Similar to @code{__builtin_nan}, except the return type is @code{_Decimal32}.
8361 @end deftypefn
8362
8363 @deftypefn {Built-in Function} _Decimal64 __builtin_nand64 (const char *str)
8364 Similar to @code{__builtin_nan}, except the return type is @code{_Decimal64}.
8365 @end deftypefn
8366
8367 @deftypefn {Built-in Function} _Decimal128 __builtin_nand128 (const char *str)
8368 Similar to @code{__builtin_nan}, except the return type is @code{_Decimal128}.
8369 @end deftypefn
8370
8371 @deftypefn {Built-in Function} float __builtin_nanf (const char *str)
8372 Similar to @code{__builtin_nan}, except the return type is @code{float}.
8373 @end deftypefn
8374
8375 @deftypefn {Built-in Function} {long double} __builtin_nanl (const char *str)
8376 Similar to @code{__builtin_nan}, except the return type is @code{long double}.
8377 @end deftypefn
8378
8379 @deftypefn {Built-in Function} double __builtin_nans (const char *str)
8380 Similar to @code{__builtin_nan}, except the significand is forced
8381 to be a signaling NaN@.  The @code{nans} function is proposed by
8382 @uref{http://www.open-std.org/jtc1/sc22/wg14/www/docs/n965.htm,,WG14 N965}.
8383 @end deftypefn
8384
8385 @deftypefn {Built-in Function} float __builtin_nansf (const char *str)
8386 Similar to @code{__builtin_nans}, except the return type is @code{float}.
8387 @end deftypefn
8388
8389 @deftypefn {Built-in Function} {long double} __builtin_nansl (const char *str)
8390 Similar to @code{__builtin_nans}, except the return type is @code{long double}.
8391 @end deftypefn
8392
8393 @deftypefn {Built-in Function} int __builtin_ffs (unsigned int x)
8394 Returns one plus the index of the least significant 1-bit of @var{x}, or
8395 if @var{x} is zero, returns zero.
8396 @end deftypefn
8397
8398 @deftypefn {Built-in Function} int __builtin_clz (unsigned int x)
8399 Returns the number of leading 0-bits in @var{x}, starting at the most
8400 significant bit position.  If @var{x} is 0, the result is undefined.
8401 @end deftypefn
8402
8403 @deftypefn {Built-in Function} int __builtin_ctz (unsigned int x)
8404 Returns the number of trailing 0-bits in @var{x}, starting at the least
8405 significant bit position.  If @var{x} is 0, the result is undefined.
8406 @end deftypefn
8407
8408 @deftypefn {Built-in Function} int __builtin_clrsb (int x)
8409 Returns the number of leading redundant sign bits in @var{x}, i.e. the
8410 number of bits following the most significant bit which are identical
8411 to it.  There are no special cases for 0 or other values. 
8412 @end deftypefn
8413
8414 @deftypefn {Built-in Function} int __builtin_popcount (unsigned int x)
8415 Returns the number of 1-bits in @var{x}.
8416 @end deftypefn
8417
8418 @deftypefn {Built-in Function} int __builtin_parity (unsigned int x)
8419 Returns the parity of @var{x}, i.e.@: the number of 1-bits in @var{x}
8420 modulo 2.
8421 @end deftypefn
8422
8423 @deftypefn {Built-in Function} int __builtin_ffsl (unsigned long)
8424 Similar to @code{__builtin_ffs}, except the argument type is
8425 @code{unsigned long}.
8426 @end deftypefn
8427
8428 @deftypefn {Built-in Function} int __builtin_clzl (unsigned long)
8429 Similar to @code{__builtin_clz}, except the argument type is
8430 @code{unsigned long}.
8431 @end deftypefn
8432
8433 @deftypefn {Built-in Function} int __builtin_ctzl (unsigned long)
8434 Similar to @code{__builtin_ctz}, except the argument type is
8435 @code{unsigned long}.
8436 @end deftypefn
8437
8438 @deftypefn {Built-in Function} int __builtin_clrsbl (long)
8439 Similar to @code{__builtin_clrsb}, except the argument type is
8440 @code{long}.
8441 @end deftypefn
8442
8443 @deftypefn {Built-in Function} int __builtin_popcountl (unsigned long)
8444 Similar to @code{__builtin_popcount}, except the argument type is
8445 @code{unsigned long}.
8446 @end deftypefn
8447
8448 @deftypefn {Built-in Function} int __builtin_parityl (unsigned long)
8449 Similar to @code{__builtin_parity}, except the argument type is
8450 @code{unsigned long}.
8451 @end deftypefn
8452
8453 @deftypefn {Built-in Function} int __builtin_ffsll (unsigned long long)
8454 Similar to @code{__builtin_ffs}, except the argument type is
8455 @code{unsigned long long}.
8456 @end deftypefn
8457
8458 @deftypefn {Built-in Function} int __builtin_clzll (unsigned long long)
8459 Similar to @code{__builtin_clz}, except the argument type is
8460 @code{unsigned long long}.
8461 @end deftypefn
8462
8463 @deftypefn {Built-in Function} int __builtin_ctzll (unsigned long long)
8464 Similar to @code{__builtin_ctz}, except the argument type is
8465 @code{unsigned long long}.
8466 @end deftypefn
8467
8468 @deftypefn {Built-in Function} int __builtin_clrsbll (long long)
8469 Similar to @code{__builtin_clrsb}, except the argument type is
8470 @code{long long}.
8471 @end deftypefn
8472
8473 @deftypefn {Built-in Function} int __builtin_popcountll (unsigned long long)
8474 Similar to @code{__builtin_popcount}, except the argument type is
8475 @code{unsigned long long}.
8476 @end deftypefn
8477
8478 @deftypefn {Built-in Function} int __builtin_parityll (unsigned long long)
8479 Similar to @code{__builtin_parity}, except the argument type is
8480 @code{unsigned long long}.
8481 @end deftypefn
8482
8483 @deftypefn {Built-in Function} double __builtin_powi (double, int)
8484 Returns the first argument raised to the power of the second.  Unlike the
8485 @code{pow} function no guarantees about precision and rounding are made.
8486 @end deftypefn
8487
8488 @deftypefn {Built-in Function} float __builtin_powif (float, int)
8489 Similar to @code{__builtin_powi}, except the argument and return types
8490 are @code{float}.
8491 @end deftypefn
8492
8493 @deftypefn {Built-in Function} {long double} __builtin_powil (long double, int)
8494 Similar to @code{__builtin_powi}, except the argument and return types
8495 are @code{long double}.
8496 @end deftypefn
8497
8498 @deftypefn {Built-in Function} int32_t __builtin_bswap32 (int32_t x)
8499 Returns @var{x} with the order of the bytes reversed; for example,
8500 @code{0xaabbccdd} becomes @code{0xddccbbaa}.  Byte here always means
8501 exactly 8 bits.
8502 @end deftypefn
8503
8504 @deftypefn {Built-in Function} int64_t __builtin_bswap64 (int64_t x)
8505 Similar to @code{__builtin_bswap32}, except the argument and return types
8506 are 64-bit.
8507 @end deftypefn
8508
8509 @node Target Builtins
8510 @section Built-in Functions Specific to Particular Target Machines
8511
8512 On some target machines, GCC supports many built-in functions specific
8513 to those machines.  Generally these generate calls to specific machine
8514 instructions, but allow the compiler to schedule those calls.
8515
8516 @menu
8517 * Alpha Built-in Functions::
8518 * ARM iWMMXt Built-in Functions::
8519 * ARM NEON Intrinsics::
8520 * AVR Built-in Functions::
8521 * Blackfin Built-in Functions::
8522 * FR-V Built-in Functions::
8523 * X86 Built-in Functions::
8524 * MIPS DSP Built-in Functions::
8525 * MIPS Paired-Single Support::
8526 * MIPS Loongson Built-in Functions::
8527 * Other MIPS Built-in Functions::
8528 * picoChip Built-in Functions::
8529 * PowerPC AltiVec/VSX Built-in Functions::
8530 * RX Built-in Functions::
8531 * SPARC VIS Built-in Functions::
8532 * SPU Built-in Functions::
8533 * TI C6X Built-in Functions::
8534 * TILE-Gx Built-in Functions::
8535 * TILEPro Built-in Functions::
8536 @end menu
8537
8538 @node Alpha Built-in Functions
8539 @subsection Alpha Built-in Functions
8540
8541 These built-in functions are available for the Alpha family of
8542 processors, depending on the command-line switches used.
8543
8544 The following built-in functions are always available.  They
8545 all generate the machine instruction that is part of the name.
8546
8547 @smallexample
8548 long __builtin_alpha_implver (void)
8549 long __builtin_alpha_rpcc (void)
8550 long __builtin_alpha_amask (long)
8551 long __builtin_alpha_cmpbge (long, long)
8552 long __builtin_alpha_extbl (long, long)
8553 long __builtin_alpha_extwl (long, long)
8554 long __builtin_alpha_extll (long, long)
8555 long __builtin_alpha_extql (long, long)
8556 long __builtin_alpha_extwh (long, long)
8557 long __builtin_alpha_extlh (long, long)
8558 long __builtin_alpha_extqh (long, long)
8559 long __builtin_alpha_insbl (long, long)
8560 long __builtin_alpha_inswl (long, long)
8561 long __builtin_alpha_insll (long, long)
8562 long __builtin_alpha_insql (long, long)
8563 long __builtin_alpha_inswh (long, long)
8564 long __builtin_alpha_inslh (long, long)
8565 long __builtin_alpha_insqh (long, long)
8566 long __builtin_alpha_mskbl (long, long)
8567 long __builtin_alpha_mskwl (long, long)
8568 long __builtin_alpha_mskll (long, long)
8569 long __builtin_alpha_mskql (long, long)
8570 long __builtin_alpha_mskwh (long, long)
8571 long __builtin_alpha_msklh (long, long)
8572 long __builtin_alpha_mskqh (long, long)
8573 long __builtin_alpha_umulh (long, long)
8574 long __builtin_alpha_zap (long, long)
8575 long __builtin_alpha_zapnot (long, long)
8576 @end smallexample
8577
8578 The following built-in functions are always with @option{-mmax}
8579 or @option{-mcpu=@var{cpu}} where @var{cpu} is @code{pca56} or
8580 later.  They all generate the machine instruction that is part
8581 of the name.
8582
8583 @smallexample
8584 long __builtin_alpha_pklb (long)
8585 long __builtin_alpha_pkwb (long)
8586 long __builtin_alpha_unpkbl (long)
8587 long __builtin_alpha_unpkbw (long)
8588 long __builtin_alpha_minub8 (long, long)
8589 long __builtin_alpha_minsb8 (long, long)
8590 long __builtin_alpha_minuw4 (long, long)
8591 long __builtin_alpha_minsw4 (long, long)
8592 long __builtin_alpha_maxub8 (long, long)
8593 long __builtin_alpha_maxsb8 (long, long)
8594 long __builtin_alpha_maxuw4 (long, long)
8595 long __builtin_alpha_maxsw4 (long, long)
8596 long __builtin_alpha_perr (long, long)
8597 @end smallexample
8598
8599 The following built-in functions are always with @option{-mcix}
8600 or @option{-mcpu=@var{cpu}} where @var{cpu} is @code{ev67} or
8601 later.  They all generate the machine instruction that is part
8602 of the name.
8603
8604 @smallexample
8605 long __builtin_alpha_cttz (long)
8606 long __builtin_alpha_ctlz (long)
8607 long __builtin_alpha_ctpop (long)
8608 @end smallexample
8609
8610 The following builtins are available on systems that use the OSF/1
8611 PALcode.  Normally they invoke the @code{rduniq} and @code{wruniq}
8612 PAL calls, but when invoked with @option{-mtls-kernel}, they invoke
8613 @code{rdval} and @code{wrval}.
8614
8615 @smallexample
8616 void *__builtin_thread_pointer (void)
8617 void __builtin_set_thread_pointer (void *)
8618 @end smallexample
8619
8620 @node ARM iWMMXt Built-in Functions
8621 @subsection ARM iWMMXt Built-in Functions
8622
8623 These built-in functions are available for the ARM family of
8624 processors when the @option{-mcpu=iwmmxt} switch is used:
8625
8626 @smallexample
8627 typedef int v2si __attribute__ ((vector_size (8)));
8628 typedef short v4hi __attribute__ ((vector_size (8)));
8629 typedef char v8qi __attribute__ ((vector_size (8)));
8630
8631 int __builtin_arm_getwcx (int)
8632 void __builtin_arm_setwcx (int, int)
8633 int __builtin_arm_textrmsb (v8qi, int)
8634 int __builtin_arm_textrmsh (v4hi, int)
8635 int __builtin_arm_textrmsw (v2si, int)
8636 int __builtin_arm_textrmub (v8qi, int)
8637 int __builtin_arm_textrmuh (v4hi, int)
8638 int __builtin_arm_textrmuw (v2si, int)
8639 v8qi __builtin_arm_tinsrb (v8qi, int)
8640 v4hi __builtin_arm_tinsrh (v4hi, int)
8641 v2si __builtin_arm_tinsrw (v2si, int)
8642 long long __builtin_arm_tmia (long long, int, int)
8643 long long __builtin_arm_tmiabb (long long, int, int)
8644 long long __builtin_arm_tmiabt (long long, int, int)
8645 long long __builtin_arm_tmiaph (long long, int, int)
8646 long long __builtin_arm_tmiatb (long long, int, int)
8647 long long __builtin_arm_tmiatt (long long, int, int)
8648 int __builtin_arm_tmovmskb (v8qi)
8649 int __builtin_arm_tmovmskh (v4hi)
8650 int __builtin_arm_tmovmskw (v2si)
8651 long long __builtin_arm_waccb (v8qi)
8652 long long __builtin_arm_wacch (v4hi)
8653 long long __builtin_arm_waccw (v2si)
8654 v8qi __builtin_arm_waddb (v8qi, v8qi)
8655 v8qi __builtin_arm_waddbss (v8qi, v8qi)
8656 v8qi __builtin_arm_waddbus (v8qi, v8qi)
8657 v4hi __builtin_arm_waddh (v4hi, v4hi)
8658 v4hi __builtin_arm_waddhss (v4hi, v4hi)
8659 v4hi __builtin_arm_waddhus (v4hi, v4hi)
8660 v2si __builtin_arm_waddw (v2si, v2si)
8661 v2si __builtin_arm_waddwss (v2si, v2si)
8662 v2si __builtin_arm_waddwus (v2si, v2si)
8663 v8qi __builtin_arm_walign (v8qi, v8qi, int)
8664 long long __builtin_arm_wand(long long, long long)
8665 long long __builtin_arm_wandn (long long, long long)
8666 v8qi __builtin_arm_wavg2b (v8qi, v8qi)
8667 v8qi __builtin_arm_wavg2br (v8qi, v8qi)
8668 v4hi __builtin_arm_wavg2h (v4hi, v4hi)
8669 v4hi __builtin_arm_wavg2hr (v4hi, v4hi)
8670 v8qi __builtin_arm_wcmpeqb (v8qi, v8qi)
8671 v4hi __builtin_arm_wcmpeqh (v4hi, v4hi)
8672 v2si __builtin_arm_wcmpeqw (v2si, v2si)
8673 v8qi __builtin_arm_wcmpgtsb (v8qi, v8qi)
8674 v4hi __builtin_arm_wcmpgtsh (v4hi, v4hi)
8675 v2si __builtin_arm_wcmpgtsw (v2si, v2si)
8676 v8qi __builtin_arm_wcmpgtub (v8qi, v8qi)
8677 v4hi __builtin_arm_wcmpgtuh (v4hi, v4hi)
8678 v2si __builtin_arm_wcmpgtuw (v2si, v2si)
8679 long long __builtin_arm_wmacs (long long, v4hi, v4hi)
8680 long long __builtin_arm_wmacsz (v4hi, v4hi)
8681 long long __builtin_arm_wmacu (long long, v4hi, v4hi)
8682 long long __builtin_arm_wmacuz (v4hi, v4hi)
8683 v4hi __builtin_arm_wmadds (v4hi, v4hi)
8684 v4hi __builtin_arm_wmaddu (v4hi, v4hi)
8685 v8qi __builtin_arm_wmaxsb (v8qi, v8qi)
8686 v4hi __builtin_arm_wmaxsh (v4hi, v4hi)
8687 v2si __builtin_arm_wmaxsw (v2si, v2si)
8688 v8qi __builtin_arm_wmaxub (v8qi, v8qi)
8689 v4hi __builtin_arm_wmaxuh (v4hi, v4hi)
8690 v2si __builtin_arm_wmaxuw (v2si, v2si)
8691 v8qi __builtin_arm_wminsb (v8qi, v8qi)
8692 v4hi __builtin_arm_wminsh (v4hi, v4hi)
8693 v2si __builtin_arm_wminsw (v2si, v2si)
8694 v8qi __builtin_arm_wminub (v8qi, v8qi)
8695 v4hi __builtin_arm_wminuh (v4hi, v4hi)
8696 v2si __builtin_arm_wminuw (v2si, v2si)
8697 v4hi __builtin_arm_wmulsm (v4hi, v4hi)
8698 v4hi __builtin_arm_wmulul (v4hi, v4hi)
8699 v4hi __builtin_arm_wmulum (v4hi, v4hi)
8700 long long __builtin_arm_wor (long long, long long)
8701 v2si __builtin_arm_wpackdss (long long, long long)
8702 v2si __builtin_arm_wpackdus (long long, long long)
8703 v8qi __builtin_arm_wpackhss (v4hi, v4hi)
8704 v8qi __builtin_arm_wpackhus (v4hi, v4hi)
8705 v4hi __builtin_arm_wpackwss (v2si, v2si)
8706 v4hi __builtin_arm_wpackwus (v2si, v2si)
8707 long long __builtin_arm_wrord (long long, long long)
8708 long long __builtin_arm_wrordi (long long, int)
8709 v4hi __builtin_arm_wrorh (v4hi, long long)
8710 v4hi __builtin_arm_wrorhi (v4hi, int)
8711 v2si __builtin_arm_wrorw (v2si, long long)
8712 v2si __builtin_arm_wrorwi (v2si, int)
8713 v2si __builtin_arm_wsadb (v8qi, v8qi)
8714 v2si __builtin_arm_wsadbz (v8qi, v8qi)
8715 v2si __builtin_arm_wsadh (v4hi, v4hi)
8716 v2si __builtin_arm_wsadhz (v4hi, v4hi)
8717 v4hi __builtin_arm_wshufh (v4hi, int)
8718 long long __builtin_arm_wslld (long long, long long)
8719 long long __builtin_arm_wslldi (long long, int)
8720 v4hi __builtin_arm_wsllh (v4hi, long long)
8721 v4hi __builtin_arm_wsllhi (v4hi, int)
8722 v2si __builtin_arm_wsllw (v2si, long long)
8723 v2si __builtin_arm_wsllwi (v2si, int)
8724 long long __builtin_arm_wsrad (long long, long long)
8725 long long __builtin_arm_wsradi (long long, int)
8726 v4hi __builtin_arm_wsrah (v4hi, long long)
8727 v4hi __builtin_arm_wsrahi (v4hi, int)
8728 v2si __builtin_arm_wsraw (v2si, long long)
8729 v2si __builtin_arm_wsrawi (v2si, int)
8730 long long __builtin_arm_wsrld (long long, long long)
8731 long long __builtin_arm_wsrldi (long long, int)
8732 v4hi __builtin_arm_wsrlh (v4hi, long long)
8733 v4hi __builtin_arm_wsrlhi (v4hi, int)
8734 v2si __builtin_arm_wsrlw (v2si, long long)
8735 v2si __builtin_arm_wsrlwi (v2si, int)
8736 v8qi __builtin_arm_wsubb (v8qi, v8qi)
8737 v8qi __builtin_arm_wsubbss (v8qi, v8qi)
8738 v8qi __builtin_arm_wsubbus (v8qi, v8qi)
8739 v4hi __builtin_arm_wsubh (v4hi, v4hi)
8740 v4hi __builtin_arm_wsubhss (v4hi, v4hi)
8741 v4hi __builtin_arm_wsubhus (v4hi, v4hi)
8742 v2si __builtin_arm_wsubw (v2si, v2si)
8743 v2si __builtin_arm_wsubwss (v2si, v2si)
8744 v2si __builtin_arm_wsubwus (v2si, v2si)
8745 v4hi __builtin_arm_wunpckehsb (v8qi)
8746 v2si __builtin_arm_wunpckehsh (v4hi)
8747 long long __builtin_arm_wunpckehsw (v2si)
8748 v4hi __builtin_arm_wunpckehub (v8qi)
8749 v2si __builtin_arm_wunpckehuh (v4hi)
8750 long long __builtin_arm_wunpckehuw (v2si)
8751 v4hi __builtin_arm_wunpckelsb (v8qi)
8752 v2si __builtin_arm_wunpckelsh (v4hi)
8753 long long __builtin_arm_wunpckelsw (v2si)
8754 v4hi __builtin_arm_wunpckelub (v8qi)
8755 v2si __builtin_arm_wunpckeluh (v4hi)
8756 long long __builtin_arm_wunpckeluw (v2si)
8757 v8qi __builtin_arm_wunpckihb (v8qi, v8qi)
8758 v4hi __builtin_arm_wunpckihh (v4hi, v4hi)
8759 v2si __builtin_arm_wunpckihw (v2si, v2si)
8760 v8qi __builtin_arm_wunpckilb (v8qi, v8qi)
8761 v4hi __builtin_arm_wunpckilh (v4hi, v4hi)
8762 v2si __builtin_arm_wunpckilw (v2si, v2si)
8763 long long __builtin_arm_wxor (long long, long long)
8764 long long __builtin_arm_wzero ()
8765 @end smallexample
8766
8767 @node ARM NEON Intrinsics
8768 @subsection ARM NEON Intrinsics
8769
8770 These built-in intrinsics for the ARM Advanced SIMD extension are available
8771 when the @option{-mfpu=neon} switch is used:
8772
8773 @include arm-neon-intrinsics.texi
8774
8775 @node AVR Built-in Functions
8776 @subsection AVR Built-in Functions
8777
8778 For each built-in function for AVR, there is an equally named,
8779 uppercase built-in macro defined. That way users can easily query if
8780 or if not a specific built-in is implemented or not. For example, if
8781 @code{__builtin_avr_nop} is available the macro
8782 @code{__BUILTIN_AVR_NOP} is defined to @code{1} and undefined otherwise.
8783
8784 The following built-in functions map to the respective machine
8785 instruction, i.e. @code{nop}, @code{sei}, @code{cli}, @code{sleep},
8786 @code{wdr}, @code{swap}, @code{fmul}, @code{fmuls}
8787 resp. @code{fmulsu}. The three @code{fmul*} built-ins are implemented
8788 as library call if no hardware multiplier is available.
8789
8790 @smallexample
8791 void __builtin_avr_nop (void)
8792 void __builtin_avr_sei (void)
8793 void __builtin_avr_cli (void)
8794 void __builtin_avr_sleep (void)
8795 void __builtin_avr_wdr (void)
8796 unsigned char __builtin_avr_swap (unsigned char)
8797 unsigned int __builtin_avr_fmul (unsigned char, unsigned char)
8798 int __builtin_avr_fmuls (char, char)
8799 int __builtin_avr_fmulsu (char, unsigned char)
8800 @end smallexample
8801
8802 In order to delay execution for a specific number of cycles, GCC
8803 implements
8804 @smallexample
8805 void __builtin_avr_delay_cycles (unsigned long ticks)
8806 @end smallexample
8807
8808 @noindent
8809 @code{ticks} is the number of ticks to delay execution. Note that this
8810 built-in does not take into account the effect of interrupts which
8811 might increase delay time. @code{ticks} must be a compile time
8812 integer constant; delays with a variable number of cycles are not supported.
8813
8814 @smallexample
8815      unsigned char __builtin_avr_insert_bits (unsigned long map, unsigned char bits, unsigned char val)
8816 @end smallexample
8817
8818 @noindent
8819 Insert bits from @var{bits} into @var{val} and return the resulting
8820 value. The nibbles of @var{map} determine how the insertion is
8821 performed: Let @var{X} be the @var{n}-th nibble of @var{map}
8822 @enumerate
8823 @item If @var{X} is @code{0xf},
8824 then the @var{n}-th bit of @var{val} is returned unaltered.
8825
8826 @item If X is in the range 0@dots{}7,
8827 then the @var{n}-th result bit is set to the @var{X}-th bit of @var{bits}
8828
8829 @item If X is in the range 8@dots{}@code{0xe},
8830 then the @var{n}-th result bit is undefined.
8831 @end enumerate
8832
8833 @noindent
8834 One typical use case for this built-in is adjusting input and
8835 output values to non-contiguous port layouts. Some examples:
8836
8837 @smallexample
8838 // same as val, bits is unused
8839 __builtin_avr_insert_bits (0xffffffff, bits, val)
8840 @end smallexample
8841
8842 @smallexample
8843 // same as bits, val is unused
8844 __builtin_avr_insert_bits (0x76543210, bits, val)
8845 @end smallexample
8846
8847 @smallexample
8848 // same as rotating bits by 4
8849 __builtin_avr_insert_bits (0x32107654, bits, 0)
8850 @end smallexample
8851
8852 @smallexample
8853 // high-nibble of result is the high-nibble of val
8854 // low-nibble of result is the low-nibble of bits
8855 __builtin_avr_insert_bits (0xffff3210, bits, val)
8856 @end smallexample
8857
8858 @smallexample
8859 // reverse the bit order of bits
8860 __builtin_avr_insert_bits (0x01234567, bits, 0)
8861 @end smallexample
8862
8863 @node Blackfin Built-in Functions
8864 @subsection Blackfin Built-in Functions
8865
8866 Currently, there are two Blackfin-specific built-in functions.  These are
8867 used for generating @code{CSYNC} and @code{SSYNC} machine insns without
8868 using inline assembly; by using these built-in functions the compiler can
8869 automatically add workarounds for hardware errata involving these
8870 instructions.  These functions are named as follows:
8871
8872 @smallexample
8873 void __builtin_bfin_csync (void)
8874 void __builtin_bfin_ssync (void)
8875 @end smallexample
8876
8877 @node FR-V Built-in Functions
8878 @subsection FR-V Built-in Functions
8879
8880 GCC provides many FR-V-specific built-in functions.  In general,
8881 these functions are intended to be compatible with those described
8882 by @cite{FR-V Family, Softune C/C++ Compiler Manual (V6), Fujitsu
8883 Semiconductor}.  The two exceptions are @code{__MDUNPACKH} and
8884 @code{__MBTOHE}, the gcc forms of which pass 128-bit values by
8885 pointer rather than by value.
8886
8887 Most of the functions are named after specific FR-V instructions.
8888 Such functions are said to be ``directly mapped'' and are summarized
8889 here in tabular form.
8890
8891 @menu
8892 * Argument Types::
8893 * Directly-mapped Integer Functions::
8894 * Directly-mapped Media Functions::
8895 * Raw read/write Functions::
8896 * Other Built-in Functions::
8897 @end menu
8898
8899 @node Argument Types
8900 @subsubsection Argument Types
8901
8902 The arguments to the built-in functions can be divided into three groups:
8903 register numbers, compile-time constants and run-time values.  In order
8904 to make this classification clear at a glance, the arguments and return
8905 values are given the following pseudo types:
8906
8907 @multitable @columnfractions .20 .30 .15 .35
8908 @item Pseudo type @tab Real C type @tab Constant? @tab Description
8909 @item @code{uh} @tab @code{unsigned short} @tab No @tab an unsigned halfword
8910 @item @code{uw1} @tab @code{unsigned int} @tab No @tab an unsigned word
8911 @item @code{sw1} @tab @code{int} @tab No @tab a signed word
8912 @item @code{uw2} @tab @code{unsigned long long} @tab No
8913 @tab an unsigned doubleword
8914 @item @code{sw2} @tab @code{long long} @tab No @tab a signed doubleword
8915 @item @code{const} @tab @code{int} @tab Yes @tab an integer constant
8916 @item @code{acc} @tab @code{int} @tab Yes @tab an ACC register number
8917 @item @code{iacc} @tab @code{int} @tab Yes @tab an IACC register number
8918 @end multitable
8919
8920 These pseudo types are not defined by GCC, they are simply a notational
8921 convenience used in this manual.
8922
8923 Arguments of type @code{uh}, @code{uw1}, @code{sw1}, @code{uw2}
8924 and @code{sw2} are evaluated at run time.  They correspond to
8925 register operands in the underlying FR-V instructions.
8926
8927 @code{const} arguments represent immediate operands in the underlying
8928 FR-V instructions.  They must be compile-time constants.
8929
8930 @code{acc} arguments are evaluated at compile time and specify the number
8931 of an accumulator register.  For example, an @code{acc} argument of 2
8932 will select the ACC2 register.
8933
8934 @code{iacc} arguments are similar to @code{acc} arguments but specify the
8935 number of an IACC register.  See @pxref{Other Built-in Functions}
8936 for more details.
8937
8938 @node Directly-mapped Integer Functions
8939 @subsubsection Directly-mapped Integer Functions
8940
8941 The functions listed below map directly to FR-V I-type instructions.
8942
8943 @multitable @columnfractions .45 .32 .23
8944 @item Function prototype @tab Example usage @tab Assembly output
8945 @item @code{sw1 __ADDSS (sw1, sw1)}
8946 @tab @code{@var{c} = __ADDSS (@var{a}, @var{b})}
8947 @tab @code{ADDSS @var{a},@var{b},@var{c}}
8948 @item @code{sw1 __SCAN (sw1, sw1)}
8949 @tab @code{@var{c} = __SCAN (@var{a}, @var{b})}
8950 @tab @code{SCAN @var{a},@var{b},@var{c}}
8951 @item @code{sw1 __SCUTSS (sw1)}
8952 @tab @code{@var{b} = __SCUTSS (@var{a})}
8953 @tab @code{SCUTSS @var{a},@var{b}}
8954 @item @code{sw1 __SLASS (sw1, sw1)}
8955 @tab @code{@var{c} = __SLASS (@var{a}, @var{b})}
8956 @tab @code{SLASS @var{a},@var{b},@var{c}}
8957 @item @code{void __SMASS (sw1, sw1)}
8958 @tab @code{__SMASS (@var{a}, @var{b})}
8959 @tab @code{SMASS @var{a},@var{b}}
8960 @item @code{void __SMSSS (sw1, sw1)}
8961 @tab @code{__SMSSS (@var{a}, @var{b})}
8962 @tab @code{SMSSS @var{a},@var{b}}
8963 @item @code{void __SMU (sw1, sw1)}
8964 @tab @code{__SMU (@var{a}, @var{b})}
8965 @tab @code{SMU @var{a},@var{b}}
8966 @item @code{sw2 __SMUL (sw1, sw1)}
8967 @tab @code{@var{c} = __SMUL (@var{a}, @var{b})}
8968 @tab @code{SMUL @var{a},@var{b},@var{c}}
8969 @item @code{sw1 __SUBSS (sw1, sw1)}
8970 @tab @code{@var{c} = __SUBSS (@var{a}, @var{b})}
8971 @tab @code{SUBSS @var{a},@var{b},@var{c}}
8972 @item @code{uw2 __UMUL (uw1, uw1)}
8973 @tab @code{@var{c} = __UMUL (@var{a}, @var{b})}
8974 @tab @code{UMUL @var{a},@var{b},@var{c}}
8975 @end multitable
8976
8977 @node Directly-mapped Media Functions
8978 @subsubsection Directly-mapped Media Functions
8979
8980 The functions listed below map directly to FR-V M-type instructions.
8981
8982 @multitable @columnfractions .45 .32 .23
8983 @item Function prototype @tab Example usage @tab Assembly output
8984 @item @code{uw1 __MABSHS (sw1)}
8985 @tab @code{@var{b} = __MABSHS (@var{a})}
8986 @tab @code{MABSHS @var{a},@var{b}}
8987 @item @code{void __MADDACCS (acc, acc)}
8988 @tab @code{__MADDACCS (@var{b}, @var{a})}
8989 @tab @code{MADDACCS @var{a},@var{b}}
8990 @item @code{sw1 __MADDHSS (sw1, sw1)}
8991 @tab @code{@var{c} = __MADDHSS (@var{a}, @var{b})}
8992 @tab @code{MADDHSS @var{a},@var{b},@var{c}}
8993 @item @code{uw1 __MADDHUS (uw1, uw1)}
8994 @tab @code{@var{c} = __MADDHUS (@var{a}, @var{b})}
8995 @tab @code{MADDHUS @var{a},@var{b},@var{c}}
8996 @item @code{uw1 __MAND (uw1, uw1)}
8997 @tab @code{@var{c} = __MAND (@var{a}, @var{b})}
8998 @tab @code{MAND @var{a},@var{b},@var{c}}
8999 @item @code{void __MASACCS (acc, acc)}
9000 @tab @code{__MASACCS (@var{b}, @var{a})}
9001 @tab @code{MASACCS @var{a},@var{b}}
9002 @item @code{uw1 __MAVEH (uw1, uw1)}
9003 @tab @code{@var{c} = __MAVEH (@var{a}, @var{b})}
9004 @tab @code{MAVEH @var{a},@var{b},@var{c}}
9005 @item @code{uw2 __MBTOH (uw1)}
9006 @tab @code{@var{b} = __MBTOH (@var{a})}
9007 @tab @code{MBTOH @var{a},@var{b}}
9008 @item @code{void __MBTOHE (uw1 *, uw1)}
9009 @tab @code{__MBTOHE (&@var{b}, @var{a})}
9010 @tab @code{MBTOHE @var{a},@var{b}}
9011 @item @code{void __MCLRACC (acc)}
9012 @tab @code{__MCLRACC (@var{a})}
9013 @tab @code{MCLRACC @var{a}}
9014 @item @code{void __MCLRACCA (void)}
9015 @tab @code{__MCLRACCA ()}
9016 @tab @code{MCLRACCA}
9017 @item @code{uw1 __Mcop1 (uw1, uw1)}
9018 @tab @code{@var{c} = __Mcop1 (@var{a}, @var{b})}
9019 @tab @code{Mcop1 @var{a},@var{b},@var{c}}
9020 @item @code{uw1 __Mcop2 (uw1, uw1)}
9021 @tab @code{@var{c} = __Mcop2 (@var{a}, @var{b})}
9022 @tab @code{Mcop2 @var{a},@var{b},@var{c}}
9023 @item @code{uw1 __MCPLHI (uw2, const)}
9024 @tab @code{@var{c} = __MCPLHI (@var{a}, @var{b})}
9025 @tab @code{MCPLHI @var{a},#@var{b},@var{c}}
9026 @item @code{uw1 __MCPLI (uw2, const)}
9027 @tab @code{@var{c} = __MCPLI (@var{a}, @var{b})}
9028 @tab @code{MCPLI @var{a},#@var{b},@var{c}}
9029 @item @code{void __MCPXIS (acc, sw1, sw1)}
9030 @tab @code{__MCPXIS (@var{c}, @var{a}, @var{b})}
9031 @tab @code{MCPXIS @var{a},@var{b},@var{c}}
9032 @item @code{void __MCPXIU (acc, uw1, uw1)}
9033 @tab @code{__MCPXIU (@var{c}, @var{a}, @var{b})}
9034 @tab @code{MCPXIU @var{a},@var{b},@var{c}}
9035 @item @code{void __MCPXRS (acc, sw1, sw1)}
9036 @tab @code{__MCPXRS (@var{c}, @var{a}, @var{b})}
9037 @tab @code{MCPXRS @var{a},@var{b},@var{c}}
9038 @item @code{void __MCPXRU (acc, uw1, uw1)}
9039 @tab @code{__MCPXRU (@var{c}, @var{a}, @var{b})}
9040 @tab @code{MCPXRU @var{a},@var{b},@var{c}}
9041 @item @code{uw1 __MCUT (acc, uw1)}
9042 @tab @code{@var{c} = __MCUT (@var{a}, @var{b})}
9043 @tab @code{MCUT @var{a},@var{b},@var{c}}
9044 @item @code{uw1 __MCUTSS (acc, sw1)}
9045 @tab @code{@var{c} = __MCUTSS (@var{a}, @var{b})}
9046 @tab @code{MCUTSS @var{a},@var{b},@var{c}}
9047 @item @code{void __MDADDACCS (acc, acc)}
9048 @tab @code{__MDADDACCS (@var{b}, @var{a})}
9049 @tab @code{MDADDACCS @var{a},@var{b}}
9050 @item @code{void __MDASACCS (acc, acc)}
9051 @tab @code{__MDASACCS (@var{b}, @var{a})}
9052 @tab @code{MDASACCS @var{a},@var{b}}
9053 @item @code{uw2 __MDCUTSSI (acc, const)}
9054 @tab @code{@var{c} = __MDCUTSSI (@var{a}, @var{b})}
9055 @tab @code{MDCUTSSI @var{a},#@var{b},@var{c}}
9056 @item @code{uw2 __MDPACKH (uw2, uw2)}
9057 @tab @code{@var{c} = __MDPACKH (@var{a}, @var{b})}
9058 @tab @code{MDPACKH @var{a},@var{b},@var{c}}
9059 @item @code{uw2 __MDROTLI (uw2, const)}
9060 @tab @code{@var{c} = __MDROTLI (@var{a}, @var{b})}
9061 @tab @code{MDROTLI @var{a},#@var{b},@var{c}}
9062 @item @code{void __MDSUBACCS (acc, acc)}
9063 @tab @code{__MDSUBACCS (@var{b}, @var{a})}
9064 @tab @code{MDSUBACCS @var{a},@var{b}}
9065 @item @code{void __MDUNPACKH (uw1 *, uw2)}
9066 @tab @code{__MDUNPACKH (&@var{b}, @var{a})}
9067 @tab @code{MDUNPACKH @var{a},@var{b}}
9068 @item @code{uw2 __MEXPDHD (uw1, const)}
9069 @tab @code{@var{c} = __MEXPDHD (@var{a}, @var{b})}
9070 @tab @code{MEXPDHD @var{a},#@var{b},@var{c}}
9071 @item @code{uw1 __MEXPDHW (uw1, const)}
9072 @tab @code{@var{c} = __MEXPDHW (@var{a}, @var{b})}
9073 @tab @code{MEXPDHW @var{a},#@var{b},@var{c}}
9074 @item @code{uw1 __MHDSETH (uw1, const)}
9075 @tab @code{@var{c} = __MHDSETH (@var{a}, @var{b})}
9076 @tab @code{MHDSETH @var{a},#@var{b},@var{c}}
9077 @item @code{sw1 __MHDSETS (const)}
9078 @tab @code{@var{b} = __MHDSETS (@var{a})}
9079 @tab @code{MHDSETS #@var{a},@var{b}}
9080 @item @code{uw1 __MHSETHIH (uw1, const)}
9081 @tab @code{@var{b} = __MHSETHIH (@var{b}, @var{a})}
9082 @tab @code{MHSETHIH #@var{a},@var{b}}
9083 @item @code{sw1 __MHSETHIS (sw1, const)}
9084 @tab @code{@var{b} = __MHSETHIS (@var{b}, @var{a})}
9085 @tab @code{MHSETHIS #@var{a},@var{b}}
9086 @item @code{uw1 __MHSETLOH (uw1, const)}
9087 @tab @code{@var{b} = __MHSETLOH (@var{b}, @var{a})}
9088 @tab @code{MHSETLOH #@var{a},@var{b}}
9089 @item @code{sw1 __MHSETLOS (sw1, const)}
9090 @tab @code{@var{b} = __MHSETLOS (@var{b}, @var{a})}
9091 @tab @code{MHSETLOS #@var{a},@var{b}}
9092 @item @code{uw1 __MHTOB (uw2)}
9093 @tab @code{@var{b} = __MHTOB (@var{a})}
9094 @tab @code{MHTOB @var{a},@var{b}}
9095 @item @code{void __MMACHS (acc, sw1, sw1)}
9096 @tab @code{__MMACHS (@var{c}, @var{a}, @var{b})}
9097 @tab @code{MMACHS @var{a},@var{b},@var{c}}
9098 @item @code{void __MMACHU (acc, uw1, uw1)}
9099 @tab @code{__MMACHU (@var{c}, @var{a}, @var{b})}
9100 @tab @code{MMACHU @var{a},@var{b},@var{c}}
9101 @item @code{void __MMRDHS (acc, sw1, sw1)}
9102 @tab @code{__MMRDHS (@var{c}, @var{a}, @var{b})}
9103 @tab @code{MMRDHS @var{a},@var{b},@var{c}}
9104 @item @code{void __MMRDHU (acc, uw1, uw1)}
9105 @tab @code{__MMRDHU (@var{c}, @var{a}, @var{b})}
9106 @tab @code{MMRDHU @var{a},@var{b},@var{c}}
9107 @item @code{void __MMULHS (acc, sw1, sw1)}
9108 @tab @code{__MMULHS (@var{c}, @var{a}, @var{b})}
9109 @tab @code{MMULHS @var{a},@var{b},@var{c}}
9110 @item @code{void __MMULHU (acc, uw1, uw1)}
9111 @tab @code{__MMULHU (@var{c}, @var{a}, @var{b})}
9112 @tab @code{MMULHU @var{a},@var{b},@var{c}}
9113 @item @code{void __MMULXHS (acc, sw1, sw1)}
9114 @tab @code{__MMULXHS (@var{c}, @var{a}, @var{b})}
9115 @tab @code{MMULXHS @var{a},@var{b},@var{c}}
9116 @item @code{void __MMULXHU (acc, uw1, uw1)}
9117 @tab @code{__MMULXHU (@var{c}, @var{a}, @var{b})}
9118 @tab @code{MMULXHU @var{a},@var{b},@var{c}}
9119 @item @code{uw1 __MNOT (uw1)}
9120 @tab @code{@var{b} = __MNOT (@var{a})}
9121 @tab @code{MNOT @var{a},@var{b}}
9122 @item @code{uw1 __MOR (uw1, uw1)}
9123 @tab @code{@var{c} = __MOR (@var{a}, @var{b})}
9124 @tab @code{MOR @var{a},@var{b},@var{c}}
9125 @item @code{uw1 __MPACKH (uh, uh)}
9126 @tab @code{@var{c} = __MPACKH (@var{a}, @var{b})}
9127 @tab @code{MPACKH @var{a},@var{b},@var{c}}
9128 @item @code{sw2 __MQADDHSS (sw2, sw2)}
9129 @tab @code{@var{c} = __MQADDHSS (@var{a}, @var{b})}
9130 @tab @code{MQADDHSS @var{a},@var{b},@var{c}}
9131 @item @code{uw2 __MQADDHUS (uw2, uw2)}
9132 @tab @code{@var{c} = __MQADDHUS (@var{a}, @var{b})}
9133 @tab @code{MQADDHUS @var{a},@var{b},@var{c}}
9134 @item @code{void __MQCPXIS (acc, sw2, sw2)}
9135 @tab @code{__MQCPXIS (@var{c}, @var{a}, @var{b})}
9136 @tab @code{MQCPXIS @var{a},@var{b},@var{c}}
9137 @item @code{void __MQCPXIU (acc, uw2, uw2)}
9138 @tab @code{__MQCPXIU (@var{c}, @var{a}, @var{b})}
9139 @tab @code{MQCPXIU @var{a},@var{b},@var{c}}
9140 @item @code{void __MQCPXRS (acc, sw2, sw2)}
9141 @tab @code{__MQCPXRS (@var{c}, @var{a}, @var{b})}
9142 @tab @code{MQCPXRS @var{a},@var{b},@var{c}}
9143 @item @code{void __MQCPXRU (acc, uw2, uw2)}
9144 @tab @code{__MQCPXRU (@var{c}, @var{a}, @var{b})}
9145 @tab @code{MQCPXRU @var{a},@var{b},@var{c}}
9146 @item @code{sw2 __MQLCLRHS (sw2, sw2)}
9147 @tab @code{@var{c} = __MQLCLRHS (@var{a}, @var{b})}
9148 @tab @code{MQLCLRHS @var{a},@var{b},@var{c}}
9149 @item @code{sw2 __MQLMTHS (sw2, sw2)}
9150 @tab @code{@var{c} = __MQLMTHS (@var{a}, @var{b})}
9151 @tab @code{MQLMTHS @var{a},@var{b},@var{c}}
9152 @item @code{void __MQMACHS (acc, sw2, sw2)}
9153 @tab @code{__MQMACHS (@var{c}, @var{a}, @var{b})}
9154 @tab @code{MQMACHS @var{a},@var{b},@var{c}}
9155 @item @code{void __MQMACHU (acc, uw2, uw2)}
9156 @tab @code{__MQMACHU (@var{c}, @var{a}, @var{b})}
9157 @tab @code{MQMACHU @var{a},@var{b},@var{c}}
9158 @item @code{void __MQMACXHS (acc, sw2, sw2)}
9159 @tab @code{__MQMACXHS (@var{c}, @var{a}, @var{b})}
9160 @tab @code{MQMACXHS @var{a},@var{b},@var{c}}
9161 @item @code{void __MQMULHS (acc, sw2, sw2)}
9162 @tab @code{__MQMULHS (@var{c}, @var{a}, @var{b})}
9163 @tab @code{MQMULHS @var{a},@var{b},@var{c}}
9164 @item @code{void __MQMULHU (acc, uw2, uw2)}
9165 @tab @code{__MQMULHU (@var{c}, @var{a}, @var{b})}
9166 @tab @code{MQMULHU @var{a},@var{b},@var{c}}
9167 @item @code{void __MQMULXHS (acc, sw2, sw2)}
9168 @tab @code{__MQMULXHS (@var{c}, @var{a}, @var{b})}
9169 @tab @code{MQMULXHS @var{a},@var{b},@var{c}}
9170 @item @code{void __MQMULXHU (acc, uw2, uw2)}
9171 @tab @code{__MQMULXHU (@var{c}, @var{a}, @var{b})}
9172 @tab @code{MQMULXHU @var{a},@var{b},@var{c}}
9173 @item @code{sw2 __MQSATHS (sw2, sw2)}
9174 @tab @code{@var{c} = __MQSATHS (@var{a}, @var{b})}
9175 @tab @code{MQSATHS @var{a},@var{b},@var{c}}
9176 @item @code{uw2 __MQSLLHI (uw2, int)}
9177 @tab @code{@var{c} = __MQSLLHI (@var{a}, @var{b})}
9178 @tab @code{MQSLLHI @var{a},@var{b},@var{c}}
9179 @item @code{sw2 __MQSRAHI (sw2, int)}
9180 @tab @code{@var{c} = __MQSRAHI (@var{a}, @var{b})}
9181 @tab @code{MQSRAHI @var{a},@var{b},@var{c}}
9182 @item @code{sw2 __MQSUBHSS (sw2, sw2)}
9183 @tab @code{@var{c} = __MQSUBHSS (@var{a}, @var{b})}
9184 @tab @code{MQSUBHSS @var{a},@var{b},@var{c}}
9185 @item @code{uw2 __MQSUBHUS (uw2, uw2)}
9186 @tab @code{@var{c} = __MQSUBHUS (@var{a}, @var{b})}
9187 @tab @code{MQSUBHUS @var{a},@var{b},@var{c}}
9188 @item @code{void __MQXMACHS (acc, sw2, sw2)}
9189 @tab @code{__MQXMACHS (@var{c}, @var{a}, @var{b})}
9190 @tab @code{MQXMACHS @var{a},@var{b},@var{c}}
9191 @item @code{void __MQXMACXHS (acc, sw2, sw2)}
9192 @tab @code{__MQXMACXHS (@var{c}, @var{a}, @var{b})}
9193 @tab @code{MQXMACXHS @var{a},@var{b},@var{c}}
9194 @item @code{uw1 __MRDACC (acc)}
9195 @tab @code{@var{b} = __MRDACC (@var{a})}
9196 @tab @code{MRDACC @var{a},@var{b}}
9197 @item @code{uw1 __MRDACCG (acc)}
9198 @tab @code{@var{b} = __MRDACCG (@var{a})}
9199 @tab @code{MRDACCG @var{a},@var{b}}
9200 @item @code{uw1 __MROTLI (uw1, const)}
9201 @tab @code{@var{c} = __MROTLI (@var{a}, @var{b})}
9202 @tab @code{MROTLI @var{a},#@var{b},@var{c}}
9203 @item @code{uw1 __MROTRI (uw1, const)}
9204 @tab @code{@var{c} = __MROTRI (@var{a}, @var{b})}
9205 @tab @code{MROTRI @var{a},#@var{b},@var{c}}
9206 @item @code{sw1 __MSATHS (sw1, sw1)}
9207 @tab @code{@var{c} = __MSATHS (@var{a}, @var{b})}
9208 @tab @code{MSATHS @var{a},@var{b},@var{c}}
9209 @item @code{uw1 __MSATHU (uw1, uw1)}
9210 @tab @code{@var{c} = __MSATHU (@var{a}, @var{b})}
9211 @tab @code{MSATHU @var{a},@var{b},@var{c}}
9212 @item @code{uw1 __MSLLHI (uw1, const)}
9213 @tab @code{@var{c} = __MSLLHI (@var{a}, @var{b})}
9214 @tab @code{MSLLHI @var{a},#@var{b},@var{c}}
9215 @item @code{sw1 __MSRAHI (sw1, const)}
9216 @tab @code{@var{c} = __MSRAHI (@var{a}, @var{b})}
9217 @tab @code{MSRAHI @var{a},#@var{b},@var{c}}
9218 @item @code{uw1 __MSRLHI (uw1, const)}
9219 @tab @code{@var{c} = __MSRLHI (@var{a}, @var{b})}
9220 @tab @code{MSRLHI @var{a},#@var{b},@var{c}}
9221 @item @code{void __MSUBACCS (acc, acc)}
9222 @tab @code{__MSUBACCS (@var{b}, @var{a})}
9223 @tab @code{MSUBACCS @var{a},@var{b}}
9224 @item @code{sw1 __MSUBHSS (sw1, sw1)}
9225 @tab @code{@var{c} = __MSUBHSS (@var{a}, @var{b})}
9226 @tab @code{MSUBHSS @var{a},@var{b},@var{c}}
9227 @item @code{uw1 __MSUBHUS (uw1, uw1)}
9228 @tab @code{@var{c} = __MSUBHUS (@var{a}, @var{b})}
9229 @tab @code{MSUBHUS @var{a},@var{b},@var{c}}
9230 @item @code{void __MTRAP (void)}
9231 @tab @code{__MTRAP ()}
9232 @tab @code{MTRAP}
9233 @item @code{uw2 __MUNPACKH (uw1)}
9234 @tab @code{@var{b} = __MUNPACKH (@var{a})}
9235 @tab @code{MUNPACKH @var{a},@var{b}}
9236 @item @code{uw1 __MWCUT (uw2, uw1)}
9237 @tab @code{@var{c} = __MWCUT (@var{a}, @var{b})}
9238 @tab @code{MWCUT @var{a},@var{b},@var{c}}
9239 @item @code{void __MWTACC (acc, uw1)}
9240 @tab @code{__MWTACC (@var{b}, @var{a})}
9241 @tab @code{MWTACC @var{a},@var{b}}
9242 @item @code{void __MWTACCG (acc, uw1)}
9243 @tab @code{__MWTACCG (@var{b}, @var{a})}
9244 @tab @code{MWTACCG @var{a},@var{b}}
9245 @item @code{uw1 __MXOR (uw1, uw1)}
9246 @tab @code{@var{c} = __MXOR (@var{a}, @var{b})}
9247 @tab @code{MXOR @var{a},@var{b},@var{c}}
9248 @end multitable
9249
9250 @node Raw read/write Functions
9251 @subsubsection Raw read/write Functions
9252
9253 This sections describes built-in functions related to read and write
9254 instructions to access memory.  These functions generate
9255 @code{membar} instructions to flush the I/O load and stores where
9256 appropriate, as described in Fujitsu's manual described above.
9257
9258 @table @code
9259
9260 @item unsigned char __builtin_read8 (void *@var{data})
9261 @item unsigned short __builtin_read16 (void *@var{data})
9262 @item unsigned long __builtin_read32 (void *@var{data})
9263 @item unsigned long long __builtin_read64 (void *@var{data})
9264
9265 @item void __builtin_write8 (void *@var{data}, unsigned char @var{datum})
9266 @item void __builtin_write16 (void *@var{data}, unsigned short @var{datum})
9267 @item void __builtin_write32 (void *@var{data}, unsigned long @var{datum})
9268 @item void __builtin_write64 (void *@var{data}, unsigned long long @var{datum})
9269 @end table
9270
9271 @node Other Built-in Functions
9272 @subsubsection Other Built-in Functions
9273
9274 This section describes built-in functions that are not named after
9275 a specific FR-V instruction.
9276
9277 @table @code
9278 @item sw2 __IACCreadll (iacc @var{reg})
9279 Return the full 64-bit value of IACC0@.  The @var{reg} argument is reserved
9280 for future expansion and must be 0.
9281
9282 @item sw1 __IACCreadl (iacc @var{reg})
9283 Return the value of IACC0H if @var{reg} is 0 and IACC0L if @var{reg} is 1.
9284 Other values of @var{reg} are rejected as invalid.
9285
9286 @item void __IACCsetll (iacc @var{reg}, sw2 @var{x})
9287 Set the full 64-bit value of IACC0 to @var{x}.  The @var{reg} argument
9288 is reserved for future expansion and must be 0.
9289
9290 @item void __IACCsetl (iacc @var{reg}, sw1 @var{x})
9291 Set IACC0H to @var{x} if @var{reg} is 0 and IACC0L to @var{x} if @var{reg}
9292 is 1.  Other values of @var{reg} are rejected as invalid.
9293
9294 @item void __data_prefetch0 (const void *@var{x})
9295 Use the @code{dcpl} instruction to load the contents of address @var{x}
9296 into the data cache.
9297
9298 @item void __data_prefetch (const void *@var{x})
9299 Use the @code{nldub} instruction to load the contents of address @var{x}
9300 into the data cache.  The instruction will be issued in slot I1@.
9301 @end table
9302
9303 @node X86 Built-in Functions
9304 @subsection X86 Built-in Functions
9305
9306 These built-in functions are available for the i386 and x86-64 family
9307 of computers, depending on the command-line switches used.
9308
9309 Note that, if you specify command-line switches such as @option{-msse},
9310 the compiler could use the extended instruction sets even if the built-ins
9311 are not used explicitly in the program.  For this reason, applications
9312 which perform runtime CPU detection must compile separate files for each
9313 supported architecture, using the appropriate flags.  In particular,
9314 the file containing the CPU detection code should be compiled without
9315 these options.
9316
9317 The following machine modes are available for use with MMX built-in functions
9318 (@pxref{Vector Extensions}): @code{V2SI} for a vector of two 32-bit integers,
9319 @code{V4HI} for a vector of four 16-bit integers, and @code{V8QI} for a
9320 vector of eight 8-bit integers.  Some of the built-in functions operate on
9321 MMX registers as a whole 64-bit entity, these use @code{V1DI} as their mode.
9322
9323 If 3DNow!@: extensions are enabled, @code{V2SF} is used as a mode for a vector
9324 of two 32-bit floating point values.
9325
9326 If SSE extensions are enabled, @code{V4SF} is used for a vector of four 32-bit
9327 floating point values.  Some instructions use a vector of four 32-bit
9328 integers, these use @code{V4SI}.  Finally, some instructions operate on an
9329 entire vector register, interpreting it as a 128-bit integer, these use mode
9330 @code{TI}.
9331
9332 In 64-bit mode, the x86-64 family of processors uses additional built-in
9333 functions for efficient use of @code{TF} (@code{__float128}) 128-bit
9334 floating point and @code{TC} 128-bit complex floating point values.
9335
9336 The following floating point built-in functions are available in 64-bit
9337 mode.  All of them implement the function that is part of the name.
9338
9339 @smallexample
9340 __float128 __builtin_fabsq (__float128)
9341 __float128 __builtin_copysignq (__float128, __float128)
9342 @end smallexample
9343
9344 The following built-in function is always available.
9345
9346 @table @code
9347 @item void __builtin_ia32_pause (void)
9348 Generates the @code{pause} machine instruction with a compiler memory
9349 barrier.
9350 @end table
9351
9352 The following floating point built-in functions are made available in the
9353 64-bit mode.
9354
9355 @table @code
9356 @item __float128 __builtin_infq (void)
9357 Similar to @code{__builtin_inf}, except the return type is @code{__float128}.
9358 @findex __builtin_infq
9359
9360 @item __float128 __builtin_huge_valq (void)
9361 Similar to @code{__builtin_huge_val}, except the return type is @code{__float128}.
9362 @findex __builtin_huge_valq
9363 @end table
9364
9365 The following built-in functions are made available by @option{-mmmx}.
9366 All of them generate the machine instruction that is part of the name.
9367
9368 @smallexample
9369 v8qi __builtin_ia32_paddb (v8qi, v8qi)
9370 v4hi __builtin_ia32_paddw (v4hi, v4hi)
9371 v2si __builtin_ia32_paddd (v2si, v2si)
9372 v8qi __builtin_ia32_psubb (v8qi, v8qi)
9373 v4hi __builtin_ia32_psubw (v4hi, v4hi)
9374 v2si __builtin_ia32_psubd (v2si, v2si)
9375 v8qi __builtin_ia32_paddsb (v8qi, v8qi)
9376 v4hi __builtin_ia32_paddsw (v4hi, v4hi)
9377 v8qi __builtin_ia32_psubsb (v8qi, v8qi)
9378 v4hi __builtin_ia32_psubsw (v4hi, v4hi)
9379 v8qi __builtin_ia32_paddusb (v8qi, v8qi)
9380 v4hi __builtin_ia32_paddusw (v4hi, v4hi)
9381 v8qi __builtin_ia32_psubusb (v8qi, v8qi)
9382 v4hi __builtin_ia32_psubusw (v4hi, v4hi)
9383 v4hi __builtin_ia32_pmullw (v4hi, v4hi)
9384 v4hi __builtin_ia32_pmulhw (v4hi, v4hi)
9385 di __builtin_ia32_pand (di, di)
9386 di __builtin_ia32_pandn (di,di)
9387 di __builtin_ia32_por (di, di)
9388 di __builtin_ia32_pxor (di, di)
9389 v8qi __builtin_ia32_pcmpeqb (v8qi, v8qi)
9390 v4hi __builtin_ia32_pcmpeqw (v4hi, v4hi)
9391 v2si __builtin_ia32_pcmpeqd (v2si, v2si)
9392 v8qi __builtin_ia32_pcmpgtb (v8qi, v8qi)
9393 v4hi __builtin_ia32_pcmpgtw (v4hi, v4hi)
9394 v2si __builtin_ia32_pcmpgtd (v2si, v2si)
9395 v8qi __builtin_ia32_punpckhbw (v8qi, v8qi)
9396 v4hi __builtin_ia32_punpckhwd (v4hi, v4hi)
9397 v2si __builtin_ia32_punpckhdq (v2si, v2si)
9398 v8qi __builtin_ia32_punpcklbw (v8qi, v8qi)
9399 v4hi __builtin_ia32_punpcklwd (v4hi, v4hi)
9400 v2si __builtin_ia32_punpckldq (v2si, v2si)
9401 v8qi __builtin_ia32_packsswb (v4hi, v4hi)
9402 v4hi __builtin_ia32_packssdw (v2si, v2si)
9403 v8qi __builtin_ia32_packuswb (v4hi, v4hi)
9404
9405 v4hi __builtin_ia32_psllw (v4hi, v4hi)
9406 v2si __builtin_ia32_pslld (v2si, v2si)
9407 v1di __builtin_ia32_psllq (v1di, v1di)
9408 v4hi __builtin_ia32_psrlw (v4hi, v4hi)
9409 v2si __builtin_ia32_psrld (v2si, v2si)
9410 v1di __builtin_ia32_psrlq (v1di, v1di)
9411 v4hi __builtin_ia32_psraw (v4hi, v4hi)
9412 v2si __builtin_ia32_psrad (v2si, v2si)
9413 v4hi __builtin_ia32_psllwi (v4hi, int)
9414 v2si __builtin_ia32_pslldi (v2si, int)
9415 v1di __builtin_ia32_psllqi (v1di, int)
9416 v4hi __builtin_ia32_psrlwi (v4hi, int)
9417 v2si __builtin_ia32_psrldi (v2si, int)
9418 v1di __builtin_ia32_psrlqi (v1di, int)
9419 v4hi __builtin_ia32_psrawi (v4hi, int)
9420 v2si __builtin_ia32_psradi (v2si, int)
9421
9422 @end smallexample
9423
9424 The following built-in functions are made available either with
9425 @option{-msse}, or with a combination of @option{-m3dnow} and
9426 @option{-march=athlon}.  All of them generate the machine
9427 instruction that is part of the name.
9428
9429 @smallexample
9430 v4hi __builtin_ia32_pmulhuw (v4hi, v4hi)
9431 v8qi __builtin_ia32_pavgb (v8qi, v8qi)
9432 v4hi __builtin_ia32_pavgw (v4hi, v4hi)
9433 v1di __builtin_ia32_psadbw (v8qi, v8qi)
9434 v8qi __builtin_ia32_pmaxub (v8qi, v8qi)
9435 v4hi __builtin_ia32_pmaxsw (v4hi, v4hi)
9436 v8qi __builtin_ia32_pminub (v8qi, v8qi)
9437 v4hi __builtin_ia32_pminsw (v4hi, v4hi)
9438 int __builtin_ia32_pextrw (v4hi, int)
9439 v4hi __builtin_ia32_pinsrw (v4hi, int, int)
9440 int __builtin_ia32_pmovmskb (v8qi)
9441 void __builtin_ia32_maskmovq (v8qi, v8qi, char *)
9442 void __builtin_ia32_movntq (di *, di)
9443 void __builtin_ia32_sfence (void)
9444 @end smallexample
9445
9446 The following built-in functions are available when @option{-msse} is used.
9447 All of them generate the machine instruction that is part of the name.
9448
9449 @smallexample
9450 int __builtin_ia32_comieq (v4sf, v4sf)
9451 int __builtin_ia32_comineq (v4sf, v4sf)
9452 int __builtin_ia32_comilt (v4sf, v4sf)
9453 int __builtin_ia32_comile (v4sf, v4sf)
9454 int __builtin_ia32_comigt (v4sf, v4sf)
9455 int __builtin_ia32_comige (v4sf, v4sf)
9456 int __builtin_ia32_ucomieq (v4sf, v4sf)
9457 int __builtin_ia32_ucomineq (v4sf, v4sf)
9458 int __builtin_ia32_ucomilt (v4sf, v4sf)
9459 int __builtin_ia32_ucomile (v4sf, v4sf)
9460 int __builtin_ia32_ucomigt (v4sf, v4sf)
9461 int __builtin_ia32_ucomige (v4sf, v4sf)
9462 v4sf __builtin_ia32_addps (v4sf, v4sf)
9463 v4sf __builtin_ia32_subps (v4sf, v4sf)
9464 v4sf __builtin_ia32_mulps (v4sf, v4sf)
9465 v4sf __builtin_ia32_divps (v4sf, v4sf)
9466 v4sf __builtin_ia32_addss (v4sf, v4sf)
9467 v4sf __builtin_ia32_subss (v4sf, v4sf)
9468 v4sf __builtin_ia32_mulss (v4sf, v4sf)
9469 v4sf __builtin_ia32_divss (v4sf, v4sf)
9470 v4si __builtin_ia32_cmpeqps (v4sf, v4sf)
9471 v4si __builtin_ia32_cmpltps (v4sf, v4sf)
9472 v4si __builtin_ia32_cmpleps (v4sf, v4sf)
9473 v4si __builtin_ia32_cmpgtps (v4sf, v4sf)
9474 v4si __builtin_ia32_cmpgeps (v4sf, v4sf)
9475 v4si __builtin_ia32_cmpunordps (v4sf, v4sf)
9476 v4si __builtin_ia32_cmpneqps (v4sf, v4sf)
9477 v4si __builtin_ia32_cmpnltps (v4sf, v4sf)
9478 v4si __builtin_ia32_cmpnleps (v4sf, v4sf)
9479 v4si __builtin_ia32_cmpngtps (v4sf, v4sf)
9480 v4si __builtin_ia32_cmpngeps (v4sf, v4sf)
9481 v4si __builtin_ia32_cmpordps (v4sf, v4sf)
9482 v4si __builtin_ia32_cmpeqss (v4sf, v4sf)
9483 v4si __builtin_ia32_cmpltss (v4sf, v4sf)
9484 v4si __builtin_ia32_cmpless (v4sf, v4sf)
9485 v4si __builtin_ia32_cmpunordss (v4sf, v4sf)
9486 v4si __builtin_ia32_cmpneqss (v4sf, v4sf)
9487 v4si __builtin_ia32_cmpnlts (v4sf, v4sf)
9488 v4si __builtin_ia32_cmpnless (v4sf, v4sf)
9489 v4si __builtin_ia32_cmpordss (v4sf, v4sf)
9490 v4sf __builtin_ia32_maxps (v4sf, v4sf)
9491 v4sf __builtin_ia32_maxss (v4sf, v4sf)
9492 v4sf __builtin_ia32_minps (v4sf, v4sf)
9493 v4sf __builtin_ia32_minss (v4sf, v4sf)
9494 v4sf __builtin_ia32_andps (v4sf, v4sf)
9495 v4sf __builtin_ia32_andnps (v4sf, v4sf)
9496 v4sf __builtin_ia32_orps (v4sf, v4sf)
9497 v4sf __builtin_ia32_xorps (v4sf, v4sf)
9498 v4sf __builtin_ia32_movss (v4sf, v4sf)
9499 v4sf __builtin_ia32_movhlps (v4sf, v4sf)
9500 v4sf __builtin_ia32_movlhps (v4sf, v4sf)
9501 v4sf __builtin_ia32_unpckhps (v4sf, v4sf)
9502 v4sf __builtin_ia32_unpcklps (v4sf, v4sf)
9503 v4sf __builtin_ia32_cvtpi2ps (v4sf, v2si)
9504 v4sf __builtin_ia32_cvtsi2ss (v4sf, int)
9505 v2si __builtin_ia32_cvtps2pi (v4sf)
9506 int __builtin_ia32_cvtss2si (v4sf)
9507 v2si __builtin_ia32_cvttps2pi (v4sf)
9508 int __builtin_ia32_cvttss2si (v4sf)
9509 v4sf __builtin_ia32_rcpps (v4sf)
9510 v4sf __builtin_ia32_rsqrtps (v4sf)
9511 v4sf __builtin_ia32_sqrtps (v4sf)
9512 v4sf __builtin_ia32_rcpss (v4sf)
9513 v4sf __builtin_ia32_rsqrtss (v4sf)
9514 v4sf __builtin_ia32_sqrtss (v4sf)
9515 v4sf __builtin_ia32_shufps (v4sf, v4sf, int)
9516 void __builtin_ia32_movntps (float *, v4sf)
9517 int __builtin_ia32_movmskps (v4sf)
9518 @end smallexample
9519
9520 The following built-in functions are available when @option{-msse} is used.
9521
9522 @table @code
9523 @item v4sf __builtin_ia32_loadaps (float *)
9524 Generates the @code{movaps} machine instruction as a load from memory.
9525 @item void __builtin_ia32_storeaps (float *, v4sf)
9526 Generates the @code{movaps} machine instruction as a store to memory.
9527 @item v4sf __builtin_ia32_loadups (float *)
9528 Generates the @code{movups} machine instruction as a load from memory.
9529 @item void __builtin_ia32_storeups (float *, v4sf)
9530 Generates the @code{movups} machine instruction as a store to memory.
9531 @item v4sf __builtin_ia32_loadsss (float *)
9532 Generates the @code{movss} machine instruction as a load from memory.
9533 @item void __builtin_ia32_storess (float *, v4sf)
9534 Generates the @code{movss} machine instruction as a store to memory.
9535 @item v4sf __builtin_ia32_loadhps (v4sf, const v2sf *)
9536 Generates the @code{movhps} machine instruction as a load from memory.
9537 @item v4sf __builtin_ia32_loadlps (v4sf, const v2sf *)
9538 Generates the @code{movlps} machine instruction as a load from memory
9539 @item void __builtin_ia32_storehps (v2sf *, v4sf)
9540 Generates the @code{movhps} machine instruction as a store to memory.
9541 @item void __builtin_ia32_storelps (v2sf *, v4sf)
9542 Generates the @code{movlps} machine instruction as a store to memory.
9543 @end table
9544
9545 The following built-in functions are available when @option{-msse2} is used.
9546 All of them generate the machine instruction that is part of the name.
9547
9548 @smallexample
9549 int __builtin_ia32_comisdeq (v2df, v2df)
9550 int __builtin_ia32_comisdlt (v2df, v2df)
9551 int __builtin_ia32_comisdle (v2df, v2df)
9552 int __builtin_ia32_comisdgt (v2df, v2df)
9553 int __builtin_ia32_comisdge (v2df, v2df)
9554 int __builtin_ia32_comisdneq (v2df, v2df)
9555 int __builtin_ia32_ucomisdeq (v2df, v2df)
9556 int __builtin_ia32_ucomisdlt (v2df, v2df)
9557 int __builtin_ia32_ucomisdle (v2df, v2df)
9558 int __builtin_ia32_ucomisdgt (v2df, v2df)
9559 int __builtin_ia32_ucomisdge (v2df, v2df)
9560 int __builtin_ia32_ucomisdneq (v2df, v2df)
9561 v2df __builtin_ia32_cmpeqpd (v2df, v2df)
9562 v2df __builtin_ia32_cmpltpd (v2df, v2df)
9563 v2df __builtin_ia32_cmplepd (v2df, v2df)
9564 v2df __builtin_ia32_cmpgtpd (v2df, v2df)
9565 v2df __builtin_ia32_cmpgepd (v2df, v2df)
9566 v2df __builtin_ia32_cmpunordpd (v2df, v2df)
9567 v2df __builtin_ia32_cmpneqpd (v2df, v2df)
9568 v2df __builtin_ia32_cmpnltpd (v2df, v2df)
9569 v2df __builtin_ia32_cmpnlepd (v2df, v2df)
9570 v2df __builtin_ia32_cmpngtpd (v2df, v2df)
9571 v2df __builtin_ia32_cmpngepd (v2df, v2df)
9572 v2df __builtin_ia32_cmpordpd (v2df, v2df)
9573 v2df __builtin_ia32_cmpeqsd (v2df, v2df)
9574 v2df __builtin_ia32_cmpltsd (v2df, v2df)
9575 v2df __builtin_ia32_cmplesd (v2df, v2df)
9576 v2df __builtin_ia32_cmpunordsd (v2df, v2df)
9577 v2df __builtin_ia32_cmpneqsd (v2df, v2df)
9578 v2df __builtin_ia32_cmpnltsd (v2df, v2df)
9579 v2df __builtin_ia32_cmpnlesd (v2df, v2df)
9580 v2df __builtin_ia32_cmpordsd (v2df, v2df)
9581 v2di __builtin_ia32_paddq (v2di, v2di)
9582 v2di __builtin_ia32_psubq (v2di, v2di)
9583 v2df __builtin_ia32_addpd (v2df, v2df)
9584 v2df __builtin_ia32_subpd (v2df, v2df)
9585 v2df __builtin_ia32_mulpd (v2df, v2df)
9586 v2df __builtin_ia32_divpd (v2df, v2df)
9587 v2df __builtin_ia32_addsd (v2df, v2df)
9588 v2df __builtin_ia32_subsd (v2df, v2df)
9589 v2df __builtin_ia32_mulsd (v2df, v2df)
9590 v2df __builtin_ia32_divsd (v2df, v2df)
9591 v2df __builtin_ia32_minpd (v2df, v2df)
9592 v2df __builtin_ia32_maxpd (v2df, v2df)
9593 v2df __builtin_ia32_minsd (v2df, v2df)
9594 v2df __builtin_ia32_maxsd (v2df, v2df)
9595 v2df __builtin_ia32_andpd (v2df, v2df)
9596 v2df __builtin_ia32_andnpd (v2df, v2df)
9597 v2df __builtin_ia32_orpd (v2df, v2df)
9598 v2df __builtin_ia32_xorpd (v2df, v2df)
9599 v2df __builtin_ia32_movsd (v2df, v2df)
9600 v2df __builtin_ia32_unpckhpd (v2df, v2df)
9601 v2df __builtin_ia32_unpcklpd (v2df, v2df)
9602 v16qi __builtin_ia32_paddb128 (v16qi, v16qi)
9603 v8hi __builtin_ia32_paddw128 (v8hi, v8hi)
9604 v4si __builtin_ia32_paddd128 (v4si, v4si)
9605 v2di __builtin_ia32_paddq128 (v2di, v2di)
9606 v16qi __builtin_ia32_psubb128 (v16qi, v16qi)
9607 v8hi __builtin_ia32_psubw128 (v8hi, v8hi)
9608 v4si __builtin_ia32_psubd128 (v4si, v4si)
9609 v2di __builtin_ia32_psubq128 (v2di, v2di)
9610 v8hi __builtin_ia32_pmullw128 (v8hi, v8hi)
9611 v8hi __builtin_ia32_pmulhw128 (v8hi, v8hi)
9612 v2di __builtin_ia32_pand128 (v2di, v2di)
9613 v2di __builtin_ia32_pandn128 (v2di, v2di)
9614 v2di __builtin_ia32_por128 (v2di, v2di)
9615 v2di __builtin_ia32_pxor128 (v2di, v2di)
9616 v16qi __builtin_ia32_pavgb128 (v16qi, v16qi)
9617 v8hi __builtin_ia32_pavgw128 (v8hi, v8hi)
9618 v16qi __builtin_ia32_pcmpeqb128 (v16qi, v16qi)
9619 v8hi __builtin_ia32_pcmpeqw128 (v8hi, v8hi)
9620 v4si __builtin_ia32_pcmpeqd128 (v4si, v4si)
9621 v16qi __builtin_ia32_pcmpgtb128 (v16qi, v16qi)
9622 v8hi __builtin_ia32_pcmpgtw128 (v8hi, v8hi)
9623 v4si __builtin_ia32_pcmpgtd128 (v4si, v4si)
9624 v16qi __builtin_ia32_pmaxub128 (v16qi, v16qi)
9625 v8hi __builtin_ia32_pmaxsw128 (v8hi, v8hi)
9626 v16qi __builtin_ia32_pminub128 (v16qi, v16qi)
9627 v8hi __builtin_ia32_pminsw128 (v8hi, v8hi)
9628 v16qi __builtin_ia32_punpckhbw128 (v16qi, v16qi)
9629 v8hi __builtin_ia32_punpckhwd128 (v8hi, v8hi)
9630 v4si __builtin_ia32_punpckhdq128 (v4si, v4si)
9631 v2di __builtin_ia32_punpckhqdq128 (v2di, v2di)
9632 v16qi __builtin_ia32_punpcklbw128 (v16qi, v16qi)
9633 v8hi __builtin_ia32_punpcklwd128 (v8hi, v8hi)
9634 v4si __builtin_ia32_punpckldq128 (v4si, v4si)
9635 v2di __builtin_ia32_punpcklqdq128 (v2di, v2di)
9636 v16qi __builtin_ia32_packsswb128 (v8hi, v8hi)
9637 v8hi __builtin_ia32_packssdw128 (v4si, v4si)
9638 v16qi __builtin_ia32_packuswb128 (v8hi, v8hi)
9639 v8hi __builtin_ia32_pmulhuw128 (v8hi, v8hi)
9640 void __builtin_ia32_maskmovdqu (v16qi, v16qi)
9641 v2df __builtin_ia32_loadupd (double *)
9642 void __builtin_ia32_storeupd (double *, v2df)
9643 v2df __builtin_ia32_loadhpd (v2df, double const *)
9644 v2df __builtin_ia32_loadlpd (v2df, double const *)
9645 int __builtin_ia32_movmskpd (v2df)
9646 int __builtin_ia32_pmovmskb128 (v16qi)
9647 void __builtin_ia32_movnti (int *, int)
9648 void __builtin_ia32_movnti64 (long long int *, long long int)
9649 void __builtin_ia32_movntpd (double *, v2df)
9650 void __builtin_ia32_movntdq (v2df *, v2df)
9651 v4si __builtin_ia32_pshufd (v4si, int)
9652 v8hi __builtin_ia32_pshuflw (v8hi, int)
9653 v8hi __builtin_ia32_pshufhw (v8hi, int)
9654 v2di __builtin_ia32_psadbw128 (v16qi, v16qi)
9655 v2df __builtin_ia32_sqrtpd (v2df)
9656 v2df __builtin_ia32_sqrtsd (v2df)
9657 v2df __builtin_ia32_shufpd (v2df, v2df, int)
9658 v2df __builtin_ia32_cvtdq2pd (v4si)
9659 v4sf __builtin_ia32_cvtdq2ps (v4si)
9660 v4si __builtin_ia32_cvtpd2dq (v2df)
9661 v2si __builtin_ia32_cvtpd2pi (v2df)
9662 v4sf __builtin_ia32_cvtpd2ps (v2df)
9663 v4si __builtin_ia32_cvttpd2dq (v2df)
9664 v2si __builtin_ia32_cvttpd2pi (v2df)
9665 v2df __builtin_ia32_cvtpi2pd (v2si)
9666 int __builtin_ia32_cvtsd2si (v2df)
9667 int __builtin_ia32_cvttsd2si (v2df)
9668 long long __builtin_ia32_cvtsd2si64 (v2df)
9669 long long __builtin_ia32_cvttsd2si64 (v2df)
9670 v4si __builtin_ia32_cvtps2dq (v4sf)
9671 v2df __builtin_ia32_cvtps2pd (v4sf)
9672 v4si __builtin_ia32_cvttps2dq (v4sf)
9673 v2df __builtin_ia32_cvtsi2sd (v2df, int)
9674 v2df __builtin_ia32_cvtsi642sd (v2df, long long)
9675 v4sf __builtin_ia32_cvtsd2ss (v4sf, v2df)
9676 v2df __builtin_ia32_cvtss2sd (v2df, v4sf)
9677 void __builtin_ia32_clflush (const void *)
9678 void __builtin_ia32_lfence (void)
9679 void __builtin_ia32_mfence (void)
9680 v16qi __builtin_ia32_loaddqu (const char *)
9681 void __builtin_ia32_storedqu (char *, v16qi)
9682 v1di __builtin_ia32_pmuludq (v2si, v2si)
9683 v2di __builtin_ia32_pmuludq128 (v4si, v4si)
9684 v8hi __builtin_ia32_psllw128 (v8hi, v8hi)
9685 v4si __builtin_ia32_pslld128 (v4si, v4si)
9686 v2di __builtin_ia32_psllq128 (v2di, v2di)
9687 v8hi __builtin_ia32_psrlw128 (v8hi, v8hi)
9688 v4si __builtin_ia32_psrld128 (v4si, v4si)
9689 v2di __builtin_ia32_psrlq128 (v2di, v2di)
9690 v8hi __builtin_ia32_psraw128 (v8hi, v8hi)
9691 v4si __builtin_ia32_psrad128 (v4si, v4si)
9692 v2di __builtin_ia32_pslldqi128 (v2di, int)
9693 v8hi __builtin_ia32_psllwi128 (v8hi, int)
9694 v4si __builtin_ia32_pslldi128 (v4si, int)
9695 v2di __builtin_ia32_psllqi128 (v2di, int)
9696 v2di __builtin_ia32_psrldqi128 (v2di, int)
9697 v8hi __builtin_ia32_psrlwi128 (v8hi, int)
9698 v4si __builtin_ia32_psrldi128 (v4si, int)
9699 v2di __builtin_ia32_psrlqi128 (v2di, int)
9700 v8hi __builtin_ia32_psrawi128 (v8hi, int)
9701 v4si __builtin_ia32_psradi128 (v4si, int)
9702 v4si __builtin_ia32_pmaddwd128 (v8hi, v8hi)
9703 v2di __builtin_ia32_movq128 (v2di)
9704 @end smallexample
9705
9706 The following built-in functions are available when @option{-msse3} is used.
9707 All of them generate the machine instruction that is part of the name.
9708
9709 @smallexample
9710 v2df __builtin_ia32_addsubpd (v2df, v2df)
9711 v4sf __builtin_ia32_addsubps (v4sf, v4sf)
9712 v2df __builtin_ia32_haddpd (v2df, v2df)
9713 v4sf __builtin_ia32_haddps (v4sf, v4sf)
9714 v2df __builtin_ia32_hsubpd (v2df, v2df)
9715 v4sf __builtin_ia32_hsubps (v4sf, v4sf)
9716 v16qi __builtin_ia32_lddqu (char const *)
9717 void __builtin_ia32_monitor (void *, unsigned int, unsigned int)
9718 v2df __builtin_ia32_movddup (v2df)
9719 v4sf __builtin_ia32_movshdup (v4sf)
9720 v4sf __builtin_ia32_movsldup (v4sf)
9721 void __builtin_ia32_mwait (unsigned int, unsigned int)
9722 @end smallexample
9723
9724 The following built-in functions are available when @option{-msse3} is used.
9725
9726 @table @code
9727 @item v2df __builtin_ia32_loadddup (double const *)
9728 Generates the @code{movddup} machine instruction as a load from memory.
9729 @end table
9730
9731 The following built-in functions are available when @option{-mssse3} is used.
9732 All of them generate the machine instruction that is part of the name
9733 with MMX registers.
9734
9735 @smallexample
9736 v2si __builtin_ia32_phaddd (v2si, v2si)
9737 v4hi __builtin_ia32_phaddw (v4hi, v4hi)
9738 v4hi __builtin_ia32_phaddsw (v4hi, v4hi)
9739 v2si __builtin_ia32_phsubd (v2si, v2si)
9740 v4hi __builtin_ia32_phsubw (v4hi, v4hi)
9741 v4hi __builtin_ia32_phsubsw (v4hi, v4hi)
9742 v4hi __builtin_ia32_pmaddubsw (v8qi, v8qi)
9743 v4hi __builtin_ia32_pmulhrsw (v4hi, v4hi)
9744 v8qi __builtin_ia32_pshufb (v8qi, v8qi)
9745 v8qi __builtin_ia32_psignb (v8qi, v8qi)
9746 v2si __builtin_ia32_psignd (v2si, v2si)
9747 v4hi __builtin_ia32_psignw (v4hi, v4hi)
9748 v1di __builtin_ia32_palignr (v1di, v1di, int)
9749 v8qi __builtin_ia32_pabsb (v8qi)
9750 v2si __builtin_ia32_pabsd (v2si)
9751 v4hi __builtin_ia32_pabsw (v4hi)
9752 @end smallexample
9753
9754 The following built-in functions are available when @option{-mssse3} is used.
9755 All of them generate the machine instruction that is part of the name
9756 with SSE registers.
9757
9758 @smallexample
9759 v4si __builtin_ia32_phaddd128 (v4si, v4si)
9760 v8hi __builtin_ia32_phaddw128 (v8hi, v8hi)
9761 v8hi __builtin_ia32_phaddsw128 (v8hi, v8hi)
9762 v4si __builtin_ia32_phsubd128 (v4si, v4si)
9763 v8hi __builtin_ia32_phsubw128 (v8hi, v8hi)
9764 v8hi __builtin_ia32_phsubsw128 (v8hi, v8hi)
9765 v8hi __builtin_ia32_pmaddubsw128 (v16qi, v16qi)
9766 v8hi __builtin_ia32_pmulhrsw128 (v8hi, v8hi)
9767 v16qi __builtin_ia32_pshufb128 (v16qi, v16qi)
9768 v16qi __builtin_ia32_psignb128 (v16qi, v16qi)
9769 v4si __builtin_ia32_psignd128 (v4si, v4si)
9770 v8hi __builtin_ia32_psignw128 (v8hi, v8hi)
9771 v2di __builtin_ia32_palignr128 (v2di, v2di, int)
9772 v16qi __builtin_ia32_pabsb128 (v16qi)
9773 v4si __builtin_ia32_pabsd128 (v4si)
9774 v8hi __builtin_ia32_pabsw128 (v8hi)
9775 @end smallexample
9776
9777 The following built-in functions are available when @option{-msse4.1} is
9778 used.  All of them generate the machine instruction that is part of the
9779 name.
9780
9781 @smallexample
9782 v2df __builtin_ia32_blendpd (v2df, v2df, const int)
9783 v4sf __builtin_ia32_blendps (v4sf, v4sf, const int)
9784 v2df __builtin_ia32_blendvpd (v2df, v2df, v2df)
9785 v4sf __builtin_ia32_blendvps (v4sf, v4sf, v4sf)
9786 v2df __builtin_ia32_dppd (v2df, v2df, const int)
9787 v4sf __builtin_ia32_dpps (v4sf, v4sf, const int)
9788 v4sf __builtin_ia32_insertps128 (v4sf, v4sf, const int)
9789 v2di __builtin_ia32_movntdqa (v2di *);
9790 v16qi __builtin_ia32_mpsadbw128 (v16qi, v16qi, const int)
9791 v8hi __builtin_ia32_packusdw128 (v4si, v4si)
9792 v16qi __builtin_ia32_pblendvb128 (v16qi, v16qi, v16qi)
9793 v8hi __builtin_ia32_pblendw128 (v8hi, v8hi, const int)
9794 v2di __builtin_ia32_pcmpeqq (v2di, v2di)
9795 v8hi __builtin_ia32_phminposuw128 (v8hi)
9796 v16qi __builtin_ia32_pmaxsb128 (v16qi, v16qi)
9797 v4si __builtin_ia32_pmaxsd128 (v4si, v4si)
9798 v4si __builtin_ia32_pmaxud128 (v4si, v4si)
9799 v8hi __builtin_ia32_pmaxuw128 (v8hi, v8hi)
9800 v16qi __builtin_ia32_pminsb128 (v16qi, v16qi)
9801 v4si __builtin_ia32_pminsd128 (v4si, v4si)
9802 v4si __builtin_ia32_pminud128 (v4si, v4si)
9803 v8hi __builtin_ia32_pminuw128 (v8hi, v8hi)
9804 v4si __builtin_ia32_pmovsxbd128 (v16qi)
9805 v2di __builtin_ia32_pmovsxbq128 (v16qi)
9806 v8hi __builtin_ia32_pmovsxbw128 (v16qi)
9807 v2di __builtin_ia32_pmovsxdq128 (v4si)
9808 v4si __builtin_ia32_pmovsxwd128 (v8hi)
9809 v2di __builtin_ia32_pmovsxwq128 (v8hi)
9810 v4si __builtin_ia32_pmovzxbd128 (v16qi)
9811 v2di __builtin_ia32_pmovzxbq128 (v16qi)
9812 v8hi __builtin_ia32_pmovzxbw128 (v16qi)
9813 v2di __builtin_ia32_pmovzxdq128 (v4si)
9814 v4si __builtin_ia32_pmovzxwd128 (v8hi)
9815 v2di __builtin_ia32_pmovzxwq128 (v8hi)
9816 v2di __builtin_ia32_pmuldq128 (v4si, v4si)
9817 v4si __builtin_ia32_pmulld128 (v4si, v4si)
9818 int __builtin_ia32_ptestc128 (v2di, v2di)
9819 int __builtin_ia32_ptestnzc128 (v2di, v2di)
9820 int __builtin_ia32_ptestz128 (v2di, v2di)
9821 v2df __builtin_ia32_roundpd (v2df, const int)
9822 v4sf __builtin_ia32_roundps (v4sf, const int)
9823 v2df __builtin_ia32_roundsd (v2df, v2df, const int)
9824 v4sf __builtin_ia32_roundss (v4sf, v4sf, const int)
9825 @end smallexample
9826
9827 The following built-in functions are available when @option{-msse4.1} is
9828 used.
9829
9830 @table @code
9831 @item v4sf __builtin_ia32_vec_set_v4sf (v4sf, float, const int)
9832 Generates the @code{insertps} machine instruction.
9833 @item int __builtin_ia32_vec_ext_v16qi (v16qi, const int)
9834 Generates the @code{pextrb} machine instruction.
9835 @item v16qi __builtin_ia32_vec_set_v16qi (v16qi, int, const int)
9836 Generates the @code{pinsrb} machine instruction.
9837 @item v4si __builtin_ia32_vec_set_v4si (v4si, int, const int)
9838 Generates the @code{pinsrd} machine instruction.
9839 @item v2di __builtin_ia32_vec_set_v2di (v2di, long long, const int)
9840 Generates the @code{pinsrq} machine instruction in 64bit mode.
9841 @end table
9842
9843 The following built-in functions are changed to generate new SSE4.1
9844 instructions when @option{-msse4.1} is used.
9845
9846 @table @code
9847 @item float __builtin_ia32_vec_ext_v4sf (v4sf, const int)
9848 Generates the @code{extractps} machine instruction.
9849 @item int __builtin_ia32_vec_ext_v4si (v4si, const int)
9850 Generates the @code{pextrd} machine instruction.
9851 @item long long __builtin_ia32_vec_ext_v2di (v2di, const int)
9852 Generates the @code{pextrq} machine instruction in 64bit mode.
9853 @end table
9854
9855 The following built-in functions are available when @option{-msse4.2} is
9856 used.  All of them generate the machine instruction that is part of the
9857 name.
9858
9859 @smallexample
9860 v16qi __builtin_ia32_pcmpestrm128 (v16qi, int, v16qi, int, const int)
9861 int __builtin_ia32_pcmpestri128 (v16qi, int, v16qi, int, const int)
9862 int __builtin_ia32_pcmpestria128 (v16qi, int, v16qi, int, const int)
9863 int __builtin_ia32_pcmpestric128 (v16qi, int, v16qi, int, const int)
9864 int __builtin_ia32_pcmpestrio128 (v16qi, int, v16qi, int, const int)
9865 int __builtin_ia32_pcmpestris128 (v16qi, int, v16qi, int, const int)
9866 int __builtin_ia32_pcmpestriz128 (v16qi, int, v16qi, int, const int)
9867 v16qi __builtin_ia32_pcmpistrm128 (v16qi, v16qi, const int)
9868 int __builtin_ia32_pcmpistri128 (v16qi, v16qi, const int)
9869 int __builtin_ia32_pcmpistria128 (v16qi, v16qi, const int)
9870 int __builtin_ia32_pcmpistric128 (v16qi, v16qi, const int)
9871 int __builtin_ia32_pcmpistrio128 (v16qi, v16qi, const int)
9872 int __builtin_ia32_pcmpistris128 (v16qi, v16qi, const int)
9873 int __builtin_ia32_pcmpistriz128 (v16qi, v16qi, const int)
9874 v2di __builtin_ia32_pcmpgtq (v2di, v2di)
9875 @end smallexample
9876
9877 The following built-in functions are available when @option{-msse4.2} is
9878 used.
9879
9880 @table @code
9881 @item unsigned int __builtin_ia32_crc32qi (unsigned int, unsigned char)
9882 Generates the @code{crc32b} machine instruction.
9883 @item unsigned int __builtin_ia32_crc32hi (unsigned int, unsigned short)
9884 Generates the @code{crc32w} machine instruction.
9885 @item unsigned int __builtin_ia32_crc32si (unsigned int, unsigned int)
9886 Generates the @code{crc32l} machine instruction.
9887 @item unsigned long long __builtin_ia32_crc32di (unsigned long long, unsigned long long)
9888 Generates the @code{crc32q} machine instruction.
9889 @end table
9890
9891 The following built-in functions are changed to generate new SSE4.2
9892 instructions when @option{-msse4.2} is used.
9893
9894 @table @code
9895 @item int __builtin_popcount (unsigned int)
9896 Generates the @code{popcntl} machine instruction.
9897 @item int __builtin_popcountl (unsigned long)
9898 Generates the @code{popcntl} or @code{popcntq} machine instruction,
9899 depending on the size of @code{unsigned long}.
9900 @item int __builtin_popcountll (unsigned long long)
9901 Generates the @code{popcntq} machine instruction.
9902 @end table
9903
9904 The following built-in functions are available when @option{-mavx} is
9905 used. All of them generate the machine instruction that is part of the
9906 name.
9907
9908 @smallexample
9909 v4df __builtin_ia32_addpd256 (v4df,v4df)
9910 v8sf __builtin_ia32_addps256 (v8sf,v8sf)
9911 v4df __builtin_ia32_addsubpd256 (v4df,v4df)
9912 v8sf __builtin_ia32_addsubps256 (v8sf,v8sf)
9913 v4df __builtin_ia32_andnpd256 (v4df,v4df)
9914 v8sf __builtin_ia32_andnps256 (v8sf,v8sf)
9915 v4df __builtin_ia32_andpd256 (v4df,v4df)
9916 v8sf __builtin_ia32_andps256 (v8sf,v8sf)
9917 v4df __builtin_ia32_blendpd256 (v4df,v4df,int)
9918 v8sf __builtin_ia32_blendps256 (v8sf,v8sf,int)
9919 v4df __builtin_ia32_blendvpd256 (v4df,v4df,v4df)
9920 v8sf __builtin_ia32_blendvps256 (v8sf,v8sf,v8sf)
9921 v2df __builtin_ia32_cmppd (v2df,v2df,int)
9922 v4df __builtin_ia32_cmppd256 (v4df,v4df,int)
9923 v4sf __builtin_ia32_cmpps (v4sf,v4sf,int)
9924 v8sf __builtin_ia32_cmpps256 (v8sf,v8sf,int)
9925 v2df __builtin_ia32_cmpsd (v2df,v2df,int)
9926 v4sf __builtin_ia32_cmpss (v4sf,v4sf,int)
9927 v4df __builtin_ia32_cvtdq2pd256 (v4si)
9928 v8sf __builtin_ia32_cvtdq2ps256 (v8si)
9929 v4si __builtin_ia32_cvtpd2dq256 (v4df)
9930 v4sf __builtin_ia32_cvtpd2ps256 (v4df)
9931 v8si __builtin_ia32_cvtps2dq256 (v8sf)
9932 v4df __builtin_ia32_cvtps2pd256 (v4sf)
9933 v4si __builtin_ia32_cvttpd2dq256 (v4df)
9934 v8si __builtin_ia32_cvttps2dq256 (v8sf)
9935 v4df __builtin_ia32_divpd256 (v4df,v4df)
9936 v8sf __builtin_ia32_divps256 (v8sf,v8sf)
9937 v8sf __builtin_ia32_dpps256 (v8sf,v8sf,int)
9938 v4df __builtin_ia32_haddpd256 (v4df,v4df)
9939 v8sf __builtin_ia32_haddps256 (v8sf,v8sf)
9940 v4df __builtin_ia32_hsubpd256 (v4df,v4df)
9941 v8sf __builtin_ia32_hsubps256 (v8sf,v8sf)
9942 v32qi __builtin_ia32_lddqu256 (pcchar)
9943 v32qi __builtin_ia32_loaddqu256 (pcchar)
9944 v4df __builtin_ia32_loadupd256 (pcdouble)
9945 v8sf __builtin_ia32_loadups256 (pcfloat)
9946 v2df __builtin_ia32_maskloadpd (pcv2df,v2df)
9947 v4df __builtin_ia32_maskloadpd256 (pcv4df,v4df)
9948 v4sf __builtin_ia32_maskloadps (pcv4sf,v4sf)
9949 v8sf __builtin_ia32_maskloadps256 (pcv8sf,v8sf)
9950 void __builtin_ia32_maskstorepd (pv2df,v2df,v2df)
9951 void __builtin_ia32_maskstorepd256 (pv4df,v4df,v4df)
9952 void __builtin_ia32_maskstoreps (pv4sf,v4sf,v4sf)
9953 void __builtin_ia32_maskstoreps256 (pv8sf,v8sf,v8sf)
9954 v4df __builtin_ia32_maxpd256 (v4df,v4df)
9955 v8sf __builtin_ia32_maxps256 (v8sf,v8sf)
9956 v4df __builtin_ia32_minpd256 (v4df,v4df)
9957 v8sf __builtin_ia32_minps256 (v8sf,v8sf)
9958 v4df __builtin_ia32_movddup256 (v4df)
9959 int __builtin_ia32_movmskpd256 (v4df)
9960 int __builtin_ia32_movmskps256 (v8sf)
9961 v8sf __builtin_ia32_movshdup256 (v8sf)
9962 v8sf __builtin_ia32_movsldup256 (v8sf)
9963 v4df __builtin_ia32_mulpd256 (v4df,v4df)
9964 v8sf __builtin_ia32_mulps256 (v8sf,v8sf)
9965 v4df __builtin_ia32_orpd256 (v4df,v4df)
9966 v8sf __builtin_ia32_orps256 (v8sf,v8sf)
9967 v2df __builtin_ia32_pd_pd256 (v4df)
9968 v4df __builtin_ia32_pd256_pd (v2df)
9969 v4sf __builtin_ia32_ps_ps256 (v8sf)
9970 v8sf __builtin_ia32_ps256_ps (v4sf)
9971 int __builtin_ia32_ptestc256 (v4di,v4di,ptest)
9972 int __builtin_ia32_ptestnzc256 (v4di,v4di,ptest)
9973 int __builtin_ia32_ptestz256 (v4di,v4di,ptest)
9974 v8sf __builtin_ia32_rcpps256 (v8sf)
9975 v4df __builtin_ia32_roundpd256 (v4df,int)
9976 v8sf __builtin_ia32_roundps256 (v8sf,int)
9977 v8sf __builtin_ia32_rsqrtps_nr256 (v8sf)
9978 v8sf __builtin_ia32_rsqrtps256 (v8sf)
9979 v4df __builtin_ia32_shufpd256 (v4df,v4df,int)
9980 v8sf __builtin_ia32_shufps256 (v8sf,v8sf,int)
9981 v4si __builtin_ia32_si_si256 (v8si)
9982 v8si __builtin_ia32_si256_si (v4si)
9983 v4df __builtin_ia32_sqrtpd256 (v4df)
9984 v8sf __builtin_ia32_sqrtps_nr256 (v8sf)
9985 v8sf __builtin_ia32_sqrtps256 (v8sf)
9986 void __builtin_ia32_storedqu256 (pchar,v32qi)
9987 void __builtin_ia32_storeupd256 (pdouble,v4df)
9988 void __builtin_ia32_storeups256 (pfloat,v8sf)
9989 v4df __builtin_ia32_subpd256 (v4df,v4df)
9990 v8sf __builtin_ia32_subps256 (v8sf,v8sf)
9991 v4df __builtin_ia32_unpckhpd256 (v4df,v4df)
9992 v8sf __builtin_ia32_unpckhps256 (v8sf,v8sf)
9993 v4df __builtin_ia32_unpcklpd256 (v4df,v4df)
9994 v8sf __builtin_ia32_unpcklps256 (v8sf,v8sf)
9995 v4df __builtin_ia32_vbroadcastf128_pd256 (pcv2df)
9996 v8sf __builtin_ia32_vbroadcastf128_ps256 (pcv4sf)
9997 v4df __builtin_ia32_vbroadcastsd256 (pcdouble)
9998 v4sf __builtin_ia32_vbroadcastss (pcfloat)
9999 v8sf __builtin_ia32_vbroadcastss256 (pcfloat)
10000 v2df __builtin_ia32_vextractf128_pd256 (v4df,int)
10001 v4sf __builtin_ia32_vextractf128_ps256 (v8sf,int)
10002 v4si __builtin_ia32_vextractf128_si256 (v8si,int)
10003 v4df __builtin_ia32_vinsertf128_pd256 (v4df,v2df,int)
10004 v8sf __builtin_ia32_vinsertf128_ps256 (v8sf,v4sf,int)
10005 v8si __builtin_ia32_vinsertf128_si256 (v8si,v4si,int)
10006 v4df __builtin_ia32_vperm2f128_pd256 (v4df,v4df,int)
10007 v8sf __builtin_ia32_vperm2f128_ps256 (v8sf,v8sf,int)
10008 v8si __builtin_ia32_vperm2f128_si256 (v8si,v8si,int)
10009 v2df __builtin_ia32_vpermil2pd (v2df,v2df,v2di,int)
10010 v4df __builtin_ia32_vpermil2pd256 (v4df,v4df,v4di,int)
10011 v4sf __builtin_ia32_vpermil2ps (v4sf,v4sf,v4si,int)
10012 v8sf __builtin_ia32_vpermil2ps256 (v8sf,v8sf,v8si,int)
10013 v2df __builtin_ia32_vpermilpd (v2df,int)
10014 v4df __builtin_ia32_vpermilpd256 (v4df,int)
10015 v4sf __builtin_ia32_vpermilps (v4sf,int)
10016 v8sf __builtin_ia32_vpermilps256 (v8sf,int)
10017 v2df __builtin_ia32_vpermilvarpd (v2df,v2di)
10018 v4df __builtin_ia32_vpermilvarpd256 (v4df,v4di)
10019 v4sf __builtin_ia32_vpermilvarps (v4sf,v4si)
10020 v8sf __builtin_ia32_vpermilvarps256 (v8sf,v8si)
10021 int __builtin_ia32_vtestcpd (v2df,v2df,ptest)
10022 int __builtin_ia32_vtestcpd256 (v4df,v4df,ptest)
10023 int __builtin_ia32_vtestcps (v4sf,v4sf,ptest)
10024 int __builtin_ia32_vtestcps256 (v8sf,v8sf,ptest)
10025 int __builtin_ia32_vtestnzcpd (v2df,v2df,ptest)
10026 int __builtin_ia32_vtestnzcpd256 (v4df,v4df,ptest)
10027 int __builtin_ia32_vtestnzcps (v4sf,v4sf,ptest)
10028 int __builtin_ia32_vtestnzcps256 (v8sf,v8sf,ptest)
10029 int __builtin_ia32_vtestzpd (v2df,v2df,ptest)
10030 int __builtin_ia32_vtestzpd256 (v4df,v4df,ptest)
10031 int __builtin_ia32_vtestzps (v4sf,v4sf,ptest)
10032 int __builtin_ia32_vtestzps256 (v8sf,v8sf,ptest)
10033 void __builtin_ia32_vzeroall (void)
10034 void __builtin_ia32_vzeroupper (void)
10035 v4df __builtin_ia32_xorpd256 (v4df,v4df)
10036 v8sf __builtin_ia32_xorps256 (v8sf,v8sf)
10037 @end smallexample
10038
10039 The following built-in functions are available when @option{-mavx2} is
10040 used. All of them generate the machine instruction that is part of the
10041 name.
10042
10043 @smallexample
10044 v32qi __builtin_ia32_mpsadbw256 (v32qi,v32qi,v32qi,int)
10045 v32qi __builtin_ia32_pabsb256 (v32qi)
10046 v16hi __builtin_ia32_pabsw256 (v16hi)
10047 v8si __builtin_ia32_pabsd256 (v8si)
10048 v16hi builtin_ia32_packssdw256 (v8si,v8si)
10049 v32qi __builtin_ia32_packsswb256 (v16hi,v16hi)
10050 v16hi __builtin_ia32_packusdw256 (v8si,v8si)
10051 v32qi __builtin_ia32_packuswb256 (v16hi,v16hi)
10052 v32qi__builtin_ia32_paddb256 (v32qi,v32qi)
10053 v16hi __builtin_ia32_paddw256 (v16hi,v16hi)
10054 v8si __builtin_ia32_paddd256 (v8si,v8si)
10055 v4di __builtin_ia32_paddq256 (v4di,v4di)
10056 v32qi __builtin_ia32_paddsb256 (v32qi,v32qi)
10057 v16hi __builtin_ia32_paddsw256 (v16hi,v16hi)
10058 v32qi __builtin_ia32_paddusb256 (v32qi,v32qi)
10059 v16hi __builtin_ia32_paddusw256 (v16hi,v16hi)
10060 v4di __builtin_ia32_palignr256 (v4di,v4di,int)
10061 v4di __builtin_ia32_andsi256 (v4di,v4di)
10062 v4di __builtin_ia32_andnotsi256 (v4di,v4di)
10063 v32qi__builtin_ia32_pavgb256 (v32qi,v32qi)
10064 v16hi __builtin_ia32_pavgw256 (v16hi,v16hi)
10065 v32qi __builtin_ia32_pblendvb256 (v32qi,v32qi,v32qi)
10066 v16hi __builtin_ia32_pblendw256 (v16hi,v16hi,int)
10067 v32qi __builtin_ia32_pcmpeqb256 (v32qi,v32qi)
10068 v16hi __builtin_ia32_pcmpeqw256 (v16hi,v16hi)
10069 v8si __builtin_ia32_pcmpeqd256 (c8si,v8si)
10070 v4di __builtin_ia32_pcmpeqq256 (v4di,v4di)
10071 v32qi __builtin_ia32_pcmpgtb256 (v32qi,v32qi)
10072 v16hi __builtin_ia32_pcmpgtw256 (16hi,v16hi)
10073 v8si __builtin_ia32_pcmpgtd256 (v8si,v8si)
10074 v4di __builtin_ia32_pcmpgtq256 (v4di,v4di)
10075 v16hi __builtin_ia32_phaddw256 (v16hi,v16hi)
10076 v8si __builtin_ia32_phaddd256 (v8si,v8si)
10077 v16hi __builtin_ia32_phaddsw256 (v16hi,v16hi)
10078 v16hi __builtin_ia32_phsubw256 (v16hi,v16hi)
10079 v8si __builtin_ia32_phsubd256 (v8si,v8si)
10080 v16hi __builtin_ia32_phsubsw256 (v16hi,v16hi)
10081 v32qi __builtin_ia32_pmaddubsw256 (v32qi,v32qi)
10082 v16hi __builtin_ia32_pmaddwd256 (v16hi,v16hi)
10083 v32qi __builtin_ia32_pmaxsb256 (v32qi,v32qi)
10084 v16hi __builtin_ia32_pmaxsw256 (v16hi,v16hi)
10085 v8si __builtin_ia32_pmaxsd256 (v8si,v8si)
10086 v32qi __builtin_ia32_pmaxub256 (v32qi,v32qi)
10087 v16hi __builtin_ia32_pmaxuw256 (v16hi,v16hi)
10088 v8si __builtin_ia32_pmaxud256 (v8si,v8si)
10089 v32qi __builtin_ia32_pminsb256 (v32qi,v32qi)
10090 v16hi __builtin_ia32_pminsw256 (v16hi,v16hi)
10091 v8si __builtin_ia32_pminsd256 (v8si,v8si)
10092 v32qi __builtin_ia32_pminub256 (v32qi,v32qi)
10093 v16hi __builtin_ia32_pminuw256 (v16hi,v16hi)
10094 v8si __builtin_ia32_pminud256 (v8si,v8si)
10095 int __builtin_ia32_pmovmskb256 (v32qi)
10096 v16hi __builtin_ia32_pmovsxbw256 (v16qi)
10097 v8si __builtin_ia32_pmovsxbd256 (v16qi)
10098 v4di __builtin_ia32_pmovsxbq256 (v16qi)
10099 v8si __builtin_ia32_pmovsxwd256 (v8hi)
10100 v4di __builtin_ia32_pmovsxwq256 (v8hi)
10101 v4di __builtin_ia32_pmovsxdq256 (v4si)
10102 v16hi __builtin_ia32_pmovzxbw256 (v16qi)
10103 v8si __builtin_ia32_pmovzxbd256 (v16qi)
10104 v4di __builtin_ia32_pmovzxbq256 (v16qi)
10105 v8si __builtin_ia32_pmovzxwd256 (v8hi)
10106 v4di __builtin_ia32_pmovzxwq256 (v8hi)
10107 v4di __builtin_ia32_pmovzxdq256 (v4si)
10108 v4di __builtin_ia32_pmuldq256 (v8si,v8si)
10109 v16hi __builtin_ia32_pmulhrsw256 (v16hi, v16hi)
10110 v16hi __builtin_ia32_pmulhuw256 (v16hi,v16hi)
10111 v16hi __builtin_ia32_pmulhw256 (v16hi,v16hi)
10112 v16hi __builtin_ia32_pmullw256 (v16hi,v16hi)
10113 v8si __builtin_ia32_pmulld256 (v8si,v8si)
10114 v4di __builtin_ia32_pmuludq256 (v8si,v8si)
10115 v4di __builtin_ia32_por256 (v4di,v4di)
10116 v16hi __builtin_ia32_psadbw256 (v32qi,v32qi)
10117 v32qi __builtin_ia32_pshufb256 (v32qi,v32qi)
10118 v8si __builtin_ia32_pshufd256 (v8si,int)
10119 v16hi __builtin_ia32_pshufhw256 (v16hi,int)
10120 v16hi __builtin_ia32_pshuflw256 (v16hi,int)
10121 v32qi __builtin_ia32_psignb256 (v32qi,v32qi)
10122 v16hi __builtin_ia32_psignw256 (v16hi,v16hi)
10123 v8si __builtin_ia32_psignd256 (v8si,v8si)
10124 v4di __builtin_ia32_pslldqi256 (v4di,int)
10125 v16hi __builtin_ia32_psllwi256 (16hi,int)
10126 v16hi __builtin_ia32_psllw256(v16hi,v8hi)
10127 v8si __builtin_ia32_pslldi256 (v8si,int)
10128 v8si __builtin_ia32_pslld256(v8si,v4si)
10129 v4di __builtin_ia32_psllqi256 (v4di,int)
10130 v4di __builtin_ia32_psllq256(v4di,v2di)
10131 v16hi __builtin_ia32_psrawi256 (v16hi,int)
10132 v16hi __builtin_ia32_psraw256 (v16hi,v8hi)
10133 v8si __builtin_ia32_psradi256 (v8si,int)
10134 v8si __builtin_ia32_psrad256 (v8si,v4si)
10135 v4di __builtin_ia32_psrldqi256 (v4di, int)
10136 v16hi __builtin_ia32_psrlwi256 (v16hi,int)
10137 v16hi __builtin_ia32_psrlw256 (v16hi,v8hi)
10138 v8si __builtin_ia32_psrldi256 (v8si,int)
10139 v8si __builtin_ia32_psrld256 (v8si,v4si)
10140 v4di __builtin_ia32_psrlqi256 (v4di,int)
10141 v4di __builtin_ia32_psrlq256(v4di,v2di)
10142 v32qi __builtin_ia32_psubb256 (v32qi,v32qi)
10143 v32hi __builtin_ia32_psubw256 (v16hi,v16hi)
10144 v8si __builtin_ia32_psubd256 (v8si,v8si)
10145 v4di __builtin_ia32_psubq256 (v4di,v4di)
10146 v32qi __builtin_ia32_psubsb256 (v32qi,v32qi)
10147 v16hi __builtin_ia32_psubsw256 (v16hi,v16hi)
10148 v32qi __builtin_ia32_psubusb256 (v32qi,v32qi)
10149 v16hi __builtin_ia32_psubusw256 (v16hi,v16hi)
10150 v32qi __builtin_ia32_punpckhbw256 (v32qi,v32qi)
10151 v16hi __builtin_ia32_punpckhwd256 (v16hi,v16hi)
10152 v8si __builtin_ia32_punpckhdq256 (v8si,v8si)
10153 v4di __builtin_ia32_punpckhqdq256 (v4di,v4di)
10154 v32qi __builtin_ia32_punpcklbw256 (v32qi,v32qi)
10155 v16hi __builtin_ia32_punpcklwd256 (v16hi,v16hi)
10156 v8si __builtin_ia32_punpckldq256 (v8si,v8si)
10157 v4di __builtin_ia32_punpcklqdq256 (v4di,v4di)
10158 v4di __builtin_ia32_pxor256 (v4di,v4di)
10159 v4di __builtin_ia32_movntdqa256 (pv4di)
10160 v4sf __builtin_ia32_vbroadcastss_ps (v4sf)
10161 v8sf __builtin_ia32_vbroadcastss_ps256 (v4sf)
10162 v4df __builtin_ia32_vbroadcastsd_pd256 (v2df)
10163 v4di __builtin_ia32_vbroadcastsi256 (v2di)
10164 v4si __builtin_ia32_pblendd128 (v4si,v4si)
10165 v8si __builtin_ia32_pblendd256 (v8si,v8si)
10166 v32qi __builtin_ia32_pbroadcastb256 (v16qi)
10167 v16hi __builtin_ia32_pbroadcastw256 (v8hi)
10168 v8si __builtin_ia32_pbroadcastd256 (v4si)
10169 v4di __builtin_ia32_pbroadcastq256 (v2di)
10170 v16qi __builtin_ia32_pbroadcastb128 (v16qi)
10171 v8hi __builtin_ia32_pbroadcastw128 (v8hi)
10172 v4si __builtin_ia32_pbroadcastd128 (v4si)
10173 v2di __builtin_ia32_pbroadcastq128 (v2di)
10174 v8si __builtin_ia32_permvarsi256 (v8si,v8si)
10175 v4df __builtin_ia32_permdf256 (v4df,int)
10176 v8sf __builtin_ia32_permvarsf256 (v8sf,v8sf)
10177 v4di __builtin_ia32_permdi256 (v4di,int)
10178 v4di __builtin_ia32_permti256 (v4di,v4di,int)
10179 v4di __builtin_ia32_extract128i256 (v4di,int)
10180 v4di __builtin_ia32_insert128i256 (v4di,v2di,int)
10181 v8si __builtin_ia32_maskloadd256 (pcv8si,v8si)
10182 v4di __builtin_ia32_maskloadq256 (pcv4di,v4di)
10183 v4si __builtin_ia32_maskloadd (pcv4si,v4si)
10184 v2di __builtin_ia32_maskloadq (pcv2di,v2di)
10185 void __builtin_ia32_maskstored256 (pv8si,v8si,v8si)
10186 void __builtin_ia32_maskstoreq256 (pv4di,v4di,v4di)
10187 void __builtin_ia32_maskstored (pv4si,v4si,v4si)
10188 void __builtin_ia32_maskstoreq (pv2di,v2di,v2di)
10189 v8si __builtin_ia32_psllv8si (v8si,v8si)
10190 v4si __builtin_ia32_psllv4si (v4si,v4si)
10191 v4di __builtin_ia32_psllv4di (v4di,v4di)
10192 v2di __builtin_ia32_psllv2di (v2di,v2di)
10193 v8si __builtin_ia32_psrav8si (v8si,v8si)
10194 v4si __builtin_ia32_psrav4si (v4si,v4si)
10195 v8si __builtin_ia32_psrlv8si (v8si,v8si)
10196 v4si __builtin_ia32_psrlv4si (v4si,v4si)
10197 v4di __builtin_ia32_psrlv4di (v4di,v4di)
10198 v2di __builtin_ia32_psrlv2di (v2di,v2di)
10199 v2df __builtin_ia32_gathersiv2df (v2df, pcdouble,v4si,v2df,int)
10200 v4df __builtin_ia32_gathersiv4df (v4df, pcdouble,v4si,v4df,int)
10201 v2df __builtin_ia32_gatherdiv2df (v2df, pcdouble,v2di,v2df,int)
10202 v4df __builtin_ia32_gatherdiv4df (v4df, pcdouble,v4di,v4df,int)
10203 v4sf __builtin_ia32_gathersiv4sf (v4sf, pcfloat,v4si,v4sf,int)
10204 v8sf __builtin_ia32_gathersiv8sf (v8sf, pcfloat,v8si,v8sf,int)
10205 v4sf __builtin_ia32_gatherdiv4sf (v4sf, pcfloat,v2di,v4sf,int)
10206 v4sf __builtin_ia32_gatherdiv4sf256 (v4sf, pcfloat,v4di,v4sf,int)
10207 v2di __builtin_ia32_gathersiv2di (v2di, pcint64,v4si,v2di,int)
10208 v4di __builtin_ia32_gathersiv4di (v4di, pcint64,v4si,v4di,int)
10209 v2di __builtin_ia32_gatherdiv2di (v2di, pcint64,v2di,v2di,int)
10210 v4di __builtin_ia32_gatherdiv4di (v4di, pcint64,v4di,v4di,int)
10211 v4si __builtin_ia32_gathersiv4si (v4si, pcint,v4si,v4si,int)
10212 v8si __builtin_ia32_gathersiv8si (v8si, pcint,v8si,v8si,int)
10213 v4si __builtin_ia32_gatherdiv4si (v4si, pcint,v2di,v4si,int)
10214 v4si __builtin_ia32_gatherdiv4si256 (v4si, pcint,v4di,v4si,int)
10215 @end smallexample
10216
10217 The following built-in functions are available when @option{-maes} is
10218 used.  All of them generate the machine instruction that is part of the
10219 name.
10220
10221 @smallexample
10222 v2di __builtin_ia32_aesenc128 (v2di, v2di)
10223 v2di __builtin_ia32_aesenclast128 (v2di, v2di)
10224 v2di __builtin_ia32_aesdec128 (v2di, v2di)
10225 v2di __builtin_ia32_aesdeclast128 (v2di, v2di)
10226 v2di __builtin_ia32_aeskeygenassist128 (v2di, const int)
10227 v2di __builtin_ia32_aesimc128 (v2di)
10228 @end smallexample
10229
10230 The following built-in function is available when @option{-mpclmul} is
10231 used.
10232
10233 @table @code
10234 @item v2di __builtin_ia32_pclmulqdq128 (v2di, v2di, const int)
10235 Generates the @code{pclmulqdq} machine instruction.
10236 @end table
10237
10238 The following built-in function is available when @option{-mfsgsbase} is
10239 used.  All of them generate the machine instruction that is part of the
10240 name.
10241
10242 @smallexample
10243 unsigned int __builtin_ia32_rdfsbase32 (void)
10244 unsigned long long __builtin_ia32_rdfsbase64 (void)
10245 unsigned int __builtin_ia32_rdgsbase32 (void)
10246 unsigned long long __builtin_ia32_rdgsbase64 (void)
10247 void _writefsbase_u32 (unsigned int)
10248 void _writefsbase_u64 (unsigned long long)
10249 void _writegsbase_u32 (unsigned int)
10250 void _writegsbase_u64 (unsigned long long)
10251 @end smallexample
10252
10253 The following built-in function is available when @option{-mrdrnd} is
10254 used.  All of them generate the machine instruction that is part of the
10255 name.
10256
10257 @smallexample
10258 unsigned int __builtin_ia32_rdrand16_step (unsigned short *)
10259 unsigned int __builtin_ia32_rdrand32_step (unsigned int *)
10260 unsigned int __builtin_ia32_rdrand64_step (unsigned long long *)
10261 @end smallexample
10262
10263 The following built-in functions are available when @option{-msse4a} is used.
10264 All of them generate the machine instruction that is part of the name.
10265
10266 @smallexample
10267 void __builtin_ia32_movntsd (double *, v2df)
10268 void __builtin_ia32_movntss (float *, v4sf)
10269 v2di __builtin_ia32_extrq  (v2di, v16qi)
10270 v2di __builtin_ia32_extrqi (v2di, const unsigned int, const unsigned int)
10271 v2di __builtin_ia32_insertq (v2di, v2di)
10272 v2di __builtin_ia32_insertqi (v2di, v2di, const unsigned int, const unsigned int)
10273 @end smallexample
10274
10275 The following built-in functions are available when @option{-mxop} is used.
10276 @smallexample
10277 v2df __builtin_ia32_vfrczpd (v2df)
10278 v4sf __builtin_ia32_vfrczps (v4sf)
10279 v2df __builtin_ia32_vfrczsd (v2df, v2df)
10280 v4sf __builtin_ia32_vfrczss (v4sf, v4sf)
10281 v4df __builtin_ia32_vfrczpd256 (v4df)
10282 v8sf __builtin_ia32_vfrczps256 (v8sf)
10283 v2di __builtin_ia32_vpcmov (v2di, v2di, v2di)
10284 v2di __builtin_ia32_vpcmov_v2di (v2di, v2di, v2di)
10285 v4si __builtin_ia32_vpcmov_v4si (v4si, v4si, v4si)
10286 v8hi __builtin_ia32_vpcmov_v8hi (v8hi, v8hi, v8hi)
10287 v16qi __builtin_ia32_vpcmov_v16qi (v16qi, v16qi, v16qi)
10288 v2df __builtin_ia32_vpcmov_v2df (v2df, v2df, v2df)
10289 v4sf __builtin_ia32_vpcmov_v4sf (v4sf, v4sf, v4sf)
10290 v4di __builtin_ia32_vpcmov_v4di256 (v4di, v4di, v4di)
10291 v8si __builtin_ia32_vpcmov_v8si256 (v8si, v8si, v8si)
10292 v16hi __builtin_ia32_vpcmov_v16hi256 (v16hi, v16hi, v16hi)
10293 v32qi __builtin_ia32_vpcmov_v32qi256 (v32qi, v32qi, v32qi)
10294 v4df __builtin_ia32_vpcmov_v4df256 (v4df, v4df, v4df)
10295 v8sf __builtin_ia32_vpcmov_v8sf256 (v8sf, v8sf, v8sf)
10296 v16qi __builtin_ia32_vpcomeqb (v16qi, v16qi)
10297 v8hi __builtin_ia32_vpcomeqw (v8hi, v8hi)
10298 v4si __builtin_ia32_vpcomeqd (v4si, v4si)
10299 v2di __builtin_ia32_vpcomeqq (v2di, v2di)
10300 v16qi __builtin_ia32_vpcomequb (v16qi, v16qi)
10301 v4si __builtin_ia32_vpcomequd (v4si, v4si)
10302 v2di __builtin_ia32_vpcomequq (v2di, v2di)
10303 v8hi __builtin_ia32_vpcomequw (v8hi, v8hi)
10304 v8hi __builtin_ia32_vpcomeqw (v8hi, v8hi)
10305 v16qi __builtin_ia32_vpcomfalseb (v16qi, v16qi)
10306 v4si __builtin_ia32_vpcomfalsed (v4si, v4si)
10307 v2di __builtin_ia32_vpcomfalseq (v2di, v2di)
10308 v16qi __builtin_ia32_vpcomfalseub (v16qi, v16qi)
10309 v4si __builtin_ia32_vpcomfalseud (v4si, v4si)
10310 v2di __builtin_ia32_vpcomfalseuq (v2di, v2di)
10311 v8hi __builtin_ia32_vpcomfalseuw (v8hi, v8hi)
10312 v8hi __builtin_ia32_vpcomfalsew (v8hi, v8hi)
10313 v16qi __builtin_ia32_vpcomgeb (v16qi, v16qi)
10314 v4si __builtin_ia32_vpcomged (v4si, v4si)
10315 v2di __builtin_ia32_vpcomgeq (v2di, v2di)
10316 v16qi __builtin_ia32_vpcomgeub (v16qi, v16qi)
10317 v4si __builtin_ia32_vpcomgeud (v4si, v4si)
10318 v2di __builtin_ia32_vpcomgeuq (v2di, v2di)
10319 v8hi __builtin_ia32_vpcomgeuw (v8hi, v8hi)
10320 v8hi __builtin_ia32_vpcomgew (v8hi, v8hi)
10321 v16qi __builtin_ia32_vpcomgtb (v16qi, v16qi)
10322 v4si __builtin_ia32_vpcomgtd (v4si, v4si)
10323 v2di __builtin_ia32_vpcomgtq (v2di, v2di)
10324 v16qi __builtin_ia32_vpcomgtub (v16qi, v16qi)
10325 v4si __builtin_ia32_vpcomgtud (v4si, v4si)
10326 v2di __builtin_ia32_vpcomgtuq (v2di, v2di)
10327 v8hi __builtin_ia32_vpcomgtuw (v8hi, v8hi)
10328 v8hi __builtin_ia32_vpcomgtw (v8hi, v8hi)
10329 v16qi __builtin_ia32_vpcomleb (v16qi, v16qi)
10330 v4si __builtin_ia32_vpcomled (v4si, v4si)
10331 v2di __builtin_ia32_vpcomleq (v2di, v2di)
10332 v16qi __builtin_ia32_vpcomleub (v16qi, v16qi)
10333 v4si __builtin_ia32_vpcomleud (v4si, v4si)
10334 v2di __builtin_ia32_vpcomleuq (v2di, v2di)
10335 v8hi __builtin_ia32_vpcomleuw (v8hi, v8hi)
10336 v8hi __builtin_ia32_vpcomlew (v8hi, v8hi)
10337 v16qi __builtin_ia32_vpcomltb (v16qi, v16qi)
10338 v4si __builtin_ia32_vpcomltd (v4si, v4si)
10339 v2di __builtin_ia32_vpcomltq (v2di, v2di)
10340 v16qi __builtin_ia32_vpcomltub (v16qi, v16qi)
10341 v4si __builtin_ia32_vpcomltud (v4si, v4si)
10342 v2di __builtin_ia32_vpcomltuq (v2di, v2di)
10343 v8hi __builtin_ia32_vpcomltuw (v8hi, v8hi)
10344 v8hi __builtin_ia32_vpcomltw (v8hi, v8hi)
10345 v16qi __builtin_ia32_vpcomneb (v16qi, v16qi)
10346 v4si __builtin_ia32_vpcomned (v4si, v4si)
10347 v2di __builtin_ia32_vpcomneq (v2di, v2di)
10348 v16qi __builtin_ia32_vpcomneub (v16qi, v16qi)
10349 v4si __builtin_ia32_vpcomneud (v4si, v4si)
10350 v2di __builtin_ia32_vpcomneuq (v2di, v2di)
10351 v8hi __builtin_ia32_vpcomneuw (v8hi, v8hi)
10352 v8hi __builtin_ia32_vpcomnew (v8hi, v8hi)
10353 v16qi __builtin_ia32_vpcomtrueb (v16qi, v16qi)
10354 v4si __builtin_ia32_vpcomtrued (v4si, v4si)
10355 v2di __builtin_ia32_vpcomtrueq (v2di, v2di)
10356 v16qi __builtin_ia32_vpcomtrueub (v16qi, v16qi)
10357 v4si __builtin_ia32_vpcomtrueud (v4si, v4si)
10358 v2di __builtin_ia32_vpcomtrueuq (v2di, v2di)
10359 v8hi __builtin_ia32_vpcomtrueuw (v8hi, v8hi)
10360 v8hi __builtin_ia32_vpcomtruew (v8hi, v8hi)
10361 v4si __builtin_ia32_vphaddbd (v16qi)
10362 v2di __builtin_ia32_vphaddbq (v16qi)
10363 v8hi __builtin_ia32_vphaddbw (v16qi)
10364 v2di __builtin_ia32_vphadddq (v4si)
10365 v4si __builtin_ia32_vphaddubd (v16qi)
10366 v2di __builtin_ia32_vphaddubq (v16qi)
10367 v8hi __builtin_ia32_vphaddubw (v16qi)
10368 v2di __builtin_ia32_vphaddudq (v4si)
10369 v4si __builtin_ia32_vphadduwd (v8hi)
10370 v2di __builtin_ia32_vphadduwq (v8hi)
10371 v4si __builtin_ia32_vphaddwd (v8hi)
10372 v2di __builtin_ia32_vphaddwq (v8hi)
10373 v8hi __builtin_ia32_vphsubbw (v16qi)
10374 v2di __builtin_ia32_vphsubdq (v4si)
10375 v4si __builtin_ia32_vphsubwd (v8hi)
10376 v4si __builtin_ia32_vpmacsdd (v4si, v4si, v4si)
10377 v2di __builtin_ia32_vpmacsdqh (v4si, v4si, v2di)
10378 v2di __builtin_ia32_vpmacsdql (v4si, v4si, v2di)
10379 v4si __builtin_ia32_vpmacssdd (v4si, v4si, v4si)
10380 v2di __builtin_ia32_vpmacssdqh (v4si, v4si, v2di)
10381 v2di __builtin_ia32_vpmacssdql (v4si, v4si, v2di)
10382 v4si __builtin_ia32_vpmacsswd (v8hi, v8hi, v4si)
10383 v8hi __builtin_ia32_vpmacssww (v8hi, v8hi, v8hi)
10384 v4si __builtin_ia32_vpmacswd (v8hi, v8hi, v4si)
10385 v8hi __builtin_ia32_vpmacsww (v8hi, v8hi, v8hi)
10386 v4si __builtin_ia32_vpmadcsswd (v8hi, v8hi, v4si)
10387 v4si __builtin_ia32_vpmadcswd (v8hi, v8hi, v4si)
10388 v16qi __builtin_ia32_vpperm (v16qi, v16qi, v16qi)
10389 v16qi __builtin_ia32_vprotb (v16qi, v16qi)
10390 v4si __builtin_ia32_vprotd (v4si, v4si)
10391 v2di __builtin_ia32_vprotq (v2di, v2di)
10392 v8hi __builtin_ia32_vprotw (v8hi, v8hi)
10393 v16qi __builtin_ia32_vpshab (v16qi, v16qi)
10394 v4si __builtin_ia32_vpshad (v4si, v4si)
10395 v2di __builtin_ia32_vpshaq (v2di, v2di)
10396 v8hi __builtin_ia32_vpshaw (v8hi, v8hi)
10397 v16qi __builtin_ia32_vpshlb (v16qi, v16qi)
10398 v4si __builtin_ia32_vpshld (v4si, v4si)
10399 v2di __builtin_ia32_vpshlq (v2di, v2di)
10400 v8hi __builtin_ia32_vpshlw (v8hi, v8hi)
10401 @end smallexample
10402
10403 The following built-in functions are available when @option{-mfma4} is used.
10404 All of them generate the machine instruction that is part of the name
10405 with MMX registers.
10406
10407 @smallexample
10408 v2df __builtin_ia32_fmaddpd (v2df, v2df, v2df)
10409 v4sf __builtin_ia32_fmaddps (v4sf, v4sf, v4sf)
10410 v2df __builtin_ia32_fmaddsd (v2df, v2df, v2df)
10411 v4sf __builtin_ia32_fmaddss (v4sf, v4sf, v4sf)
10412 v2df __builtin_ia32_fmsubpd (v2df, v2df, v2df)
10413 v4sf __builtin_ia32_fmsubps (v4sf, v4sf, v4sf)
10414 v2df __builtin_ia32_fmsubsd (v2df, v2df, v2df)
10415 v4sf __builtin_ia32_fmsubss (v4sf, v4sf, v4sf)
10416 v2df __builtin_ia32_fnmaddpd (v2df, v2df, v2df)
10417 v4sf __builtin_ia32_fnmaddps (v4sf, v4sf, v4sf)
10418 v2df __builtin_ia32_fnmaddsd (v2df, v2df, v2df)
10419 v4sf __builtin_ia32_fnmaddss (v4sf, v4sf, v4sf)
10420 v2df __builtin_ia32_fnmsubpd (v2df, v2df, v2df)
10421 v4sf __builtin_ia32_fnmsubps (v4sf, v4sf, v4sf)
10422 v2df __builtin_ia32_fnmsubsd (v2df, v2df, v2df)
10423 v4sf __builtin_ia32_fnmsubss (v4sf, v4sf, v4sf)
10424 v2df __builtin_ia32_fmaddsubpd  (v2df, v2df, v2df)
10425 v4sf __builtin_ia32_fmaddsubps  (v4sf, v4sf, v4sf)
10426 v2df __builtin_ia32_fmsubaddpd  (v2df, v2df, v2df)
10427 v4sf __builtin_ia32_fmsubaddps  (v4sf, v4sf, v4sf)
10428 v4df __builtin_ia32_fmaddpd256 (v4df, v4df, v4df)
10429 v8sf __builtin_ia32_fmaddps256 (v8sf, v8sf, v8sf)
10430 v4df __builtin_ia32_fmsubpd256 (v4df, v4df, v4df)
10431 v8sf __builtin_ia32_fmsubps256 (v8sf, v8sf, v8sf)
10432 v4df __builtin_ia32_fnmaddpd256 (v4df, v4df, v4df)
10433 v8sf __builtin_ia32_fnmaddps256 (v8sf, v8sf, v8sf)
10434 v4df __builtin_ia32_fnmsubpd256 (v4df, v4df, v4df)
10435 v8sf __builtin_ia32_fnmsubps256 (v8sf, v8sf, v8sf)
10436 v4df __builtin_ia32_fmaddsubpd256 (v4df, v4df, v4df)
10437 v8sf __builtin_ia32_fmaddsubps256 (v8sf, v8sf, v8sf)
10438 v4df __builtin_ia32_fmsubaddpd256 (v4df, v4df, v4df)
10439 v8sf __builtin_ia32_fmsubaddps256 (v8sf, v8sf, v8sf)
10440
10441 @end smallexample
10442
10443 The following built-in functions are available when @option{-mlwp} is used.
10444
10445 @smallexample
10446 void __builtin_ia32_llwpcb16 (void *);
10447 void __builtin_ia32_llwpcb32 (void *);
10448 void __builtin_ia32_llwpcb64 (void *);
10449 void * __builtin_ia32_llwpcb16 (void);
10450 void * __builtin_ia32_llwpcb32 (void);
10451 void * __builtin_ia32_llwpcb64 (void);
10452 void __builtin_ia32_lwpval16 (unsigned short, unsigned int, unsigned short)
10453 void __builtin_ia32_lwpval32 (unsigned int, unsigned int, unsigned int)
10454 void __builtin_ia32_lwpval64 (unsigned __int64, unsigned int, unsigned int)
10455 unsigned char __builtin_ia32_lwpins16 (unsigned short, unsigned int, unsigned short)
10456 unsigned char __builtin_ia32_lwpins32 (unsigned int, unsigned int, unsigned int)
10457 unsigned char __builtin_ia32_lwpins64 (unsigned __int64, unsigned int, unsigned int)
10458 @end smallexample
10459
10460 The following built-in functions are available when @option{-mbmi} is used.
10461 All of them generate the machine instruction that is part of the name.
10462 @smallexample
10463 unsigned int __builtin_ia32_bextr_u32(unsigned int, unsigned int);
10464 unsigned long long __builtin_ia32_bextr_u64 (unsigned long long, unsigned long long);
10465 @end smallexample
10466
10467 The following built-in functions are available when @option{-mbmi2} is used.
10468 All of them generate the machine instruction that is part of the name.
10469 @smallexample
10470 unsigned int _bzhi_u32 (unsigned int, unsigned int)
10471 unsigned int _pdep_u32 (unsigned int, unsigned int)
10472 unsigned int _pext_u32 (unsigned int, unsigned int)
10473 unsigned long long _bzhi_u64 (unsigned long long, unsigned long long)
10474 unsigned long long _pdep_u64 (unsigned long long, unsigned long long)
10475 unsigned long long _pext_u64 (unsigned long long, unsigned long long)
10476 @end smallexample
10477
10478 The following built-in functions are available when @option{-mlzcnt} is used.
10479 All of them generate the machine instruction that is part of the name.
10480 @smallexample
10481 unsigned short __builtin_ia32_lzcnt_16(unsigned short);
10482 unsigned int __builtin_ia32_lzcnt_u32(unsigned int);
10483 unsigned long long __builtin_ia32_lzcnt_u64 (unsigned long long);
10484 @end smallexample
10485
10486 The following built-in functions are available when @option{-mtbm} is used.
10487 Both of them generate the immediate form of the bextr machine instruction.
10488 @smallexample
10489 unsigned int __builtin_ia32_bextri_u32 (unsigned int, const unsigned int);
10490 unsigned long long __builtin_ia32_bextri_u64 (unsigned long long, const unsigned long long);
10491 @end smallexample
10492
10493
10494 The following built-in functions are available when @option{-m3dnow} is used.
10495 All of them generate the machine instruction that is part of the name.
10496
10497 @smallexample
10498 void __builtin_ia32_femms (void)
10499 v8qi __builtin_ia32_pavgusb (v8qi, v8qi)
10500 v2si __builtin_ia32_pf2id (v2sf)
10501 v2sf __builtin_ia32_pfacc (v2sf, v2sf)
10502 v2sf __builtin_ia32_pfadd (v2sf, v2sf)
10503 v2si __builtin_ia32_pfcmpeq (v2sf, v2sf)
10504 v2si __builtin_ia32_pfcmpge (v2sf, v2sf)
10505 v2si __builtin_ia32_pfcmpgt (v2sf, v2sf)
10506 v2sf __builtin_ia32_pfmax (v2sf, v2sf)
10507 v2sf __builtin_ia32_pfmin (v2sf, v2sf)
10508 v2sf __builtin_ia32_pfmul (v2sf, v2sf)
10509 v2sf __builtin_ia32_pfrcp (v2sf)
10510 v2sf __builtin_ia32_pfrcpit1 (v2sf, v2sf)
10511 v2sf __builtin_ia32_pfrcpit2 (v2sf, v2sf)
10512 v2sf __builtin_ia32_pfrsqrt (v2sf)
10513 v2sf __builtin_ia32_pfrsqrtit1 (v2sf, v2sf)
10514 v2sf __builtin_ia32_pfsub (v2sf, v2sf)
10515 v2sf __builtin_ia32_pfsubr (v2sf, v2sf)
10516 v2sf __builtin_ia32_pi2fd (v2si)
10517 v4hi __builtin_ia32_pmulhrw (v4hi, v4hi)
10518 @end smallexample
10519
10520 The following built-in functions are available when both @option{-m3dnow}
10521 and @option{-march=athlon} are used.  All of them generate the machine
10522 instruction that is part of the name.
10523
10524 @smallexample
10525 v2si __builtin_ia32_pf2iw (v2sf)
10526 v2sf __builtin_ia32_pfnacc (v2sf, v2sf)
10527 v2sf __builtin_ia32_pfpnacc (v2sf, v2sf)
10528 v2sf __builtin_ia32_pi2fw (v2si)
10529 v2sf __builtin_ia32_pswapdsf (v2sf)
10530 v2si __builtin_ia32_pswapdsi (v2si)
10531 @end smallexample
10532
10533 @node MIPS DSP Built-in Functions
10534 @subsection MIPS DSP Built-in Functions
10535
10536 The MIPS DSP Application-Specific Extension (ASE) includes new
10537 instructions that are designed to improve the performance of DSP and
10538 media applications.  It provides instructions that operate on packed
10539 8-bit/16-bit integer data, Q7, Q15 and Q31 fractional data.
10540
10541 GCC supports MIPS DSP operations using both the generic
10542 vector extensions (@pxref{Vector Extensions}) and a collection of
10543 MIPS-specific built-in functions.  Both kinds of support are
10544 enabled by the @option{-mdsp} command-line option.
10545
10546 Revision 2 of the ASE was introduced in the second half of 2006.
10547 This revision adds extra instructions to the original ASE, but is
10548 otherwise backwards-compatible with it.  You can select revision 2
10549 using the command-line option @option{-mdspr2}; this option implies
10550 @option{-mdsp}.
10551
10552 The SCOUNT and POS bits of the DSP control register are global.  The
10553 WRDSP, EXTPDP, EXTPDPV and MTHLIP instructions modify the SCOUNT and
10554 POS bits.  During optimization, the compiler will not delete these
10555 instructions and it will not delete calls to functions containing
10556 these instructions.
10557
10558 At present, GCC only provides support for operations on 32-bit
10559 vectors.  The vector type associated with 8-bit integer data is
10560 usually called @code{v4i8}, the vector type associated with Q7
10561 is usually called @code{v4q7}, the vector type associated with 16-bit
10562 integer data is usually called @code{v2i16}, and the vector type
10563 associated with Q15 is usually called @code{v2q15}.  They can be
10564 defined in C as follows:
10565
10566 @smallexample
10567 typedef signed char v4i8 __attribute__ ((vector_size(4)));
10568 typedef signed char v4q7 __attribute__ ((vector_size(4)));
10569 typedef short v2i16 __attribute__ ((vector_size(4)));
10570 typedef short v2q15 __attribute__ ((vector_size(4)));
10571 @end smallexample
10572
10573 @code{v4i8}, @code{v4q7}, @code{v2i16} and @code{v2q15} values are
10574 initialized in the same way as aggregates.  For example:
10575
10576 @smallexample
10577 v4i8 a = @{1, 2, 3, 4@};
10578 v4i8 b;
10579 b = (v4i8) @{5, 6, 7, 8@};
10580
10581 v2q15 c = @{0x0fcb, 0x3a75@};
10582 v2q15 d;
10583 d = (v2q15) @{0.1234 * 0x1.0p15, 0.4567 * 0x1.0p15@};
10584 @end smallexample
10585
10586 @emph{Note:} The CPU's endianness determines the order in which values
10587 are packed.  On little-endian targets, the first value is the least
10588 significant and the last value is the most significant.  The opposite
10589 order applies to big-endian targets.  For example, the code above will
10590 set the lowest byte of @code{a} to @code{1} on little-endian targets
10591 and @code{4} on big-endian targets.
10592
10593 @emph{Note:} Q7, Q15 and Q31 values must be initialized with their integer
10594 representation.  As shown in this example, the integer representation
10595 of a Q7 value can be obtained by multiplying the fractional value by
10596 @code{0x1.0p7}.  The equivalent for Q15 values is to multiply by
10597 @code{0x1.0p15}.  The equivalent for Q31 values is to multiply by
10598 @code{0x1.0p31}.
10599
10600 The table below lists the @code{v4i8} and @code{v2q15} operations for which
10601 hardware support exists.  @code{a} and @code{b} are @code{v4i8} values,
10602 and @code{c} and @code{d} are @code{v2q15} values.
10603
10604 @multitable @columnfractions .50 .50
10605 @item C code @tab MIPS instruction
10606 @item @code{a + b} @tab @code{addu.qb}
10607 @item @code{c + d} @tab @code{addq.ph}
10608 @item @code{a - b} @tab @code{subu.qb}
10609 @item @code{c - d} @tab @code{subq.ph}
10610 @end multitable
10611
10612 The table below lists the @code{v2i16} operation for which
10613 hardware support exists for the DSP ASE REV 2.  @code{e} and @code{f} are
10614 @code{v2i16} values.
10615
10616 @multitable @columnfractions .50 .50
10617 @item C code @tab MIPS instruction
10618 @item @code{e * f} @tab @code{mul.ph}
10619 @end multitable
10620
10621 It is easier to describe the DSP built-in functions if we first define
10622 the following types:
10623
10624 @smallexample
10625 typedef int q31;
10626 typedef int i32;
10627 typedef unsigned int ui32;
10628 typedef long long a64;
10629 @end smallexample
10630
10631 @code{q31} and @code{i32} are actually the same as @code{int}, but we
10632 use @code{q31} to indicate a Q31 fractional value and @code{i32} to
10633 indicate a 32-bit integer value.  Similarly, @code{a64} is the same as
10634 @code{long long}, but we use @code{a64} to indicate values that will
10635 be placed in one of the four DSP accumulators (@code{$ac0},
10636 @code{$ac1}, @code{$ac2} or @code{$ac3}).
10637
10638 Also, some built-in functions prefer or require immediate numbers as
10639 parameters, because the corresponding DSP instructions accept both immediate
10640 numbers and register operands, or accept immediate numbers only.  The
10641 immediate parameters are listed as follows.
10642
10643 @smallexample
10644 imm0_3: 0 to 3.
10645 imm0_7: 0 to 7.
10646 imm0_15: 0 to 15.
10647 imm0_31: 0 to 31.
10648 imm0_63: 0 to 63.
10649 imm0_255: 0 to 255.
10650 imm_n32_31: -32 to 31.
10651 imm_n512_511: -512 to 511.
10652 @end smallexample
10653
10654 The following built-in functions map directly to a particular MIPS DSP
10655 instruction.  Please refer to the architecture specification
10656 for details on what each instruction does.
10657
10658 @smallexample
10659 v2q15 __builtin_mips_addq_ph (v2q15, v2q15)
10660 v2q15 __builtin_mips_addq_s_ph (v2q15, v2q15)
10661 q31 __builtin_mips_addq_s_w (q31, q31)
10662 v4i8 __builtin_mips_addu_qb (v4i8, v4i8)
10663 v4i8 __builtin_mips_addu_s_qb (v4i8, v4i8)
10664 v2q15 __builtin_mips_subq_ph (v2q15, v2q15)
10665 v2q15 __builtin_mips_subq_s_ph (v2q15, v2q15)
10666 q31 __builtin_mips_subq_s_w (q31, q31)
10667 v4i8 __builtin_mips_subu_qb (v4i8, v4i8)
10668 v4i8 __builtin_mips_subu_s_qb (v4i8, v4i8)
10669 i32 __builtin_mips_addsc (i32, i32)
10670 i32 __builtin_mips_addwc (i32, i32)
10671 i32 __builtin_mips_modsub (i32, i32)
10672 i32 __builtin_mips_raddu_w_qb (v4i8)
10673 v2q15 __builtin_mips_absq_s_ph (v2q15)
10674 q31 __builtin_mips_absq_s_w (q31)
10675 v4i8 __builtin_mips_precrq_qb_ph (v2q15, v2q15)
10676 v2q15 __builtin_mips_precrq_ph_w (q31, q31)
10677 v2q15 __builtin_mips_precrq_rs_ph_w (q31, q31)
10678 v4i8 __builtin_mips_precrqu_s_qb_ph (v2q15, v2q15)
10679 q31 __builtin_mips_preceq_w_phl (v2q15)
10680 q31 __builtin_mips_preceq_w_phr (v2q15)
10681 v2q15 __builtin_mips_precequ_ph_qbl (v4i8)
10682 v2q15 __builtin_mips_precequ_ph_qbr (v4i8)
10683 v2q15 __builtin_mips_precequ_ph_qbla (v4i8)
10684 v2q15 __builtin_mips_precequ_ph_qbra (v4i8)
10685 v2q15 __builtin_mips_preceu_ph_qbl (v4i8)
10686 v2q15 __builtin_mips_preceu_ph_qbr (v4i8)
10687 v2q15 __builtin_mips_preceu_ph_qbla (v4i8)
10688 v2q15 __builtin_mips_preceu_ph_qbra (v4i8)
10689 v4i8 __builtin_mips_shll_qb (v4i8, imm0_7)
10690 v4i8 __builtin_mips_shll_qb (v4i8, i32)
10691 v2q15 __builtin_mips_shll_ph (v2q15, imm0_15)
10692 v2q15 __builtin_mips_shll_ph (v2q15, i32)
10693 v2q15 __builtin_mips_shll_s_ph (v2q15, imm0_15)
10694 v2q15 __builtin_mips_shll_s_ph (v2q15, i32)
10695 q31 __builtin_mips_shll_s_w (q31, imm0_31)
10696 q31 __builtin_mips_shll_s_w (q31, i32)
10697 v4i8 __builtin_mips_shrl_qb (v4i8, imm0_7)
10698 v4i8 __builtin_mips_shrl_qb (v4i8, i32)
10699 v2q15 __builtin_mips_shra_ph (v2q15, imm0_15)
10700 v2q15 __builtin_mips_shra_ph (v2q15, i32)
10701 v2q15 __builtin_mips_shra_r_ph (v2q15, imm0_15)
10702 v2q15 __builtin_mips_shra_r_ph (v2q15, i32)
10703 q31 __builtin_mips_shra_r_w (q31, imm0_31)
10704 q31 __builtin_mips_shra_r_w (q31, i32)
10705 v2q15 __builtin_mips_muleu_s_ph_qbl (v4i8, v2q15)
10706 v2q15 __builtin_mips_muleu_s_ph_qbr (v4i8, v2q15)
10707 v2q15 __builtin_mips_mulq_rs_ph (v2q15, v2q15)
10708 q31 __builtin_mips_muleq_s_w_phl (v2q15, v2q15)
10709 q31 __builtin_mips_muleq_s_w_phr (v2q15, v2q15)
10710 a64 __builtin_mips_dpau_h_qbl (a64, v4i8, v4i8)
10711 a64 __builtin_mips_dpau_h_qbr (a64, v4i8, v4i8)
10712 a64 __builtin_mips_dpsu_h_qbl (a64, v4i8, v4i8)
10713 a64 __builtin_mips_dpsu_h_qbr (a64, v4i8, v4i8)
10714 a64 __builtin_mips_dpaq_s_w_ph (a64, v2q15, v2q15)
10715 a64 __builtin_mips_dpaq_sa_l_w (a64, q31, q31)
10716 a64 __builtin_mips_dpsq_s_w_ph (a64, v2q15, v2q15)
10717 a64 __builtin_mips_dpsq_sa_l_w (a64, q31, q31)
10718 a64 __builtin_mips_mulsaq_s_w_ph (a64, v2q15, v2q15)
10719 a64 __builtin_mips_maq_s_w_phl (a64, v2q15, v2q15)
10720 a64 __builtin_mips_maq_s_w_phr (a64, v2q15, v2q15)
10721 a64 __builtin_mips_maq_sa_w_phl (a64, v2q15, v2q15)
10722 a64 __builtin_mips_maq_sa_w_phr (a64, v2q15, v2q15)
10723 i32 __builtin_mips_bitrev (i32)
10724 i32 __builtin_mips_insv (i32, i32)
10725 v4i8 __builtin_mips_repl_qb (imm0_255)
10726 v4i8 __builtin_mips_repl_qb (i32)
10727 v2q15 __builtin_mips_repl_ph (imm_n512_511)
10728 v2q15 __builtin_mips_repl_ph (i32)
10729 void __builtin_mips_cmpu_eq_qb (v4i8, v4i8)
10730 void __builtin_mips_cmpu_lt_qb (v4i8, v4i8)
10731 void __builtin_mips_cmpu_le_qb (v4i8, v4i8)
10732 i32 __builtin_mips_cmpgu_eq_qb (v4i8, v4i8)
10733 i32 __builtin_mips_cmpgu_lt_qb (v4i8, v4i8)
10734 i32 __builtin_mips_cmpgu_le_qb (v4i8, v4i8)
10735 void __builtin_mips_cmp_eq_ph (v2q15, v2q15)
10736 void __builtin_mips_cmp_lt_ph (v2q15, v2q15)
10737 void __builtin_mips_cmp_le_ph (v2q15, v2q15)
10738 v4i8 __builtin_mips_pick_qb (v4i8, v4i8)
10739 v2q15 __builtin_mips_pick_ph (v2q15, v2q15)
10740 v2q15 __builtin_mips_packrl_ph (v2q15, v2q15)
10741 i32 __builtin_mips_extr_w (a64, imm0_31)
10742 i32 __builtin_mips_extr_w (a64, i32)
10743 i32 __builtin_mips_extr_r_w (a64, imm0_31)
10744 i32 __builtin_mips_extr_s_h (a64, i32)
10745 i32 __builtin_mips_extr_rs_w (a64, imm0_31)
10746 i32 __builtin_mips_extr_rs_w (a64, i32)
10747 i32 __builtin_mips_extr_s_h (a64, imm0_31)
10748 i32 __builtin_mips_extr_r_w (a64, i32)
10749 i32 __builtin_mips_extp (a64, imm0_31)
10750 i32 __builtin_mips_extp (a64, i32)
10751 i32 __builtin_mips_extpdp (a64, imm0_31)
10752 i32 __builtin_mips_extpdp (a64, i32)
10753 a64 __builtin_mips_shilo (a64, imm_n32_31)
10754 a64 __builtin_mips_shilo (a64, i32)
10755 a64 __builtin_mips_mthlip (a64, i32)
10756 void __builtin_mips_wrdsp (i32, imm0_63)
10757 i32 __builtin_mips_rddsp (imm0_63)
10758 i32 __builtin_mips_lbux (void *, i32)
10759 i32 __builtin_mips_lhx (void *, i32)
10760 i32 __builtin_mips_lwx (void *, i32)
10761 a64 __builtin_mips_ldx (void *, i32) [MIPS64 only]
10762 i32 __builtin_mips_bposge32 (void)
10763 a64 __builtin_mips_madd (a64, i32, i32);
10764 a64 __builtin_mips_maddu (a64, ui32, ui32);
10765 a64 __builtin_mips_msub (a64, i32, i32);
10766 a64 __builtin_mips_msubu (a64, ui32, ui32);
10767 a64 __builtin_mips_mult (i32, i32);
10768 a64 __builtin_mips_multu (ui32, ui32);
10769 @end smallexample
10770
10771 The following built-in functions map directly to a particular MIPS DSP REV 2
10772 instruction.  Please refer to the architecture specification
10773 for details on what each instruction does.
10774
10775 @smallexample
10776 v4q7 __builtin_mips_absq_s_qb (v4q7);
10777 v2i16 __builtin_mips_addu_ph (v2i16, v2i16);
10778 v2i16 __builtin_mips_addu_s_ph (v2i16, v2i16);
10779 v4i8 __builtin_mips_adduh_qb (v4i8, v4i8);
10780 v4i8 __builtin_mips_adduh_r_qb (v4i8, v4i8);
10781 i32 __builtin_mips_append (i32, i32, imm0_31);
10782 i32 __builtin_mips_balign (i32, i32, imm0_3);
10783 i32 __builtin_mips_cmpgdu_eq_qb (v4i8, v4i8);
10784 i32 __builtin_mips_cmpgdu_lt_qb (v4i8, v4i8);
10785 i32 __builtin_mips_cmpgdu_le_qb (v4i8, v4i8);
10786 a64 __builtin_mips_dpa_w_ph (a64, v2i16, v2i16);
10787 a64 __builtin_mips_dps_w_ph (a64, v2i16, v2i16);
10788 v2i16 __builtin_mips_mul_ph (v2i16, v2i16);
10789 v2i16 __builtin_mips_mul_s_ph (v2i16, v2i16);
10790 q31 __builtin_mips_mulq_rs_w (q31, q31);
10791 v2q15 __builtin_mips_mulq_s_ph (v2q15, v2q15);
10792 q31 __builtin_mips_mulq_s_w (q31, q31);
10793 a64 __builtin_mips_mulsa_w_ph (a64, v2i16, v2i16);
10794 v4i8 __builtin_mips_precr_qb_ph (v2i16, v2i16);
10795 v2i16 __builtin_mips_precr_sra_ph_w (i32, i32, imm0_31);
10796 v2i16 __builtin_mips_precr_sra_r_ph_w (i32, i32, imm0_31);
10797 i32 __builtin_mips_prepend (i32, i32, imm0_31);
10798 v4i8 __builtin_mips_shra_qb (v4i8, imm0_7);
10799 v4i8 __builtin_mips_shra_r_qb (v4i8, imm0_7);
10800 v4i8 __builtin_mips_shra_qb (v4i8, i32);
10801 v4i8 __builtin_mips_shra_r_qb (v4i8, i32);
10802 v2i16 __builtin_mips_shrl_ph (v2i16, imm0_15);
10803 v2i16 __builtin_mips_shrl_ph (v2i16, i32);
10804 v2i16 __builtin_mips_subu_ph (v2i16, v2i16);
10805 v2i16 __builtin_mips_subu_s_ph (v2i16, v2i16);
10806 v4i8 __builtin_mips_subuh_qb (v4i8, v4i8);
10807 v4i8 __builtin_mips_subuh_r_qb (v4i8, v4i8);
10808 v2q15 __builtin_mips_addqh_ph (v2q15, v2q15);
10809 v2q15 __builtin_mips_addqh_r_ph (v2q15, v2q15);
10810 q31 __builtin_mips_addqh_w (q31, q31);
10811 q31 __builtin_mips_addqh_r_w (q31, q31);
10812 v2q15 __builtin_mips_subqh_ph (v2q15, v2q15);
10813 v2q15 __builtin_mips_subqh_r_ph (v2q15, v2q15);
10814 q31 __builtin_mips_subqh_w (q31, q31);
10815 q31 __builtin_mips_subqh_r_w (q31, q31);
10816 a64 __builtin_mips_dpax_w_ph (a64, v2i16, v2i16);
10817 a64 __builtin_mips_dpsx_w_ph (a64, v2i16, v2i16);
10818 a64 __builtin_mips_dpaqx_s_w_ph (a64, v2q15, v2q15);
10819 a64 __builtin_mips_dpaqx_sa_w_ph (a64, v2q15, v2q15);
10820 a64 __builtin_mips_dpsqx_s_w_ph (a64, v2q15, v2q15);
10821 a64 __builtin_mips_dpsqx_sa_w_ph (a64, v2q15, v2q15);
10822 @end smallexample
10823
10824
10825 @node MIPS Paired-Single Support
10826 @subsection MIPS Paired-Single Support
10827
10828 The MIPS64 architecture includes a number of instructions that
10829 operate on pairs of single-precision floating-point values.
10830 Each pair is packed into a 64-bit floating-point register,
10831 with one element being designated the ``upper half'' and
10832 the other being designated the ``lower half''.
10833
10834 GCC supports paired-single operations using both the generic
10835 vector extensions (@pxref{Vector Extensions}) and a collection of
10836 MIPS-specific built-in functions.  Both kinds of support are
10837 enabled by the @option{-mpaired-single} command-line option.
10838
10839 The vector type associated with paired-single values is usually
10840 called @code{v2sf}.  It can be defined in C as follows:
10841
10842 @smallexample
10843 typedef float v2sf __attribute__ ((vector_size (8)));
10844 @end smallexample
10845
10846 @code{v2sf} values are initialized in the same way as aggregates.
10847 For example:
10848
10849 @smallexample
10850 v2sf a = @{1.5, 9.1@};
10851 v2sf b;
10852 float e, f;
10853 b = (v2sf) @{e, f@};
10854 @end smallexample
10855
10856 @emph{Note:} The CPU's endianness determines which value is stored in
10857 the upper half of a register and which value is stored in the lower half.
10858 On little-endian targets, the first value is the lower one and the second
10859 value is the upper one.  The opposite order applies to big-endian targets.
10860 For example, the code above will set the lower half of @code{a} to
10861 @code{1.5} on little-endian targets and @code{9.1} on big-endian targets.
10862
10863 @node MIPS Loongson Built-in Functions
10864 @subsection MIPS Loongson Built-in Functions
10865
10866 GCC provides intrinsics to access the SIMD instructions provided by the
10867 ST Microelectronics Loongson-2E and -2F processors.  These intrinsics,
10868 available after inclusion of the @code{loongson.h} header file,
10869 operate on the following 64-bit vector types:
10870
10871 @itemize
10872 @item @code{uint8x8_t}, a vector of eight unsigned 8-bit integers;
10873 @item @code{uint16x4_t}, a vector of four unsigned 16-bit integers;
10874 @item @code{uint32x2_t}, a vector of two unsigned 32-bit integers;
10875 @item @code{int8x8_t}, a vector of eight signed 8-bit integers;
10876 @item @code{int16x4_t}, a vector of four signed 16-bit integers;
10877 @item @code{int32x2_t}, a vector of two signed 32-bit integers.
10878 @end itemize
10879
10880 The intrinsics provided are listed below; each is named after the
10881 machine instruction to which it corresponds, with suffixes added as
10882 appropriate to distinguish intrinsics that expand to the same machine
10883 instruction yet have different argument types.  Refer to the architecture
10884 documentation for a description of the functionality of each
10885 instruction.
10886
10887 @smallexample
10888 int16x4_t packsswh (int32x2_t s, int32x2_t t);
10889 int8x8_t packsshb (int16x4_t s, int16x4_t t);
10890 uint8x8_t packushb (uint16x4_t s, uint16x4_t t);
10891 uint32x2_t paddw_u (uint32x2_t s, uint32x2_t t);
10892 uint16x4_t paddh_u (uint16x4_t s, uint16x4_t t);
10893 uint8x8_t paddb_u (uint8x8_t s, uint8x8_t t);
10894 int32x2_t paddw_s (int32x2_t s, int32x2_t t);
10895 int16x4_t paddh_s (int16x4_t s, int16x4_t t);
10896 int8x8_t paddb_s (int8x8_t s, int8x8_t t);
10897 uint64_t paddd_u (uint64_t s, uint64_t t);
10898 int64_t paddd_s (int64_t s, int64_t t);
10899 int16x4_t paddsh (int16x4_t s, int16x4_t t);
10900 int8x8_t paddsb (int8x8_t s, int8x8_t t);
10901 uint16x4_t paddush (uint16x4_t s, uint16x4_t t);
10902 uint8x8_t paddusb (uint8x8_t s, uint8x8_t t);
10903 uint64_t pandn_ud (uint64_t s, uint64_t t);
10904 uint32x2_t pandn_uw (uint32x2_t s, uint32x2_t t);
10905 uint16x4_t pandn_uh (uint16x4_t s, uint16x4_t t);
10906 uint8x8_t pandn_ub (uint8x8_t s, uint8x8_t t);
10907 int64_t pandn_sd (int64_t s, int64_t t);
10908 int32x2_t pandn_sw (int32x2_t s, int32x2_t t);
10909 int16x4_t pandn_sh (int16x4_t s, int16x4_t t);
10910 int8x8_t pandn_sb (int8x8_t s, int8x8_t t);
10911 uint16x4_t pavgh (uint16x4_t s, uint16x4_t t);
10912 uint8x8_t pavgb (uint8x8_t s, uint8x8_t t);
10913 uint32x2_t pcmpeqw_u (uint32x2_t s, uint32x2_t t);
10914 uint16x4_t pcmpeqh_u (uint16x4_t s, uint16x4_t t);
10915 uint8x8_t pcmpeqb_u (uint8x8_t s, uint8x8_t t);
10916 int32x2_t pcmpeqw_s (int32x2_t s, int32x2_t t);
10917 int16x4_t pcmpeqh_s (int16x4_t s, int16x4_t t);
10918 int8x8_t pcmpeqb_s (int8x8_t s, int8x8_t t);
10919 uint32x2_t pcmpgtw_u (uint32x2_t s, uint32x2_t t);
10920 uint16x4_t pcmpgth_u (uint16x4_t s, uint16x4_t t);
10921 uint8x8_t pcmpgtb_u (uint8x8_t s, uint8x8_t t);
10922 int32x2_t pcmpgtw_s (int32x2_t s, int32x2_t t);
10923 int16x4_t pcmpgth_s (int16x4_t s, int16x4_t t);
10924 int8x8_t pcmpgtb_s (int8x8_t s, int8x8_t t);
10925 uint16x4_t pextrh_u (uint16x4_t s, int field);
10926 int16x4_t pextrh_s (int16x4_t s, int field);
10927 uint16x4_t pinsrh_0_u (uint16x4_t s, uint16x4_t t);
10928 uint16x4_t pinsrh_1_u (uint16x4_t s, uint16x4_t t);
10929 uint16x4_t pinsrh_2_u (uint16x4_t s, uint16x4_t t);
10930 uint16x4_t pinsrh_3_u (uint16x4_t s, uint16x4_t t);
10931 int16x4_t pinsrh_0_s (int16x4_t s, int16x4_t t);
10932 int16x4_t pinsrh_1_s (int16x4_t s, int16x4_t t);
10933 int16x4_t pinsrh_2_s (int16x4_t s, int16x4_t t);
10934 int16x4_t pinsrh_3_s (int16x4_t s, int16x4_t t);
10935 int32x2_t pmaddhw (int16x4_t s, int16x4_t t);
10936 int16x4_t pmaxsh (int16x4_t s, int16x4_t t);
10937 uint8x8_t pmaxub (uint8x8_t s, uint8x8_t t);
10938 int16x4_t pminsh (int16x4_t s, int16x4_t t);
10939 uint8x8_t pminub (uint8x8_t s, uint8x8_t t);
10940 uint8x8_t pmovmskb_u (uint8x8_t s);
10941 int8x8_t pmovmskb_s (int8x8_t s);
10942 uint16x4_t pmulhuh (uint16x4_t s, uint16x4_t t);
10943 int16x4_t pmulhh (int16x4_t s, int16x4_t t);
10944 int16x4_t pmullh (int16x4_t s, int16x4_t t);
10945 int64_t pmuluw (uint32x2_t s, uint32x2_t t);
10946 uint8x8_t pasubub (uint8x8_t s, uint8x8_t t);
10947 uint16x4_t biadd (uint8x8_t s);
10948 uint16x4_t psadbh (uint8x8_t s, uint8x8_t t);
10949 uint16x4_t pshufh_u (uint16x4_t dest, uint16x4_t s, uint8_t order);
10950 int16x4_t pshufh_s (int16x4_t dest, int16x4_t s, uint8_t order);
10951 uint16x4_t psllh_u (uint16x4_t s, uint8_t amount);
10952 int16x4_t psllh_s (int16x4_t s, uint8_t amount);
10953 uint32x2_t psllw_u (uint32x2_t s, uint8_t amount);
10954 int32x2_t psllw_s (int32x2_t s, uint8_t amount);
10955 uint16x4_t psrlh_u (uint16x4_t s, uint8_t amount);
10956 int16x4_t psrlh_s (int16x4_t s, uint8_t amount);
10957 uint32x2_t psrlw_u (uint32x2_t s, uint8_t amount);
10958 int32x2_t psrlw_s (int32x2_t s, uint8_t amount);
10959 uint16x4_t psrah_u (uint16x4_t s, uint8_t amount);
10960 int16x4_t psrah_s (int16x4_t s, uint8_t amount);
10961 uint32x2_t psraw_u (uint32x2_t s, uint8_t amount);
10962 int32x2_t psraw_s (int32x2_t s, uint8_t amount);
10963 uint32x2_t psubw_u (uint32x2_t s, uint32x2_t t);
10964 uint16x4_t psubh_u (uint16x4_t s, uint16x4_t t);
10965 uint8x8_t psubb_u (uint8x8_t s, uint8x8_t t);
10966 int32x2_t psubw_s (int32x2_t s, int32x2_t t);
10967 int16x4_t psubh_s (int16x4_t s, int16x4_t t);
10968 int8x8_t psubb_s (int8x8_t s, int8x8_t t);
10969 uint64_t psubd_u (uint64_t s, uint64_t t);
10970 int64_t psubd_s (int64_t s, int64_t t);
10971 int16x4_t psubsh (int16x4_t s, int16x4_t t);
10972 int8x8_t psubsb (int8x8_t s, int8x8_t t);
10973 uint16x4_t psubush (uint16x4_t s, uint16x4_t t);
10974 uint8x8_t psubusb (uint8x8_t s, uint8x8_t t);
10975 uint32x2_t punpckhwd_u (uint32x2_t s, uint32x2_t t);
10976 uint16x4_t punpckhhw_u (uint16x4_t s, uint16x4_t t);
10977 uint8x8_t punpckhbh_u (uint8x8_t s, uint8x8_t t);
10978 int32x2_t punpckhwd_s (int32x2_t s, int32x2_t t);
10979 int16x4_t punpckhhw_s (int16x4_t s, int16x4_t t);
10980 int8x8_t punpckhbh_s (int8x8_t s, int8x8_t t);
10981 uint32x2_t punpcklwd_u (uint32x2_t s, uint32x2_t t);
10982 uint16x4_t punpcklhw_u (uint16x4_t s, uint16x4_t t);
10983 uint8x8_t punpcklbh_u (uint8x8_t s, uint8x8_t t);
10984 int32x2_t punpcklwd_s (int32x2_t s, int32x2_t t);
10985 int16x4_t punpcklhw_s (int16x4_t s, int16x4_t t);
10986 int8x8_t punpcklbh_s (int8x8_t s, int8x8_t t);
10987 @end smallexample
10988
10989 @menu
10990 * Paired-Single Arithmetic::
10991 * Paired-Single Built-in Functions::
10992 * MIPS-3D Built-in Functions::
10993 @end menu
10994
10995 @node Paired-Single Arithmetic
10996 @subsubsection Paired-Single Arithmetic
10997
10998 The table below lists the @code{v2sf} operations for which hardware
10999 support exists.  @code{a}, @code{b} and @code{c} are @code{v2sf}
11000 values and @code{x} is an integral value.
11001
11002 @multitable @columnfractions .50 .50
11003 @item C code @tab MIPS instruction
11004 @item @code{a + b} @tab @code{add.ps}
11005 @item @code{a - b} @tab @code{sub.ps}
11006 @item @code{-a} @tab @code{neg.ps}
11007 @item @code{a * b} @tab @code{mul.ps}
11008 @item @code{a * b + c} @tab @code{madd.ps}
11009 @item @code{a * b - c} @tab @code{msub.ps}
11010 @item @code{-(a * b + c)} @tab @code{nmadd.ps}
11011 @item @code{-(a * b - c)} @tab @code{nmsub.ps}
11012 @item @code{x ? a : b} @tab @code{movn.ps}/@code{movz.ps}
11013 @end multitable
11014
11015 Note that the multiply-accumulate instructions can be disabled
11016 using the command-line option @code{-mno-fused-madd}.
11017
11018 @node Paired-Single Built-in Functions
11019 @subsubsection Paired-Single Built-in Functions
11020
11021 The following paired-single functions map directly to a particular
11022 MIPS instruction.  Please refer to the architecture specification
11023 for details on what each instruction does.
11024
11025 @table @code
11026 @item v2sf __builtin_mips_pll_ps (v2sf, v2sf)
11027 Pair lower lower (@code{pll.ps}).
11028
11029 @item v2sf __builtin_mips_pul_ps (v2sf, v2sf)
11030 Pair upper lower (@code{pul.ps}).
11031
11032 @item v2sf __builtin_mips_plu_ps (v2sf, v2sf)
11033 Pair lower upper (@code{plu.ps}).
11034
11035 @item v2sf __builtin_mips_puu_ps (v2sf, v2sf)
11036 Pair upper upper (@code{puu.ps}).
11037
11038 @item v2sf __builtin_mips_cvt_ps_s (float, float)
11039 Convert pair to paired single (@code{cvt.ps.s}).
11040
11041 @item float __builtin_mips_cvt_s_pl (v2sf)
11042 Convert pair lower to single (@code{cvt.s.pl}).
11043
11044 @item float __builtin_mips_cvt_s_pu (v2sf)
11045 Convert pair upper to single (@code{cvt.s.pu}).
11046
11047 @item v2sf __builtin_mips_abs_ps (v2sf)
11048 Absolute value (@code{abs.ps}).
11049
11050 @item v2sf __builtin_mips_alnv_ps (v2sf, v2sf, int)
11051 Align variable (@code{alnv.ps}).
11052
11053 @emph{Note:} The value of the third parameter must be 0 or 4
11054 modulo 8, otherwise the result will be unpredictable.  Please read the
11055 instruction description for details.
11056 @end table
11057
11058 The following multi-instruction functions are also available.
11059 In each case, @var{cond} can be any of the 16 floating-point conditions:
11060 @code{f}, @code{un}, @code{eq}, @code{ueq}, @code{olt}, @code{ult},
11061 @code{ole}, @code{ule}, @code{sf}, @code{ngle}, @code{seq}, @code{ngl},
11062 @code{lt}, @code{nge}, @code{le} or @code{ngt}.
11063
11064 @table @code
11065 @item v2sf __builtin_mips_movt_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
11066 @itemx v2sf __builtin_mips_movf_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
11067 Conditional move based on floating point comparison (@code{c.@var{cond}.ps},
11068 @code{movt.ps}/@code{movf.ps}).
11069
11070 The @code{movt} functions return the value @var{x} computed by:
11071
11072 @smallexample
11073 c.@var{cond}.ps @var{cc},@var{a},@var{b}
11074 mov.ps @var{x},@var{c}
11075 movt.ps @var{x},@var{d},@var{cc}
11076 @end smallexample
11077
11078 The @code{movf} functions are similar but use @code{movf.ps} instead
11079 of @code{movt.ps}.
11080
11081 @item int __builtin_mips_upper_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
11082 @itemx int __builtin_mips_lower_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
11083 Comparison of two paired-single values (@code{c.@var{cond}.ps},
11084 @code{bc1t}/@code{bc1f}).
11085
11086 These functions compare @var{a} and @var{b} using @code{c.@var{cond}.ps}
11087 and return either the upper or lower half of the result.  For example:
11088
11089 @smallexample
11090 v2sf a, b;
11091 if (__builtin_mips_upper_c_eq_ps (a, b))
11092   upper_halves_are_equal ();
11093 else
11094   upper_halves_are_unequal ();
11095
11096 if (__builtin_mips_lower_c_eq_ps (a, b))
11097   lower_halves_are_equal ();
11098 else
11099   lower_halves_are_unequal ();
11100 @end smallexample
11101 @end table
11102
11103 @node MIPS-3D Built-in Functions
11104 @subsubsection MIPS-3D Built-in Functions
11105
11106 The MIPS-3D Application-Specific Extension (ASE) includes additional
11107 paired-single instructions that are designed to improve the performance
11108 of 3D graphics operations.  Support for these instructions is controlled
11109 by the @option{-mips3d} command-line option.
11110
11111 The functions listed below map directly to a particular MIPS-3D
11112 instruction.  Please refer to the architecture specification for
11113 more details on what each instruction does.
11114
11115 @table @code
11116 @item v2sf __builtin_mips_addr_ps (v2sf, v2sf)
11117 Reduction add (@code{addr.ps}).
11118
11119 @item v2sf __builtin_mips_mulr_ps (v2sf, v2sf)
11120 Reduction multiply (@code{mulr.ps}).
11121
11122 @item v2sf __builtin_mips_cvt_pw_ps (v2sf)
11123 Convert paired single to paired word (@code{cvt.pw.ps}).
11124
11125 @item v2sf __builtin_mips_cvt_ps_pw (v2sf)
11126 Convert paired word to paired single (@code{cvt.ps.pw}).
11127
11128 @item float __builtin_mips_recip1_s (float)
11129 @itemx double __builtin_mips_recip1_d (double)
11130 @itemx v2sf __builtin_mips_recip1_ps (v2sf)
11131 Reduced precision reciprocal (sequence step 1) (@code{recip1.@var{fmt}}).
11132
11133 @item float __builtin_mips_recip2_s (float, float)
11134 @itemx double __builtin_mips_recip2_d (double, double)
11135 @itemx v2sf __builtin_mips_recip2_ps (v2sf, v2sf)
11136 Reduced precision reciprocal (sequence step 2) (@code{recip2.@var{fmt}}).
11137
11138 @item float __builtin_mips_rsqrt1_s (float)
11139 @itemx double __builtin_mips_rsqrt1_d (double)
11140 @itemx v2sf __builtin_mips_rsqrt1_ps (v2sf)
11141 Reduced precision reciprocal square root (sequence step 1)
11142 (@code{rsqrt1.@var{fmt}}).
11143
11144 @item float __builtin_mips_rsqrt2_s (float, float)
11145 @itemx double __builtin_mips_rsqrt2_d (double, double)
11146 @itemx v2sf __builtin_mips_rsqrt2_ps (v2sf, v2sf)
11147 Reduced precision reciprocal square root (sequence step 2)
11148 (@code{rsqrt2.@var{fmt}}).
11149 @end table
11150
11151 The following multi-instruction functions are also available.
11152 In each case, @var{cond} can be any of the 16 floating-point conditions:
11153 @code{f}, @code{un}, @code{eq}, @code{ueq}, @code{olt}, @code{ult},
11154 @code{ole}, @code{ule}, @code{sf}, @code{ngle}, @code{seq},
11155 @code{ngl}, @code{lt}, @code{nge}, @code{le} or @code{ngt}.
11156
11157 @table @code
11158 @item int __builtin_mips_cabs_@var{cond}_s (float @var{a}, float @var{b})
11159 @itemx int __builtin_mips_cabs_@var{cond}_d (double @var{a}, double @var{b})
11160 Absolute comparison of two scalar values (@code{cabs.@var{cond}.@var{fmt}},
11161 @code{bc1t}/@code{bc1f}).
11162
11163 These functions compare @var{a} and @var{b} using @code{cabs.@var{cond}.s}
11164 or @code{cabs.@var{cond}.d} and return the result as a boolean value.
11165 For example:
11166
11167 @smallexample
11168 float a, b;
11169 if (__builtin_mips_cabs_eq_s (a, b))
11170   true ();
11171 else
11172   false ();
11173 @end smallexample
11174
11175 @item int __builtin_mips_upper_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
11176 @itemx int __builtin_mips_lower_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
11177 Absolute comparison of two paired-single values (@code{cabs.@var{cond}.ps},
11178 @code{bc1t}/@code{bc1f}).
11179
11180 These functions compare @var{a} and @var{b} using @code{cabs.@var{cond}.ps}
11181 and return either the upper or lower half of the result.  For example:
11182
11183 @smallexample
11184 v2sf a, b;
11185 if (__builtin_mips_upper_cabs_eq_ps (a, b))
11186   upper_halves_are_equal ();
11187 else
11188   upper_halves_are_unequal ();
11189
11190 if (__builtin_mips_lower_cabs_eq_ps (a, b))
11191   lower_halves_are_equal ();
11192 else
11193   lower_halves_are_unequal ();
11194 @end smallexample
11195
11196 @item v2sf __builtin_mips_movt_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
11197 @itemx v2sf __builtin_mips_movf_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
11198 Conditional move based on absolute comparison (@code{cabs.@var{cond}.ps},
11199 @code{movt.ps}/@code{movf.ps}).
11200
11201 The @code{movt} functions return the value @var{x} computed by:
11202
11203 @smallexample
11204 cabs.@var{cond}.ps @var{cc},@var{a},@var{b}
11205 mov.ps @var{x},@var{c}
11206 movt.ps @var{x},@var{d},@var{cc}
11207 @end smallexample
11208
11209 The @code{movf} functions are similar but use @code{movf.ps} instead
11210 of @code{movt.ps}.
11211
11212 @item int __builtin_mips_any_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
11213 @itemx int __builtin_mips_all_c_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
11214 @itemx int __builtin_mips_any_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
11215 @itemx int __builtin_mips_all_cabs_@var{cond}_ps (v2sf @var{a}, v2sf @var{b})
11216 Comparison of two paired-single values
11217 (@code{c.@var{cond}.ps}/@code{cabs.@var{cond}.ps},
11218 @code{bc1any2t}/@code{bc1any2f}).
11219
11220 These functions compare @var{a} and @var{b} using @code{c.@var{cond}.ps}
11221 or @code{cabs.@var{cond}.ps}.  The @code{any} forms return true if either
11222 result is true and the @code{all} forms return true if both results are true.
11223 For example:
11224
11225 @smallexample
11226 v2sf a, b;
11227 if (__builtin_mips_any_c_eq_ps (a, b))
11228   one_is_true ();
11229 else
11230   both_are_false ();
11231
11232 if (__builtin_mips_all_c_eq_ps (a, b))
11233   both_are_true ();
11234 else
11235   one_is_false ();
11236 @end smallexample
11237
11238 @item int __builtin_mips_any_c_@var{cond}_4s (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
11239 @itemx int __builtin_mips_all_c_@var{cond}_4s (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
11240 @itemx int __builtin_mips_any_cabs_@var{cond}_4s (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
11241 @itemx int __builtin_mips_all_cabs_@var{cond}_4s (v2sf @var{a}, v2sf @var{b}, v2sf @var{c}, v2sf @var{d})
11242 Comparison of four paired-single values
11243 (@code{c.@var{cond}.ps}/@code{cabs.@var{cond}.ps},
11244 @code{bc1any4t}/@code{bc1any4f}).
11245
11246 These functions use @code{c.@var{cond}.ps} or @code{cabs.@var{cond}.ps}
11247 to compare @var{a} with @var{b} and to compare @var{c} with @var{d}.
11248 The @code{any} forms return true if any of the four results are true
11249 and the @code{all} forms return true if all four results are true.
11250 For example:
11251
11252 @smallexample
11253 v2sf a, b, c, d;
11254 if (__builtin_mips_any_c_eq_4s (a, b, c, d))
11255   some_are_true ();
11256 else
11257   all_are_false ();
11258
11259 if (__builtin_mips_all_c_eq_4s (a, b, c, d))
11260   all_are_true ();
11261 else
11262   some_are_false ();
11263 @end smallexample
11264 @end table
11265
11266 @node picoChip Built-in Functions
11267 @subsection picoChip Built-in Functions
11268
11269 GCC provides an interface to selected machine instructions from the
11270 picoChip instruction set.
11271
11272 @table @code
11273 @item int __builtin_sbc (int @var{value})
11274 Sign bit count.  Return the number of consecutive bits in @var{value}
11275 which have the same value as the sign-bit.  The result is the number of
11276 leading sign bits minus one, giving the number of redundant sign bits in
11277 @var{value}.
11278
11279 @item int __builtin_byteswap (int @var{value})
11280 Byte swap.  Return the result of swapping the upper and lower bytes of
11281 @var{value}.
11282
11283 @item int __builtin_brev (int @var{value})
11284 Bit reversal.  Return the result of reversing the bits in
11285 @var{value}.  Bit 15 is swapped with bit 0, bit 14 is swapped with bit 1,
11286 and so on.
11287
11288 @item int __builtin_adds (int @var{x}, int @var{y})
11289 Saturating addition.  Return the result of adding @var{x} and @var{y},
11290 storing the value 32767 if the result overflows.
11291
11292 @item int __builtin_subs (int @var{x}, int @var{y})
11293 Saturating subtraction.  Return the result of subtracting @var{y} from
11294 @var{x}, storing the value @minus{}32768 if the result overflows.
11295
11296 @item void __builtin_halt (void)
11297 Halt.  The processor will stop execution.  This built-in is useful for
11298 implementing assertions.
11299
11300 @end table
11301
11302 @node Other MIPS Built-in Functions
11303 @subsection Other MIPS Built-in Functions
11304
11305 GCC provides other MIPS-specific built-in functions:
11306
11307 @table @code
11308 @item void __builtin_mips_cache (int @var{op}, const volatile void *@var{addr})
11309 Insert a @samp{cache} instruction with operands @var{op} and @var{addr}.
11310 GCC defines the preprocessor macro @code{___GCC_HAVE_BUILTIN_MIPS_CACHE}
11311 when this function is available.
11312 @end table
11313
11314 @node PowerPC AltiVec/VSX Built-in Functions
11315 @subsection PowerPC AltiVec Built-in Functions
11316
11317 GCC provides an interface for the PowerPC family of processors to access
11318 the AltiVec operations described in Motorola's AltiVec Programming
11319 Interface Manual.  The interface is made available by including
11320 @code{<altivec.h>} and using @option{-maltivec} and
11321 @option{-mabi=altivec}.  The interface supports the following vector
11322 types.
11323
11324 @smallexample
11325 vector unsigned char
11326 vector signed char
11327 vector bool char
11328
11329 vector unsigned short
11330 vector signed short
11331 vector bool short
11332 vector pixel
11333
11334 vector unsigned int
11335 vector signed int
11336 vector bool int
11337 vector float
11338 @end smallexample
11339
11340 If @option{-mvsx} is used the following additional vector types are
11341 implemented.
11342
11343 @smallexample
11344 vector unsigned long
11345 vector signed long
11346 vector double
11347 @end smallexample
11348
11349 The long types are only implemented for 64-bit code generation, and
11350 the long type is only used in the floating point/integer conversion
11351 instructions.
11352
11353 GCC's implementation of the high-level language interface available from
11354 C and C++ code differs from Motorola's documentation in several ways.
11355
11356 @itemize @bullet
11357
11358 @item
11359 A vector constant is a list of constant expressions within curly braces.
11360
11361 @item
11362 A vector initializer requires no cast if the vector constant is of the
11363 same type as the variable it is initializing.
11364
11365 @item
11366 If @code{signed} or @code{unsigned} is omitted, the signedness of the
11367 vector type is the default signedness of the base type.  The default
11368 varies depending on the operating system, so a portable program should
11369 always specify the signedness.
11370
11371 @item
11372 Compiling with @option{-maltivec} adds keywords @code{__vector},
11373 @code{vector}, @code{__pixel}, @code{pixel}, @code{__bool} and
11374 @code{bool}.  When compiling ISO C, the context-sensitive substitution
11375 of the keywords @code{vector}, @code{pixel} and @code{bool} is
11376 disabled.  To use them, you must include @code{<altivec.h>} instead.
11377
11378 @item
11379 GCC allows using a @code{typedef} name as the type specifier for a
11380 vector type.
11381
11382 @item
11383 For C, overloaded functions are implemented with macros so the following
11384 does not work:
11385
11386 @smallexample
11387   vec_add ((vector signed int)@{1, 2, 3, 4@}, foo);
11388 @end smallexample
11389
11390 Since @code{vec_add} is a macro, the vector constant in the example
11391 is treated as four separate arguments.  Wrap the entire argument in
11392 parentheses for this to work.
11393 @end itemize
11394
11395 @emph{Note:} Only the @code{<altivec.h>} interface is supported.
11396 Internally, GCC uses built-in functions to achieve the functionality in
11397 the aforementioned header file, but they are not supported and are
11398 subject to change without notice.
11399
11400 The following interfaces are supported for the generic and specific
11401 AltiVec operations and the AltiVec predicates.  In cases where there
11402 is a direct mapping between generic and specific operations, only the
11403 generic names are shown here, although the specific operations can also
11404 be used.
11405
11406 Arguments that are documented as @code{const int} require literal
11407 integral values within the range required for that operation.
11408
11409 @smallexample
11410 vector signed char vec_abs (vector signed char);
11411 vector signed short vec_abs (vector signed short);
11412 vector signed int vec_abs (vector signed int);
11413 vector float vec_abs (vector float);
11414
11415 vector signed char vec_abss (vector signed char);
11416 vector signed short vec_abss (vector signed short);
11417 vector signed int vec_abss (vector signed int);
11418
11419 vector signed char vec_add (vector bool char, vector signed char);
11420 vector signed char vec_add (vector signed char, vector bool char);
11421 vector signed char vec_add (vector signed char, vector signed char);
11422 vector unsigned char vec_add (vector bool char, vector unsigned char);
11423 vector unsigned char vec_add (vector unsigned char, vector bool char);
11424 vector unsigned char vec_add (vector unsigned char,
11425                               vector unsigned char);
11426 vector signed short vec_add (vector bool short, vector signed short);
11427 vector signed short vec_add (vector signed short, vector bool short);
11428 vector signed short vec_add (vector signed short, vector signed short);
11429 vector unsigned short vec_add (vector bool short,
11430                                vector unsigned short);
11431 vector unsigned short vec_add (vector unsigned short,
11432                                vector bool short);
11433 vector unsigned short vec_add (vector unsigned short,
11434                                vector unsigned short);
11435 vector signed int vec_add (vector bool int, vector signed int);
11436 vector signed int vec_add (vector signed int, vector bool int);
11437 vector signed int vec_add (vector signed int, vector signed int);
11438 vector unsigned int vec_add (vector bool int, vector unsigned int);
11439 vector unsigned int vec_add (vector unsigned int, vector bool int);
11440 vector unsigned int vec_add (vector unsigned int, vector unsigned int);
11441 vector float vec_add (vector float, vector float);
11442
11443 vector float vec_vaddfp (vector float, vector float);
11444
11445 vector signed int vec_vadduwm (vector bool int, vector signed int);
11446 vector signed int vec_vadduwm (vector signed int, vector bool int);
11447 vector signed int vec_vadduwm (vector signed int, vector signed int);
11448 vector unsigned int vec_vadduwm (vector bool int, vector unsigned int);
11449 vector unsigned int vec_vadduwm (vector unsigned int, vector bool int);
11450 vector unsigned int vec_vadduwm (vector unsigned int,
11451                                  vector unsigned int);
11452
11453 vector signed short vec_vadduhm (vector bool short,
11454                                  vector signed short);
11455 vector signed short vec_vadduhm (vector signed short,
11456                                  vector bool short);
11457 vector signed short vec_vadduhm (vector signed short,
11458                                  vector signed short);
11459 vector unsigned short vec_vadduhm (vector bool short,
11460                                    vector unsigned short);
11461 vector unsigned short vec_vadduhm (vector unsigned short,
11462                                    vector bool short);
11463 vector unsigned short vec_vadduhm (vector unsigned short,
11464                                    vector unsigned short);
11465
11466 vector signed char vec_vaddubm (vector bool char, vector signed char);
11467 vector signed char vec_vaddubm (vector signed char, vector bool char);
11468 vector signed char vec_vaddubm (vector signed char, vector signed char);
11469 vector unsigned char vec_vaddubm (vector bool char,
11470                                   vector unsigned char);
11471 vector unsigned char vec_vaddubm (vector unsigned char,
11472                                   vector bool char);
11473 vector unsigned char vec_vaddubm (vector unsigned char,
11474                                   vector unsigned char);
11475
11476 vector unsigned int vec_addc (vector unsigned int, vector unsigned int);
11477
11478 vector unsigned char vec_adds (vector bool char, vector unsigned char);
11479 vector unsigned char vec_adds (vector unsigned char, vector bool char);
11480 vector unsigned char vec_adds (vector unsigned char,
11481                                vector unsigned char);
11482 vector signed char vec_adds (vector bool char, vector signed char);
11483 vector signed char vec_adds (vector signed char, vector bool char);
11484 vector signed char vec_adds (vector signed char, vector signed char);
11485 vector unsigned short vec_adds (vector bool short,
11486                                 vector unsigned short);
11487 vector unsigned short vec_adds (vector unsigned short,
11488                                 vector bool short);
11489 vector unsigned short vec_adds (vector unsigned short,
11490                                 vector unsigned short);
11491 vector signed short vec_adds (vector bool short, vector signed short);
11492 vector signed short vec_adds (vector signed short, vector bool short);
11493 vector signed short vec_adds (vector signed short, vector signed short);
11494 vector unsigned int vec_adds (vector bool int, vector unsigned int);
11495 vector unsigned int vec_adds (vector unsigned int, vector bool int);
11496 vector unsigned int vec_adds (vector unsigned int, vector unsigned int);
11497 vector signed int vec_adds (vector bool int, vector signed int);
11498 vector signed int vec_adds (vector signed int, vector bool int);
11499 vector signed int vec_adds (vector signed int, vector signed int);
11500
11501 vector signed int vec_vaddsws (vector bool int, vector signed int);
11502 vector signed int vec_vaddsws (vector signed int, vector bool int);
11503 vector signed int vec_vaddsws (vector signed int, vector signed int);
11504
11505 vector unsigned int vec_vadduws (vector bool int, vector unsigned int);
11506 vector unsigned int vec_vadduws (vector unsigned int, vector bool int);
11507 vector unsigned int vec_vadduws (vector unsigned int,
11508                                  vector unsigned int);
11509
11510 vector signed short vec_vaddshs (vector bool short,
11511                                  vector signed short);
11512 vector signed short vec_vaddshs (vector signed short,
11513                                  vector bool short);
11514 vector signed short vec_vaddshs (vector signed short,
11515                                  vector signed short);
11516
11517 vector unsigned short vec_vadduhs (vector bool short,
11518                                    vector unsigned short);
11519 vector unsigned short vec_vadduhs (vector unsigned short,
11520                                    vector bool short);
11521 vector unsigned short vec_vadduhs (vector unsigned short,
11522                                    vector unsigned short);
11523
11524 vector signed char vec_vaddsbs (vector bool char, vector signed char);
11525 vector signed char vec_vaddsbs (vector signed char, vector bool char);
11526 vector signed char vec_vaddsbs (vector signed char, vector signed char);
11527
11528 vector unsigned char vec_vaddubs (vector bool char,
11529                                   vector unsigned char);
11530 vector unsigned char vec_vaddubs (vector unsigned char,
11531                                   vector bool char);
11532 vector unsigned char vec_vaddubs (vector unsigned char,
11533                                   vector unsigned char);
11534
11535 vector float vec_and (vector float, vector float);
11536 vector float vec_and (vector float, vector bool int);
11537 vector float vec_and (vector bool int, vector float);
11538 vector bool int vec_and (vector bool int, vector bool int);
11539 vector signed int vec_and (vector bool int, vector signed int);
11540 vector signed int vec_and (vector signed int, vector bool int);
11541 vector signed int vec_and (vector signed int, vector signed int);
11542 vector unsigned int vec_and (vector bool int, vector unsigned int);
11543 vector unsigned int vec_and (vector unsigned int, vector bool int);
11544 vector unsigned int vec_and (vector unsigned int, vector unsigned int);
11545 vector bool short vec_and (vector bool short, vector bool short);
11546 vector signed short vec_and (vector bool short, vector signed short);
11547 vector signed short vec_and (vector signed short, vector bool short);
11548 vector signed short vec_and (vector signed short, vector signed short);
11549 vector unsigned short vec_and (vector bool short,
11550                                vector unsigned short);
11551 vector unsigned short vec_and (vector unsigned short,
11552                                vector bool short);
11553 vector unsigned short vec_and (vector unsigned short,
11554                                vector unsigned short);
11555 vector signed char vec_and (vector bool char, vector signed char);
11556 vector bool char vec_and (vector bool char, vector bool char);
11557 vector signed char vec_and (vector signed char, vector bool char);
11558 vector signed char vec_and (vector signed char, vector signed char);
11559 vector unsigned char vec_and (vector bool char, vector unsigned char);
11560 vector unsigned char vec_and (vector unsigned char, vector bool char);
11561 vector unsigned char vec_and (vector unsigned char,
11562                               vector unsigned char);
11563
11564 vector float vec_andc (vector float, vector float);
11565 vector float vec_andc (vector float, vector bool int);
11566 vector float vec_andc (vector bool int, vector float);
11567 vector bool int vec_andc (vector bool int, vector bool int);
11568 vector signed int vec_andc (vector bool int, vector signed int);
11569 vector signed int vec_andc (vector signed int, vector bool int);
11570 vector signed int vec_andc (vector signed int, vector signed int);
11571 vector unsigned int vec_andc (vector bool int, vector unsigned int);
11572 vector unsigned int vec_andc (vector unsigned int, vector bool int);
11573 vector unsigned int vec_andc (vector unsigned int, vector unsigned int);
11574 vector bool short vec_andc (vector bool short, vector bool short);
11575 vector signed short vec_andc (vector bool short, vector signed short);
11576 vector signed short vec_andc (vector signed short, vector bool short);
11577 vector signed short vec_andc (vector signed short, vector signed short);
11578 vector unsigned short vec_andc (vector bool short,
11579                                 vector unsigned short);
11580 vector unsigned short vec_andc (vector unsigned short,
11581                                 vector bool short);
11582 vector unsigned short vec_andc (vector unsigned short,
11583                                 vector unsigned short);
11584 vector signed char vec_andc (vector bool char, vector signed char);
11585 vector bool char vec_andc (vector bool char, vector bool char);
11586 vector signed char vec_andc (vector signed char, vector bool char);
11587 vector signed char vec_andc (vector signed char, vector signed char);
11588 vector unsigned char vec_andc (vector bool char, vector unsigned char);
11589 vector unsigned char vec_andc (vector unsigned char, vector bool char);
11590 vector unsigned char vec_andc (vector unsigned char,
11591                                vector unsigned char);
11592
11593 vector unsigned char vec_avg (vector unsigned char,
11594                               vector unsigned char);
11595 vector signed char vec_avg (vector signed char, vector signed char);
11596 vector unsigned short vec_avg (vector unsigned short,
11597                                vector unsigned short);
11598 vector signed short vec_avg (vector signed short, vector signed short);
11599 vector unsigned int vec_avg (vector unsigned int, vector unsigned int);
11600 vector signed int vec_avg (vector signed int, vector signed int);
11601
11602 vector signed int vec_vavgsw (vector signed int, vector signed int);
11603
11604 vector unsigned int vec_vavguw (vector unsigned int,
11605                                 vector unsigned int);
11606
11607 vector signed short vec_vavgsh (vector signed short,
11608                                 vector signed short);
11609
11610 vector unsigned short vec_vavguh (vector unsigned short,
11611                                   vector unsigned short);
11612
11613 vector signed char vec_vavgsb (vector signed char, vector signed char);
11614
11615 vector unsigned char vec_vavgub (vector unsigned char,
11616                                  vector unsigned char);
11617
11618 vector float vec_copysign (vector float);
11619
11620 vector float vec_ceil (vector float);
11621
11622 vector signed int vec_cmpb (vector float, vector float);
11623
11624 vector bool char vec_cmpeq (vector signed char, vector signed char);
11625 vector bool char vec_cmpeq (vector unsigned char, vector unsigned char);
11626 vector bool short vec_cmpeq (vector signed short, vector signed short);
11627 vector bool short vec_cmpeq (vector unsigned short,
11628                              vector unsigned short);
11629 vector bool int vec_cmpeq (vector signed int, vector signed int);
11630 vector bool int vec_cmpeq (vector unsigned int, vector unsigned int);
11631 vector bool int vec_cmpeq (vector float, vector float);
11632
11633 vector bool int vec_vcmpeqfp (vector float, vector float);
11634
11635 vector bool int vec_vcmpequw (vector signed int, vector signed int);
11636 vector bool int vec_vcmpequw (vector unsigned int, vector unsigned int);
11637
11638 vector bool short vec_vcmpequh (vector signed short,
11639                                 vector signed short);
11640 vector bool short vec_vcmpequh (vector unsigned short,
11641                                 vector unsigned short);
11642
11643 vector bool char vec_vcmpequb (vector signed char, vector signed char);
11644 vector bool char vec_vcmpequb (vector unsigned char,
11645                                vector unsigned char);
11646
11647 vector bool int vec_cmpge (vector float, vector float);
11648
11649 vector bool char vec_cmpgt (vector unsigned char, vector unsigned char);
11650 vector bool char vec_cmpgt (vector signed char, vector signed char);
11651 vector bool short vec_cmpgt (vector unsigned short,
11652                              vector unsigned short);
11653 vector bool short vec_cmpgt (vector signed short, vector signed short);
11654 vector bool int vec_cmpgt (vector unsigned int, vector unsigned int);
11655 vector bool int vec_cmpgt (vector signed int, vector signed int);
11656 vector bool int vec_cmpgt (vector float, vector float);
11657
11658 vector bool int vec_vcmpgtfp (vector float, vector float);
11659
11660 vector bool int vec_vcmpgtsw (vector signed int, vector signed int);
11661
11662 vector bool int vec_vcmpgtuw (vector unsigned int, vector unsigned int);
11663
11664 vector bool short vec_vcmpgtsh (vector signed short,
11665                                 vector signed short);
11666
11667 vector bool short vec_vcmpgtuh (vector unsigned short,
11668                                 vector unsigned short);
11669
11670 vector bool char vec_vcmpgtsb (vector signed char, vector signed char);
11671
11672 vector bool char vec_vcmpgtub (vector unsigned char,
11673                                vector unsigned char);
11674
11675 vector bool int vec_cmple (vector float, vector float);
11676
11677 vector bool char vec_cmplt (vector unsigned char, vector unsigned char);
11678 vector bool char vec_cmplt (vector signed char, vector signed char);
11679 vector bool short vec_cmplt (vector unsigned short,
11680                              vector unsigned short);
11681 vector bool short vec_cmplt (vector signed short, vector signed short);
11682 vector bool int vec_cmplt (vector unsigned int, vector unsigned int);
11683 vector bool int vec_cmplt (vector signed int, vector signed int);
11684 vector bool int vec_cmplt (vector float, vector float);
11685
11686 vector float vec_ctf (vector unsigned int, const int);
11687 vector float vec_ctf (vector signed int, const int);
11688
11689 vector float vec_vcfsx (vector signed int, const int);
11690
11691 vector float vec_vcfux (vector unsigned int, const int);
11692
11693 vector signed int vec_cts (vector float, const int);
11694
11695 vector unsigned int vec_ctu (vector float, const int);
11696
11697 void vec_dss (const int);
11698
11699 void vec_dssall (void);
11700
11701 void vec_dst (const vector unsigned char *, int, const int);
11702 void vec_dst (const vector signed char *, int, const int);
11703 void vec_dst (const vector bool char *, int, const int);
11704 void vec_dst (const vector unsigned short *, int, const int);
11705 void vec_dst (const vector signed short *, int, const int);
11706 void vec_dst (const vector bool short *, int, const int);
11707 void vec_dst (const vector pixel *, int, const int);
11708 void vec_dst (const vector unsigned int *, int, const int);
11709 void vec_dst (const vector signed int *, int, const int);
11710 void vec_dst (const vector bool int *, int, const int);
11711 void vec_dst (const vector float *, int, const int);
11712 void vec_dst (const unsigned char *, int, const int);
11713 void vec_dst (const signed char *, int, const int);
11714 void vec_dst (const unsigned short *, int, const int);
11715 void vec_dst (const short *, int, const int);
11716 void vec_dst (const unsigned int *, int, const int);
11717 void vec_dst (const int *, int, const int);
11718 void vec_dst (const unsigned long *, int, const int);
11719 void vec_dst (const long *, int, const int);
11720 void vec_dst (const float *, int, const int);
11721
11722 void vec_dstst (const vector unsigned char *, int, const int);
11723 void vec_dstst (const vector signed char *, int, const int);
11724 void vec_dstst (const vector bool char *, int, const int);
11725 void vec_dstst (const vector unsigned short *, int, const int);
11726 void vec_dstst (const vector signed short *, int, const int);
11727 void vec_dstst (const vector bool short *, int, const int);
11728 void vec_dstst (const vector pixel *, int, const int);
11729 void vec_dstst (const vector unsigned int *, int, const int);
11730 void vec_dstst (const vector signed int *, int, const int);
11731 void vec_dstst (const vector bool int *, int, const int);
11732 void vec_dstst (const vector float *, int, const int);
11733 void vec_dstst (const unsigned char *, int, const int);
11734 void vec_dstst (const signed char *, int, const int);
11735 void vec_dstst (const unsigned short *, int, const int);
11736 void vec_dstst (const short *, int, const int);
11737 void vec_dstst (const unsigned int *, int, const int);
11738 void vec_dstst (const int *, int, const int);
11739 void vec_dstst (const unsigned long *, int, const int);
11740 void vec_dstst (const long *, int, const int);
11741 void vec_dstst (const float *, int, const int);
11742
11743 void vec_dststt (const vector unsigned char *, int, const int);
11744 void vec_dststt (const vector signed char *, int, const int);
11745 void vec_dststt (const vector bool char *, int, const int);
11746 void vec_dststt (const vector unsigned short *, int, const int);
11747 void vec_dststt (const vector signed short *, int, const int);
11748 void vec_dststt (const vector bool short *, int, const int);
11749 void vec_dststt (const vector pixel *, int, const int);
11750 void vec_dststt (const vector unsigned int *, int, const int);
11751 void vec_dststt (const vector signed int *, int, const int);
11752 void vec_dststt (const vector bool int *, int, const int);
11753 void vec_dststt (const vector float *, int, const int);
11754 void vec_dststt (const unsigned char *, int, const int);
11755 void vec_dststt (const signed char *, int, const int);
11756 void vec_dststt (const unsigned short *, int, const int);
11757 void vec_dststt (const short *, int, const int);
11758 void vec_dststt (const unsigned int *, int, const int);
11759 void vec_dststt (const int *, int, const int);
11760 void vec_dststt (const unsigned long *, int, const int);
11761 void vec_dststt (const long *, int, const int);
11762 void vec_dststt (const float *, int, const int);
11763
11764 void vec_dstt (const vector unsigned char *, int, const int);
11765 void vec_dstt (const vector signed char *, int, const int);
11766 void vec_dstt (const vector bool char *, int, const int);
11767 void vec_dstt (const vector unsigned short *, int, const int);
11768 void vec_dstt (const vector signed short *, int, const int);
11769 void vec_dstt (const vector bool short *, int, const int);
11770 void vec_dstt (const vector pixel *, int, const int);
11771 void vec_dstt (const vector unsigned int *, int, const int);
11772 void vec_dstt (const vector signed int *, int, const int);
11773 void vec_dstt (const vector bool int *, int, const int);
11774 void vec_dstt (const vector float *, int, const int);
11775 void vec_dstt (const unsigned char *, int, const int);
11776 void vec_dstt (const signed char *, int, const int);
11777 void vec_dstt (const unsigned short *, int, const int);
11778 void vec_dstt (const short *, int, const int);
11779 void vec_dstt (const unsigned int *, int, const int);
11780 void vec_dstt (const int *, int, const int);
11781 void vec_dstt (const unsigned long *, int, const int);
11782 void vec_dstt (const long *, int, const int);
11783 void vec_dstt (const float *, int, const int);
11784
11785 vector float vec_expte (vector float);
11786
11787 vector float vec_floor (vector float);
11788
11789 vector float vec_ld (int, const vector float *);
11790 vector float vec_ld (int, const float *);
11791 vector bool int vec_ld (int, const vector bool int *);
11792 vector signed int vec_ld (int, const vector signed int *);
11793 vector signed int vec_ld (int, const int *);
11794 vector signed int vec_ld (int, const long *);
11795 vector unsigned int vec_ld (int, const vector unsigned int *);
11796 vector unsigned int vec_ld (int, const unsigned int *);
11797 vector unsigned int vec_ld (int, const unsigned long *);
11798 vector bool short vec_ld (int, const vector bool short *);
11799 vector pixel vec_ld (int, const vector pixel *);
11800 vector signed short vec_ld (int, const vector signed short *);
11801 vector signed short vec_ld (int, const short *);
11802 vector unsigned short vec_ld (int, const vector unsigned short *);
11803 vector unsigned short vec_ld (int, const unsigned short *);
11804 vector bool char vec_ld (int, const vector bool char *);
11805 vector signed char vec_ld (int, const vector signed char *);
11806 vector signed char vec_ld (int, const signed char *);
11807 vector unsigned char vec_ld (int, const vector unsigned char *);
11808 vector unsigned char vec_ld (int, const unsigned char *);
11809
11810 vector signed char vec_lde (int, const signed char *);
11811 vector unsigned char vec_lde (int, const unsigned char *);
11812 vector signed short vec_lde (int, const short *);
11813 vector unsigned short vec_lde (int, const unsigned short *);
11814 vector float vec_lde (int, const float *);
11815 vector signed int vec_lde (int, const int *);
11816 vector unsigned int vec_lde (int, const unsigned int *);
11817 vector signed int vec_lde (int, const long *);
11818 vector unsigned int vec_lde (int, const unsigned long *);
11819
11820 vector float vec_lvewx (int, float *);
11821 vector signed int vec_lvewx (int, int *);
11822 vector unsigned int vec_lvewx (int, unsigned int *);
11823 vector signed int vec_lvewx (int, long *);
11824 vector unsigned int vec_lvewx (int, unsigned long *);
11825
11826 vector signed short vec_lvehx (int, short *);
11827 vector unsigned short vec_lvehx (int, unsigned short *);
11828
11829 vector signed char vec_lvebx (int, char *);
11830 vector unsigned char vec_lvebx (int, unsigned char *);
11831
11832 vector float vec_ldl (int, const vector float *);
11833 vector float vec_ldl (int, const float *);
11834 vector bool int vec_ldl (int, const vector bool int *);
11835 vector signed int vec_ldl (int, const vector signed int *);
11836 vector signed int vec_ldl (int, const int *);
11837 vector signed int vec_ldl (int, const long *);
11838 vector unsigned int vec_ldl (int, const vector unsigned int *);
11839 vector unsigned int vec_ldl (int, const unsigned int *);
11840 vector unsigned int vec_ldl (int, const unsigned long *);
11841 vector bool short vec_ldl (int, const vector bool short *);
11842 vector pixel vec_ldl (int, const vector pixel *);
11843 vector signed short vec_ldl (int, const vector signed short *);
11844 vector signed short vec_ldl (int, const short *);
11845 vector unsigned short vec_ldl (int, const vector unsigned short *);
11846 vector unsigned short vec_ldl (int, const unsigned short *);
11847 vector bool char vec_ldl (int, const vector bool char *);
11848 vector signed char vec_ldl (int, const vector signed char *);
11849 vector signed char vec_ldl (int, const signed char *);
11850 vector unsigned char vec_ldl (int, const vector unsigned char *);
11851 vector unsigned char vec_ldl (int, const unsigned char *);
11852
11853 vector float vec_loge (vector float);
11854
11855 vector unsigned char vec_lvsl (int, const volatile unsigned char *);
11856 vector unsigned char vec_lvsl (int, const volatile signed char *);
11857 vector unsigned char vec_lvsl (int, const volatile unsigned short *);
11858 vector unsigned char vec_lvsl (int, const volatile short *);
11859 vector unsigned char vec_lvsl (int, const volatile unsigned int *);
11860 vector unsigned char vec_lvsl (int, const volatile int *);
11861 vector unsigned char vec_lvsl (int, const volatile unsigned long *);
11862 vector unsigned char vec_lvsl (int, const volatile long *);
11863 vector unsigned char vec_lvsl (int, const volatile float *);
11864
11865 vector unsigned char vec_lvsr (int, const volatile unsigned char *);
11866 vector unsigned char vec_lvsr (int, const volatile signed char *);
11867 vector unsigned char vec_lvsr (int, const volatile unsigned short *);
11868 vector unsigned char vec_lvsr (int, const volatile short *);
11869 vector unsigned char vec_lvsr (int, const volatile unsigned int *);
11870 vector unsigned char vec_lvsr (int, const volatile int *);
11871 vector unsigned char vec_lvsr (int, const volatile unsigned long *);
11872 vector unsigned char vec_lvsr (int, const volatile long *);
11873 vector unsigned char vec_lvsr (int, const volatile float *);
11874
11875 vector float vec_madd (vector float, vector float, vector float);
11876
11877 vector signed short vec_madds (vector signed short,
11878                                vector signed short,
11879                                vector signed short);
11880
11881 vector unsigned char vec_max (vector bool char, vector unsigned char);
11882 vector unsigned char vec_max (vector unsigned char, vector bool char);
11883 vector unsigned char vec_max (vector unsigned char,
11884                               vector unsigned char);
11885 vector signed char vec_max (vector bool char, vector signed char);
11886 vector signed char vec_max (vector signed char, vector bool char);
11887 vector signed char vec_max (vector signed char, vector signed char);
11888 vector unsigned short vec_max (vector bool short,
11889                                vector unsigned short);
11890 vector unsigned short vec_max (vector unsigned short,
11891                                vector bool short);
11892 vector unsigned short vec_max (vector unsigned short,
11893                                vector unsigned short);
11894 vector signed short vec_max (vector bool short, vector signed short);
11895 vector signed short vec_max (vector signed short, vector bool short);
11896 vector signed short vec_max (vector signed short, vector signed short);
11897 vector unsigned int vec_max (vector bool int, vector unsigned int);
11898 vector unsigned int vec_max (vector unsigned int, vector bool int);
11899 vector unsigned int vec_max (vector unsigned int, vector unsigned int);
11900 vector signed int vec_max (vector bool int, vector signed int);
11901 vector signed int vec_max (vector signed int, vector bool int);
11902 vector signed int vec_max (vector signed int, vector signed int);
11903 vector float vec_max (vector float, vector float);
11904
11905 vector float vec_vmaxfp (vector float, vector float);
11906
11907 vector signed int vec_vmaxsw (vector bool int, vector signed int);
11908 vector signed int vec_vmaxsw (vector signed int, vector bool int);
11909 vector signed int vec_vmaxsw (vector signed int, vector signed int);
11910
11911 vector unsigned int vec_vmaxuw (vector bool int, vector unsigned int);
11912 vector unsigned int vec_vmaxuw (vector unsigned int, vector bool int);
11913 vector unsigned int vec_vmaxuw (vector unsigned int,
11914                                 vector unsigned int);
11915
11916 vector signed short vec_vmaxsh (vector bool short, vector signed short);
11917 vector signed short vec_vmaxsh (vector signed short, vector bool short);
11918 vector signed short vec_vmaxsh (vector signed short,
11919                                 vector signed short);
11920
11921 vector unsigned short vec_vmaxuh (vector bool short,
11922                                   vector unsigned short);
11923 vector unsigned short vec_vmaxuh (vector unsigned short,
11924                                   vector bool short);
11925 vector unsigned short vec_vmaxuh (vector unsigned short,
11926                                   vector unsigned short);
11927
11928 vector signed char vec_vmaxsb (vector bool char, vector signed char);
11929 vector signed char vec_vmaxsb (vector signed char, vector bool char);
11930 vector signed char vec_vmaxsb (vector signed char, vector signed char);
11931
11932 vector unsigned char vec_vmaxub (vector bool char,
11933                                  vector unsigned char);
11934 vector unsigned char vec_vmaxub (vector unsigned char,
11935                                  vector bool char);
11936 vector unsigned char vec_vmaxub (vector unsigned char,
11937                                  vector unsigned char);
11938
11939 vector bool char vec_mergeh (vector bool char, vector bool char);
11940 vector signed char vec_mergeh (vector signed char, vector signed char);
11941 vector unsigned char vec_mergeh (vector unsigned char,
11942                                  vector unsigned char);
11943 vector bool short vec_mergeh (vector bool short, vector bool short);
11944 vector pixel vec_mergeh (vector pixel, vector pixel);
11945 vector signed short vec_mergeh (vector signed short,
11946                                 vector signed short);
11947 vector unsigned short vec_mergeh (vector unsigned short,
11948                                   vector unsigned short);
11949 vector float vec_mergeh (vector float, vector float);
11950 vector bool int vec_mergeh (vector bool int, vector bool int);
11951 vector signed int vec_mergeh (vector signed int, vector signed int);
11952 vector unsigned int vec_mergeh (vector unsigned int,
11953                                 vector unsigned int);
11954
11955 vector float vec_vmrghw (vector float, vector float);
11956 vector bool int vec_vmrghw (vector bool int, vector bool int);
11957 vector signed int vec_vmrghw (vector signed int, vector signed int);
11958 vector unsigned int vec_vmrghw (vector unsigned int,
11959                                 vector unsigned int);
11960
11961 vector bool short vec_vmrghh (vector bool short, vector bool short);
11962 vector signed short vec_vmrghh (vector signed short,
11963                                 vector signed short);
11964 vector unsigned short vec_vmrghh (vector unsigned short,
11965                                   vector unsigned short);
11966 vector pixel vec_vmrghh (vector pixel, vector pixel);
11967
11968 vector bool char vec_vmrghb (vector bool char, vector bool char);
11969 vector signed char vec_vmrghb (vector signed char, vector signed char);
11970 vector unsigned char vec_vmrghb (vector unsigned char,
11971                                  vector unsigned char);
11972
11973 vector bool char vec_mergel (vector bool char, vector bool char);
11974 vector signed char vec_mergel (vector signed char, vector signed char);
11975 vector unsigned char vec_mergel (vector unsigned char,
11976                                  vector unsigned char);
11977 vector bool short vec_mergel (vector bool short, vector bool short);
11978 vector pixel vec_mergel (vector pixel, vector pixel);
11979 vector signed short vec_mergel (vector signed short,
11980                                 vector signed short);
11981 vector unsigned short vec_mergel (vector unsigned short,
11982                                   vector unsigned short);
11983 vector float vec_mergel (vector float, vector float);
11984 vector bool int vec_mergel (vector bool int, vector bool int);
11985 vector signed int vec_mergel (vector signed int, vector signed int);
11986 vector unsigned int vec_mergel (vector unsigned int,
11987                                 vector unsigned int);
11988
11989 vector float vec_vmrglw (vector float, vector float);
11990 vector signed int vec_vmrglw (vector signed int, vector signed int);
11991 vector unsigned int vec_vmrglw (vector unsigned int,
11992                                 vector unsigned int);
11993 vector bool int vec_vmrglw (vector bool int, vector bool int);
11994
11995 vector bool short vec_vmrglh (vector bool short, vector bool short);
11996 vector signed short vec_vmrglh (vector signed short,
11997                                 vector signed short);
11998 vector unsigned short vec_vmrglh (vector unsigned short,
11999                                   vector unsigned short);
12000 vector pixel vec_vmrglh (vector pixel, vector pixel);
12001
12002 vector bool char vec_vmrglb (vector bool char, vector bool char);
12003 vector signed char vec_vmrglb (vector signed char, vector signed char);
12004 vector unsigned char vec_vmrglb (vector unsigned char,
12005                                  vector unsigned char);
12006
12007 vector unsigned short vec_mfvscr (void);
12008
12009 vector unsigned char vec_min (vector bool char, vector unsigned char);
12010 vector unsigned char vec_min (vector unsigned char, vector bool char);
12011 vector unsigned char vec_min (vector unsigned char,
12012                               vector unsigned char);
12013 vector signed char vec_min (vector bool char, vector signed char);
12014 vector signed char vec_min (vector signed char, vector bool char);
12015 vector signed char vec_min (vector signed char, vector signed char);
12016 vector unsigned short vec_min (vector bool short,
12017                                vector unsigned short);
12018 vector unsigned short vec_min (vector unsigned short,
12019                                vector bool short);
12020 vector unsigned short vec_min (vector unsigned short,
12021                                vector unsigned short);
12022 vector signed short vec_min (vector bool short, vector signed short);
12023 vector signed short vec_min (vector signed short, vector bool short);
12024 vector signed short vec_min (vector signed short, vector signed short);
12025 vector unsigned int vec_min (vector bool int, vector unsigned int);
12026 vector unsigned int vec_min (vector unsigned int, vector bool int);
12027 vector unsigned int vec_min (vector unsigned int, vector unsigned int);
12028 vector signed int vec_min (vector bool int, vector signed int);
12029 vector signed int vec_min (vector signed int, vector bool int);
12030 vector signed int vec_min (vector signed int, vector signed int);
12031 vector float vec_min (vector float, vector float);
12032
12033 vector float vec_vminfp (vector float, vector float);
12034
12035 vector signed int vec_vminsw (vector bool int, vector signed int);
12036 vector signed int vec_vminsw (vector signed int, vector bool int);
12037 vector signed int vec_vminsw (vector signed int, vector signed int);
12038
12039 vector unsigned int vec_vminuw (vector bool int, vector unsigned int);
12040 vector unsigned int vec_vminuw (vector unsigned int, vector bool int);
12041 vector unsigned int vec_vminuw (vector unsigned int,
12042                                 vector unsigned int);
12043
12044 vector signed short vec_vminsh (vector bool short, vector signed short);
12045 vector signed short vec_vminsh (vector signed short, vector bool short);
12046 vector signed short vec_vminsh (vector signed short,
12047                                 vector signed short);
12048
12049 vector unsigned short vec_vminuh (vector bool short,
12050                                   vector unsigned short);
12051 vector unsigned short vec_vminuh (vector unsigned short,
12052                                   vector bool short);
12053 vector unsigned short vec_vminuh (vector unsigned short,
12054                                   vector unsigned short);
12055
12056 vector signed char vec_vminsb (vector bool char, vector signed char);
12057 vector signed char vec_vminsb (vector signed char, vector bool char);
12058 vector signed char vec_vminsb (vector signed char, vector signed char);
12059
12060 vector unsigned char vec_vminub (vector bool char,
12061                                  vector unsigned char);
12062 vector unsigned char vec_vminub (vector unsigned char,
12063                                  vector bool char);
12064 vector unsigned char vec_vminub (vector unsigned char,
12065                                  vector unsigned char);
12066
12067 vector signed short vec_mladd (vector signed short,
12068                                vector signed short,
12069                                vector signed short);
12070 vector signed short vec_mladd (vector signed short,
12071                                vector unsigned short,
12072                                vector unsigned short);
12073 vector signed short vec_mladd (vector unsigned short,
12074                                vector signed short,
12075                                vector signed short);
12076 vector unsigned short vec_mladd (vector unsigned short,
12077                                  vector unsigned short,
12078                                  vector unsigned short);
12079
12080 vector signed short vec_mradds (vector signed short,
12081                                 vector signed short,
12082                                 vector signed short);
12083
12084 vector unsigned int vec_msum (vector unsigned char,
12085                               vector unsigned char,
12086                               vector unsigned int);
12087 vector signed int vec_msum (vector signed char,
12088                             vector unsigned char,
12089                             vector signed int);
12090 vector unsigned int vec_msum (vector unsigned short,
12091                               vector unsigned short,
12092                               vector unsigned int);
12093 vector signed int vec_msum (vector signed short,
12094                             vector signed short,
12095                             vector signed int);
12096
12097 vector signed int vec_vmsumshm (vector signed short,
12098                                 vector signed short,
12099                                 vector signed int);
12100
12101 vector unsigned int vec_vmsumuhm (vector unsigned short,
12102                                   vector unsigned short,
12103                                   vector unsigned int);
12104
12105 vector signed int vec_vmsummbm (vector signed char,
12106                                 vector unsigned char,
12107                                 vector signed int);
12108
12109 vector unsigned int vec_vmsumubm (vector unsigned char,
12110                                   vector unsigned char,
12111                                   vector unsigned int);
12112
12113 vector unsigned int vec_msums (vector unsigned short,
12114                                vector unsigned short,
12115                                vector unsigned int);
12116 vector signed int vec_msums (vector signed short,
12117                              vector signed short,
12118                              vector signed int);
12119
12120 vector signed int vec_vmsumshs (vector signed short,
12121                                 vector signed short,
12122                                 vector signed int);
12123
12124 vector unsigned int vec_vmsumuhs (vector unsigned short,
12125                                   vector unsigned short,
12126                                   vector unsigned int);
12127
12128 void vec_mtvscr (vector signed int);
12129 void vec_mtvscr (vector unsigned int);
12130 void vec_mtvscr (vector bool int);
12131 void vec_mtvscr (vector signed short);
12132 void vec_mtvscr (vector unsigned short);
12133 void vec_mtvscr (vector bool short);
12134 void vec_mtvscr (vector pixel);
12135 void vec_mtvscr (vector signed char);
12136 void vec_mtvscr (vector unsigned char);
12137 void vec_mtvscr (vector bool char);
12138
12139 vector unsigned short vec_mule (vector unsigned char,
12140                                 vector unsigned char);
12141 vector signed short vec_mule (vector signed char,
12142                               vector signed char);
12143 vector unsigned int vec_mule (vector unsigned short,
12144                               vector unsigned short);
12145 vector signed int vec_mule (vector signed short, vector signed short);
12146
12147 vector signed int vec_vmulesh (vector signed short,
12148                                vector signed short);
12149
12150 vector unsigned int vec_vmuleuh (vector unsigned short,
12151                                  vector unsigned short);
12152
12153 vector signed short vec_vmulesb (vector signed char,
12154                                  vector signed char);
12155
12156 vector unsigned short vec_vmuleub (vector unsigned char,
12157                                   vector unsigned char);
12158
12159 vector unsigned short vec_mulo (vector unsigned char,
12160                                 vector unsigned char);
12161 vector signed short vec_mulo (vector signed char, vector signed char);
12162 vector unsigned int vec_mulo (vector unsigned short,
12163                               vector unsigned short);
12164 vector signed int vec_mulo (vector signed short, vector signed short);
12165
12166 vector signed int vec_vmulosh (vector signed short,
12167                                vector signed short);
12168
12169 vector unsigned int vec_vmulouh (vector unsigned short,
12170                                  vector unsigned short);
12171
12172 vector signed short vec_vmulosb (vector signed char,
12173                                  vector signed char);
12174
12175 vector unsigned short vec_vmuloub (vector unsigned char,
12176                                    vector unsigned char);
12177
12178 vector float vec_nmsub (vector float, vector float, vector float);
12179
12180 vector float vec_nor (vector float, vector float);
12181 vector signed int vec_nor (vector signed int, vector signed int);
12182 vector unsigned int vec_nor (vector unsigned int, vector unsigned int);
12183 vector bool int vec_nor (vector bool int, vector bool int);
12184 vector signed short vec_nor (vector signed short, vector signed short);
12185 vector unsigned short vec_nor (vector unsigned short,
12186                                vector unsigned short);
12187 vector bool short vec_nor (vector bool short, vector bool short);
12188 vector signed char vec_nor (vector signed char, vector signed char);
12189 vector unsigned char vec_nor (vector unsigned char,
12190                               vector unsigned char);
12191 vector bool char vec_nor (vector bool char, vector bool char);
12192
12193 vector float vec_or (vector float, vector float);
12194 vector float vec_or (vector float, vector bool int);
12195 vector float vec_or (vector bool int, vector float);
12196 vector bool int vec_or (vector bool int, vector bool int);
12197 vector signed int vec_or (vector bool int, vector signed int);
12198 vector signed int vec_or (vector signed int, vector bool int);
12199 vector signed int vec_or (vector signed int, vector signed int);
12200 vector unsigned int vec_or (vector bool int, vector unsigned int);
12201 vector unsigned int vec_or (vector unsigned int, vector bool int);
12202 vector unsigned int vec_or (vector unsigned int, vector unsigned int);
12203 vector bool short vec_or (vector bool short, vector bool short);
12204 vector signed short vec_or (vector bool short, vector signed short);
12205 vector signed short vec_or (vector signed short, vector bool short);
12206 vector signed short vec_or (vector signed short, vector signed short);
12207 vector unsigned short vec_or (vector bool short, vector unsigned short);
12208 vector unsigned short vec_or (vector unsigned short, vector bool short);
12209 vector unsigned short vec_or (vector unsigned short,
12210                               vector unsigned short);
12211 vector signed char vec_or (vector bool char, vector signed char);
12212 vector bool char vec_or (vector bool char, vector bool char);
12213 vector signed char vec_or (vector signed char, vector bool char);
12214 vector signed char vec_or (vector signed char, vector signed char);
12215 vector unsigned char vec_or (vector bool char, vector unsigned char);
12216 vector unsigned char vec_or (vector unsigned char, vector bool char);
12217 vector unsigned char vec_or (vector unsigned char,
12218                              vector unsigned char);
12219
12220 vector signed char vec_pack (vector signed short, vector signed short);
12221 vector unsigned char vec_pack (vector unsigned short,
12222                                vector unsigned short);
12223 vector bool char vec_pack (vector bool short, vector bool short);
12224 vector signed short vec_pack (vector signed int, vector signed int);
12225 vector unsigned short vec_pack (vector unsigned int,
12226                                 vector unsigned int);
12227 vector bool short vec_pack (vector bool int, vector bool int);
12228
12229 vector bool short vec_vpkuwum (vector bool int, vector bool int);
12230 vector signed short vec_vpkuwum (vector signed int, vector signed int);
12231 vector unsigned short vec_vpkuwum (vector unsigned int,
12232                                    vector unsigned int);
12233
12234 vector bool char vec_vpkuhum (vector bool short, vector bool short);
12235 vector signed char vec_vpkuhum (vector signed short,
12236                                 vector signed short);
12237 vector unsigned char vec_vpkuhum (vector unsigned short,
12238                                   vector unsigned short);
12239
12240 vector pixel vec_packpx (vector unsigned int, vector unsigned int);
12241
12242 vector unsigned char vec_packs (vector unsigned short,
12243                                 vector unsigned short);
12244 vector signed char vec_packs (vector signed short, vector signed short);
12245 vector unsigned short vec_packs (vector unsigned int,
12246                                  vector unsigned int);
12247 vector signed short vec_packs (vector signed int, vector signed int);
12248
12249 vector signed short vec_vpkswss (vector signed int, vector signed int);
12250
12251 vector unsigned short vec_vpkuwus (vector unsigned int,
12252                                    vector unsigned int);
12253
12254 vector signed char vec_vpkshss (vector signed short,
12255                                 vector signed short);
12256
12257 vector unsigned char vec_vpkuhus (vector unsigned short,
12258                                   vector unsigned short);
12259
12260 vector unsigned char vec_packsu (vector unsigned short,
12261                                  vector unsigned short);
12262 vector unsigned char vec_packsu (vector signed short,
12263                                  vector signed short);
12264 vector unsigned short vec_packsu (vector unsigned int,
12265                                   vector unsigned int);
12266 vector unsigned short vec_packsu (vector signed int, vector signed int);
12267
12268 vector unsigned short vec_vpkswus (vector signed int,
12269                                    vector signed int);
12270
12271 vector unsigned char vec_vpkshus (vector signed short,
12272                                   vector signed short);
12273
12274 vector float vec_perm (vector float,
12275                        vector float,
12276                        vector unsigned char);
12277 vector signed int vec_perm (vector signed int,
12278                             vector signed int,
12279                             vector unsigned char);
12280 vector unsigned int vec_perm (vector unsigned int,
12281                               vector unsigned int,
12282                               vector unsigned char);
12283 vector bool int vec_perm (vector bool int,
12284                           vector bool int,
12285                           vector unsigned char);
12286 vector signed short vec_perm (vector signed short,
12287                               vector signed short,
12288                               vector unsigned char);
12289 vector unsigned short vec_perm (vector unsigned short,
12290                                 vector unsigned short,
12291                                 vector unsigned char);
12292 vector bool short vec_perm (vector bool short,
12293                             vector bool short,
12294                             vector unsigned char);
12295 vector pixel vec_perm (vector pixel,
12296                        vector pixel,
12297                        vector unsigned char);
12298 vector signed char vec_perm (vector signed char,
12299                              vector signed char,
12300                              vector unsigned char);
12301 vector unsigned char vec_perm (vector unsigned char,
12302                                vector unsigned char,
12303                                vector unsigned char);
12304 vector bool char vec_perm (vector bool char,
12305                            vector bool char,
12306                            vector unsigned char);
12307
12308 vector float vec_re (vector float);
12309
12310 vector signed char vec_rl (vector signed char,
12311                            vector unsigned char);
12312 vector unsigned char vec_rl (vector unsigned char,
12313                              vector unsigned char);
12314 vector signed short vec_rl (vector signed short, vector unsigned short);
12315 vector unsigned short vec_rl (vector unsigned short,
12316                               vector unsigned short);
12317 vector signed int vec_rl (vector signed int, vector unsigned int);
12318 vector unsigned int vec_rl (vector unsigned int, vector unsigned int);
12319
12320 vector signed int vec_vrlw (vector signed int, vector unsigned int);
12321 vector unsigned int vec_vrlw (vector unsigned int, vector unsigned int);
12322
12323 vector signed short vec_vrlh (vector signed short,
12324                               vector unsigned short);
12325 vector unsigned short vec_vrlh (vector unsigned short,
12326                                 vector unsigned short);
12327
12328 vector signed char vec_vrlb (vector signed char, vector unsigned char);
12329 vector unsigned char vec_vrlb (vector unsigned char,
12330                                vector unsigned char);
12331
12332 vector float vec_round (vector float);
12333
12334 vector float vec_recip (vector float, vector float);
12335
12336 vector float vec_rsqrt (vector float);
12337
12338 vector float vec_rsqrte (vector float);
12339
12340 vector float vec_sel (vector float, vector float, vector bool int);
12341 vector float vec_sel (vector float, vector float, vector unsigned int);
12342 vector signed int vec_sel (vector signed int,
12343                            vector signed int,
12344                            vector bool int);
12345 vector signed int vec_sel (vector signed int,
12346                            vector signed int,
12347                            vector unsigned int);
12348 vector unsigned int vec_sel (vector unsigned int,
12349                              vector unsigned int,
12350                              vector bool int);
12351 vector unsigned int vec_sel (vector unsigned int,
12352                              vector unsigned int,
12353                              vector unsigned int);
12354 vector bool int vec_sel (vector bool int,
12355                          vector bool int,
12356                          vector bool int);
12357 vector bool int vec_sel (vector bool int,
12358                          vector bool int,
12359                          vector unsigned int);
12360 vector signed short vec_sel (vector signed short,
12361                              vector signed short,
12362                              vector bool short);
12363 vector signed short vec_sel (vector signed short,
12364                              vector signed short,
12365                              vector unsigned short);
12366 vector unsigned short vec_sel (vector unsigned short,
12367                                vector unsigned short,
12368                                vector bool short);
12369 vector unsigned short vec_sel (vector unsigned short,
12370                                vector unsigned short,
12371                                vector unsigned short);
12372 vector bool short vec_sel (vector bool short,
12373                            vector bool short,
12374                            vector bool short);
12375 vector bool short vec_sel (vector bool short,
12376                            vector bool short,
12377                            vector unsigned short);
12378 vector signed char vec_sel (vector signed char,
12379                             vector signed char,
12380                             vector bool char);
12381 vector signed char vec_sel (vector signed char,
12382                             vector signed char,
12383                             vector unsigned char);
12384 vector unsigned char vec_sel (vector unsigned char,
12385                               vector unsigned char,
12386                               vector bool char);
12387 vector unsigned char vec_sel (vector unsigned char,
12388                               vector unsigned char,
12389                               vector unsigned char);
12390 vector bool char vec_sel (vector bool char,
12391                           vector bool char,
12392                           vector bool char);
12393 vector bool char vec_sel (vector bool char,
12394                           vector bool char,
12395                           vector unsigned char);
12396
12397 vector signed char vec_sl (vector signed char,
12398                            vector unsigned char);
12399 vector unsigned char vec_sl (vector unsigned char,
12400                              vector unsigned char);
12401 vector signed short vec_sl (vector signed short, vector unsigned short);
12402 vector unsigned short vec_sl (vector unsigned short,
12403                               vector unsigned short);
12404 vector signed int vec_sl (vector signed int, vector unsigned int);
12405 vector unsigned int vec_sl (vector unsigned int, vector unsigned int);
12406
12407 vector signed int vec_vslw (vector signed int, vector unsigned int);
12408 vector unsigned int vec_vslw (vector unsigned int, vector unsigned int);
12409
12410 vector signed short vec_vslh (vector signed short,
12411                               vector unsigned short);
12412 vector unsigned short vec_vslh (vector unsigned short,
12413                                 vector unsigned short);
12414
12415 vector signed char vec_vslb (vector signed char, vector unsigned char);
12416 vector unsigned char vec_vslb (vector unsigned char,
12417                                vector unsigned char);
12418
12419 vector float vec_sld (vector float, vector float, const int);
12420 vector signed int vec_sld (vector signed int,
12421                            vector signed int,
12422                            const int);
12423 vector unsigned int vec_sld (vector unsigned int,
12424                              vector unsigned int,
12425                              const int);
12426 vector bool int vec_sld (vector bool int,
12427                          vector bool int,
12428                          const int);
12429 vector signed short vec_sld (vector signed short,
12430                              vector signed short,
12431                              const int);
12432 vector unsigned short vec_sld (vector unsigned short,
12433                                vector unsigned short,
12434                                const int);
12435 vector bool short vec_sld (vector bool short,
12436                            vector bool short,
12437                            const int);
12438 vector pixel vec_sld (vector pixel,
12439                       vector pixel,
12440                       const int);
12441 vector signed char vec_sld (vector signed char,
12442                             vector signed char,
12443                             const int);
12444 vector unsigned char vec_sld (vector unsigned char,
12445                               vector unsigned char,
12446                               const int);
12447 vector bool char vec_sld (vector bool char,
12448                           vector bool char,
12449                           const int);
12450
12451 vector signed int vec_sll (vector signed int,
12452                            vector unsigned int);
12453 vector signed int vec_sll (vector signed int,
12454                            vector unsigned short);
12455 vector signed int vec_sll (vector signed int,
12456                            vector unsigned char);
12457 vector unsigned int vec_sll (vector unsigned int,
12458                              vector unsigned int);
12459 vector unsigned int vec_sll (vector unsigned int,
12460                              vector unsigned short);
12461 vector unsigned int vec_sll (vector unsigned int,
12462                              vector unsigned char);
12463 vector bool int vec_sll (vector bool int,
12464                          vector unsigned int);
12465 vector bool int vec_sll (vector bool int,
12466                          vector unsigned short);
12467 vector bool int vec_sll (vector bool int,
12468                          vector unsigned char);
12469 vector signed short vec_sll (vector signed short,
12470                              vector unsigned int);
12471 vector signed short vec_sll (vector signed short,
12472                              vector unsigned short);
12473 vector signed short vec_sll (vector signed short,
12474                              vector unsigned char);
12475 vector unsigned short vec_sll (vector unsigned short,
12476                                vector unsigned int);
12477 vector unsigned short vec_sll (vector unsigned short,
12478                                vector unsigned short);
12479 vector unsigned short vec_sll (vector unsigned short,
12480                                vector unsigned char);
12481 vector bool short vec_sll (vector bool short, vector unsigned int);
12482 vector bool short vec_sll (vector bool short, vector unsigned short);
12483 vector bool short vec_sll (vector bool short, vector unsigned char);
12484 vector pixel vec_sll (vector pixel, vector unsigned int);
12485 vector pixel vec_sll (vector pixel, vector unsigned short);
12486 vector pixel vec_sll (vector pixel, vector unsigned char);
12487 vector signed char vec_sll (vector signed char, vector unsigned int);
12488 vector signed char vec_sll (vector signed char, vector unsigned short);
12489 vector signed char vec_sll (vector signed char, vector unsigned char);
12490 vector unsigned char vec_sll (vector unsigned char,
12491                               vector unsigned int);
12492 vector unsigned char vec_sll (vector unsigned char,
12493                               vector unsigned short);
12494 vector unsigned char vec_sll (vector unsigned char,
12495                               vector unsigned char);
12496 vector bool char vec_sll (vector bool char, vector unsigned int);
12497 vector bool char vec_sll (vector bool char, vector unsigned short);
12498 vector bool char vec_sll (vector bool char, vector unsigned char);
12499
12500 vector float vec_slo (vector float, vector signed char);
12501 vector float vec_slo (vector float, vector unsigned char);
12502 vector signed int vec_slo (vector signed int, vector signed char);
12503 vector signed int vec_slo (vector signed int, vector unsigned char);
12504 vector unsigned int vec_slo (vector unsigned int, vector signed char);
12505 vector unsigned int vec_slo (vector unsigned int, vector unsigned char);
12506 vector signed short vec_slo (vector signed short, vector signed char);
12507 vector signed short vec_slo (vector signed short, vector unsigned char);
12508 vector unsigned short vec_slo (vector unsigned short,
12509                                vector signed char);
12510 vector unsigned short vec_slo (vector unsigned short,
12511                                vector unsigned char);
12512 vector pixel vec_slo (vector pixel, vector signed char);
12513 vector pixel vec_slo (vector pixel, vector unsigned char);
12514 vector signed char vec_slo (vector signed char, vector signed char);
12515 vector signed char vec_slo (vector signed char, vector unsigned char);
12516 vector unsigned char vec_slo (vector unsigned char, vector signed char);
12517 vector unsigned char vec_slo (vector unsigned char,
12518                               vector unsigned char);
12519
12520 vector signed char vec_splat (vector signed char, const int);
12521 vector unsigned char vec_splat (vector unsigned char, const int);
12522 vector bool char vec_splat (vector bool char, const int);
12523 vector signed short vec_splat (vector signed short, const int);
12524 vector unsigned short vec_splat (vector unsigned short, const int);
12525 vector bool short vec_splat (vector bool short, const int);
12526 vector pixel vec_splat (vector pixel, const int);
12527 vector float vec_splat (vector float, const int);
12528 vector signed int vec_splat (vector signed int, const int);
12529 vector unsigned int vec_splat (vector unsigned int, const int);
12530 vector bool int vec_splat (vector bool int, const int);
12531
12532 vector float vec_vspltw (vector float, const int);
12533 vector signed int vec_vspltw (vector signed int, const int);
12534 vector unsigned int vec_vspltw (vector unsigned int, const int);
12535 vector bool int vec_vspltw (vector bool int, const int);
12536
12537 vector bool short vec_vsplth (vector bool short, const int);
12538 vector signed short vec_vsplth (vector signed short, const int);
12539 vector unsigned short vec_vsplth (vector unsigned short, const int);
12540 vector pixel vec_vsplth (vector pixel, const int);
12541
12542 vector signed char vec_vspltb (vector signed char, const int);
12543 vector unsigned char vec_vspltb (vector unsigned char, const int);
12544 vector bool char vec_vspltb (vector bool char, const int);
12545
12546 vector signed char vec_splat_s8 (const int);
12547
12548 vector signed short vec_splat_s16 (const int);
12549
12550 vector signed int vec_splat_s32 (const int);
12551
12552 vector unsigned char vec_splat_u8 (const int);
12553
12554 vector unsigned short vec_splat_u16 (const int);
12555
12556 vector unsigned int vec_splat_u32 (const int);
12557
12558 vector signed char vec_sr (vector signed char, vector unsigned char);
12559 vector unsigned char vec_sr (vector unsigned char,
12560                              vector unsigned char);
12561 vector signed short vec_sr (vector signed short,
12562                             vector unsigned short);
12563 vector unsigned short vec_sr (vector unsigned short,
12564                               vector unsigned short);
12565 vector signed int vec_sr (vector signed int, vector unsigned int);
12566 vector unsigned int vec_sr (vector unsigned int, vector unsigned int);
12567
12568 vector signed int vec_vsrw (vector signed int, vector unsigned int);
12569 vector unsigned int vec_vsrw (vector unsigned int, vector unsigned int);
12570
12571 vector signed short vec_vsrh (vector signed short,
12572                               vector unsigned short);
12573 vector unsigned short vec_vsrh (vector unsigned short,
12574                                 vector unsigned short);
12575
12576 vector signed char vec_vsrb (vector signed char, vector unsigned char);
12577 vector unsigned char vec_vsrb (vector unsigned char,
12578                                vector unsigned char);
12579
12580 vector signed char vec_sra (vector signed char, vector unsigned char);
12581 vector unsigned char vec_sra (vector unsigned char,
12582                               vector unsigned char);
12583 vector signed short vec_sra (vector signed short,
12584                              vector unsigned short);
12585 vector unsigned short vec_sra (vector unsigned short,
12586                                vector unsigned short);
12587 vector signed int vec_sra (vector signed int, vector unsigned int);
12588 vector unsigned int vec_sra (vector unsigned int, vector unsigned int);
12589
12590 vector signed int vec_vsraw (vector signed int, vector unsigned int);
12591 vector unsigned int vec_vsraw (vector unsigned int,
12592                                vector unsigned int);
12593
12594 vector signed short vec_vsrah (vector signed short,
12595                                vector unsigned short);
12596 vector unsigned short vec_vsrah (vector unsigned short,
12597                                  vector unsigned short);
12598
12599 vector signed char vec_vsrab (vector signed char, vector unsigned char);
12600 vector unsigned char vec_vsrab (vector unsigned char,
12601                                 vector unsigned char);
12602
12603 vector signed int vec_srl (vector signed int, vector unsigned int);
12604 vector signed int vec_srl (vector signed int, vector unsigned short);
12605 vector signed int vec_srl (vector signed int, vector unsigned char);
12606 vector unsigned int vec_srl (vector unsigned int, vector unsigned int);
12607 vector unsigned int vec_srl (vector unsigned int,
12608                              vector unsigned short);
12609 vector unsigned int vec_srl (vector unsigned int, vector unsigned char);
12610 vector bool int vec_srl (vector bool int, vector unsigned int);
12611 vector bool int vec_srl (vector bool int, vector unsigned short);
12612 vector bool int vec_srl (vector bool int, vector unsigned char);
12613 vector signed short vec_srl (vector signed short, vector unsigned int);
12614 vector signed short vec_srl (vector signed short,
12615                              vector unsigned short);
12616 vector signed short vec_srl (vector signed short, vector unsigned char);
12617 vector unsigned short vec_srl (vector unsigned short,
12618                                vector unsigned int);
12619 vector unsigned short vec_srl (vector unsigned short,
12620                                vector unsigned short);
12621 vector unsigned short vec_srl (vector unsigned short,
12622                                vector unsigned char);
12623 vector bool short vec_srl (vector bool short, vector unsigned int);
12624 vector bool short vec_srl (vector bool short, vector unsigned short);
12625 vector bool short vec_srl (vector bool short, vector unsigned char);
12626 vector pixel vec_srl (vector pixel, vector unsigned int);
12627 vector pixel vec_srl (vector pixel, vector unsigned short);
12628 vector pixel vec_srl (vector pixel, vector unsigned char);
12629 vector signed char vec_srl (vector signed char, vector unsigned int);
12630 vector signed char vec_srl (vector signed char, vector unsigned short);
12631 vector signed char vec_srl (vector signed char, vector unsigned char);
12632 vector unsigned char vec_srl (vector unsigned char,
12633                               vector unsigned int);
12634 vector unsigned char vec_srl (vector unsigned char,
12635                               vector unsigned short);
12636 vector unsigned char vec_srl (vector unsigned char,
12637                               vector unsigned char);
12638 vector bool char vec_srl (vector bool char, vector unsigned int);
12639 vector bool char vec_srl (vector bool char, vector unsigned short);
12640 vector bool char vec_srl (vector bool char, vector unsigned char);
12641
12642 vector float vec_sro (vector float, vector signed char);
12643 vector float vec_sro (vector float, vector unsigned char);
12644 vector signed int vec_sro (vector signed int, vector signed char);
12645 vector signed int vec_sro (vector signed int, vector unsigned char);
12646 vector unsigned int vec_sro (vector unsigned int, vector signed char);
12647 vector unsigned int vec_sro (vector unsigned int, vector unsigned char);
12648 vector signed short vec_sro (vector signed short, vector signed char);
12649 vector signed short vec_sro (vector signed short, vector unsigned char);
12650 vector unsigned short vec_sro (vector unsigned short,
12651                                vector signed char);
12652 vector unsigned short vec_sro (vector unsigned short,
12653                                vector unsigned char);
12654 vector pixel vec_sro (vector pixel, vector signed char);
12655 vector pixel vec_sro (vector pixel, vector unsigned char);
12656 vector signed char vec_sro (vector signed char, vector signed char);
12657 vector signed char vec_sro (vector signed char, vector unsigned char);
12658 vector unsigned char vec_sro (vector unsigned char, vector signed char);
12659 vector unsigned char vec_sro (vector unsigned char,
12660                               vector unsigned char);
12661
12662 void vec_st (vector float, int, vector float *);
12663 void vec_st (vector float, int, float *);
12664 void vec_st (vector signed int, int, vector signed int *);
12665 void vec_st (vector signed int, int, int *);
12666 void vec_st (vector unsigned int, int, vector unsigned int *);
12667 void vec_st (vector unsigned int, int, unsigned int *);
12668 void vec_st (vector bool int, int, vector bool int *);
12669 void vec_st (vector bool int, int, unsigned int *);
12670 void vec_st (vector bool int, int, int *);
12671 void vec_st (vector signed short, int, vector signed short *);
12672 void vec_st (vector signed short, int, short *);
12673 void vec_st (vector unsigned short, int, vector unsigned short *);
12674 void vec_st (vector unsigned short, int, unsigned short *);
12675 void vec_st (vector bool short, int, vector bool short *);
12676 void vec_st (vector bool short, int, unsigned short *);
12677 void vec_st (vector pixel, int, vector pixel *);
12678 void vec_st (vector pixel, int, unsigned short *);
12679 void vec_st (vector pixel, int, short *);
12680 void vec_st (vector bool short, int, short *);
12681 void vec_st (vector signed char, int, vector signed char *);
12682 void vec_st (vector signed char, int, signed char *);
12683 void vec_st (vector unsigned char, int, vector unsigned char *);
12684 void vec_st (vector unsigned char, int, unsigned char *);
12685 void vec_st (vector bool char, int, vector bool char *);
12686 void vec_st (vector bool char, int, unsigned char *);
12687 void vec_st (vector bool char, int, signed char *);
12688
12689 void vec_ste (vector signed char, int, signed char *);
12690 void vec_ste (vector unsigned char, int, unsigned char *);
12691 void vec_ste (vector bool char, int, signed char *);
12692 void vec_ste (vector bool char, int, unsigned char *);
12693 void vec_ste (vector signed short, int, short *);
12694 void vec_ste (vector unsigned short, int, unsigned short *);
12695 void vec_ste (vector bool short, int, short *);
12696 void vec_ste (vector bool short, int, unsigned short *);
12697 void vec_ste (vector pixel, int, short *);
12698 void vec_ste (vector pixel, int, unsigned short *);
12699 void vec_ste (vector float, int, float *);
12700 void vec_ste (vector signed int, int, int *);
12701 void vec_ste (vector unsigned int, int, unsigned int *);
12702 void vec_ste (vector bool int, int, int *);
12703 void vec_ste (vector bool int, int, unsigned int *);
12704
12705 void vec_stvewx (vector float, int, float *);
12706 void vec_stvewx (vector signed int, int, int *);
12707 void vec_stvewx (vector unsigned int, int, unsigned int *);
12708 void vec_stvewx (vector bool int, int, int *);
12709 void vec_stvewx (vector bool int, int, unsigned int *);
12710
12711 void vec_stvehx (vector signed short, int, short *);
12712 void vec_stvehx (vector unsigned short, int, unsigned short *);
12713 void vec_stvehx (vector bool short, int, short *);
12714 void vec_stvehx (vector bool short, int, unsigned short *);
12715 void vec_stvehx (vector pixel, int, short *);
12716 void vec_stvehx (vector pixel, int, unsigned short *);
12717
12718 void vec_stvebx (vector signed char, int, signed char *);
12719 void vec_stvebx (vector unsigned char, int, unsigned char *);
12720 void vec_stvebx (vector bool char, int, signed char *);
12721 void vec_stvebx (vector bool char, int, unsigned char *);
12722
12723 void vec_stl (vector float, int, vector float *);
12724 void vec_stl (vector float, int, float *);
12725 void vec_stl (vector signed int, int, vector signed int *);
12726 void vec_stl (vector signed int, int, int *);
12727 void vec_stl (vector unsigned int, int, vector unsigned int *);
12728 void vec_stl (vector unsigned int, int, unsigned int *);
12729 void vec_stl (vector bool int, int, vector bool int *);
12730 void vec_stl (vector bool int, int, unsigned int *);
12731 void vec_stl (vector bool int, int, int *);
12732 void vec_stl (vector signed short, int, vector signed short *);
12733 void vec_stl (vector signed short, int, short *);
12734 void vec_stl (vector unsigned short, int, vector unsigned short *);
12735 void vec_stl (vector unsigned short, int, unsigned short *);
12736 void vec_stl (vector bool short, int, vector bool short *);
12737 void vec_stl (vector bool short, int, unsigned short *);
12738 void vec_stl (vector bool short, int, short *);
12739 void vec_stl (vector pixel, int, vector pixel *);
12740 void vec_stl (vector pixel, int, unsigned short *);
12741 void vec_stl (vector pixel, int, short *);
12742 void vec_stl (vector signed char, int, vector signed char *);
12743 void vec_stl (vector signed char, int, signed char *);
12744 void vec_stl (vector unsigned char, int, vector unsigned char *);
12745 void vec_stl (vector unsigned char, int, unsigned char *);
12746 void vec_stl (vector bool char, int, vector bool char *);
12747 void vec_stl (vector bool char, int, unsigned char *);
12748 void vec_stl (vector bool char, int, signed char *);
12749
12750 vector signed char vec_sub (vector bool char, vector signed char);
12751 vector signed char vec_sub (vector signed char, vector bool char);
12752 vector signed char vec_sub (vector signed char, vector signed char);
12753 vector unsigned char vec_sub (vector bool char, vector unsigned char);
12754 vector unsigned char vec_sub (vector unsigned char, vector bool char);
12755 vector unsigned char vec_sub (vector unsigned char,
12756                               vector unsigned char);
12757 vector signed short vec_sub (vector bool short, vector signed short);
12758 vector signed short vec_sub (vector signed short, vector bool short);
12759 vector signed short vec_sub (vector signed short, vector signed short);
12760 vector unsigned short vec_sub (vector bool short,
12761                                vector unsigned short);
12762 vector unsigned short vec_sub (vector unsigned short,
12763                                vector bool short);
12764 vector unsigned short vec_sub (vector unsigned short,
12765                                vector unsigned short);
12766 vector signed int vec_sub (vector bool int, vector signed int);
12767 vector signed int vec_sub (vector signed int, vector bool int);
12768 vector signed int vec_sub (vector signed int, vector signed int);
12769 vector unsigned int vec_sub (vector bool int, vector unsigned int);
12770 vector unsigned int vec_sub (vector unsigned int, vector bool int);
12771 vector unsigned int vec_sub (vector unsigned int, vector unsigned int);
12772 vector float vec_sub (vector float, vector float);
12773
12774 vector float vec_vsubfp (vector float, vector float);
12775
12776 vector signed int vec_vsubuwm (vector bool int, vector signed int);
12777 vector signed int vec_vsubuwm (vector signed int, vector bool int);
12778 vector signed int vec_vsubuwm (vector signed int, vector signed int);
12779 vector unsigned int vec_vsubuwm (vector bool int, vector unsigned int);
12780 vector unsigned int vec_vsubuwm (vector unsigned int, vector bool int);
12781 vector unsigned int vec_vsubuwm (vector unsigned int,
12782                                  vector unsigned int);
12783
12784 vector signed short vec_vsubuhm (vector bool short,
12785                                  vector signed short);
12786 vector signed short vec_vsubuhm (vector signed short,
12787                                  vector bool short);
12788 vector signed short vec_vsubuhm (vector signed short,
12789                                  vector signed short);
12790 vector unsigned short vec_vsubuhm (vector bool short,
12791                                    vector unsigned short);
12792 vector unsigned short vec_vsubuhm (vector unsigned short,
12793                                    vector bool short);
12794 vector unsigned short vec_vsubuhm (vector unsigned short,
12795                                    vector unsigned short);
12796
12797 vector signed char vec_vsububm (vector bool char, vector signed char);
12798 vector signed char vec_vsububm (vector signed char, vector bool char);
12799 vector signed char vec_vsububm (vector signed char, vector signed char);
12800 vector unsigned char vec_vsububm (vector bool char,
12801                                   vector unsigned char);
12802 vector unsigned char vec_vsububm (vector unsigned char,
12803                                   vector bool char);
12804 vector unsigned char vec_vsububm (vector unsigned char,
12805                                   vector unsigned char);
12806
12807 vector unsigned int vec_subc (vector unsigned int, vector unsigned int);
12808
12809 vector unsigned char vec_subs (vector bool char, vector unsigned char);
12810 vector unsigned char vec_subs (vector unsigned char, vector bool char);
12811 vector unsigned char vec_subs (vector unsigned char,
12812                                vector unsigned char);
12813 vector signed char vec_subs (vector bool char, vector signed char);
12814 vector signed char vec_subs (vector signed char, vector bool char);
12815 vector signed char vec_subs (vector signed char, vector signed char);
12816 vector unsigned short vec_subs (vector bool short,
12817                                 vector unsigned short);
12818 vector unsigned short vec_subs (vector unsigned short,
12819                                 vector bool short);
12820 vector unsigned short vec_subs (vector unsigned short,
12821                                 vector unsigned short);
12822 vector signed short vec_subs (vector bool short, vector signed short);
12823 vector signed short vec_subs (vector signed short, vector bool short);
12824 vector signed short vec_subs (vector signed short, vector signed short);
12825 vector unsigned int vec_subs (vector bool int, vector unsigned int);
12826 vector unsigned int vec_subs (vector unsigned int, vector bool int);
12827 vector unsigned int vec_subs (vector unsigned int, vector unsigned int);
12828 vector signed int vec_subs (vector bool int, vector signed int);
12829 vector signed int vec_subs (vector signed int, vector bool int);
12830 vector signed int vec_subs (vector signed int, vector signed int);
12831
12832 vector signed int vec_vsubsws (vector bool int, vector signed int);
12833 vector signed int vec_vsubsws (vector signed int, vector bool int);
12834 vector signed int vec_vsubsws (vector signed int, vector signed int);
12835
12836 vector unsigned int vec_vsubuws (vector bool int, vector unsigned int);
12837 vector unsigned int vec_vsubuws (vector unsigned int, vector bool int);
12838 vector unsigned int vec_vsubuws (vector unsigned int,
12839                                  vector unsigned int);
12840
12841 vector signed short vec_vsubshs (vector bool short,
12842                                  vector signed short);
12843 vector signed short vec_vsubshs (vector signed short,
12844                                  vector bool short);
12845 vector signed short vec_vsubshs (vector signed short,
12846                                  vector signed short);
12847
12848 vector unsigned short vec_vsubuhs (vector bool short,
12849                                    vector unsigned short);
12850 vector unsigned short vec_vsubuhs (vector unsigned short,
12851                                    vector bool short);
12852 vector unsigned short vec_vsubuhs (vector unsigned short,
12853                                    vector unsigned short);
12854
12855 vector signed char vec_vsubsbs (vector bool char, vector signed char);
12856 vector signed char vec_vsubsbs (vector signed char, vector bool char);
12857 vector signed char vec_vsubsbs (vector signed char, vector signed char);
12858
12859 vector unsigned char vec_vsububs (vector bool char,
12860                                   vector unsigned char);
12861 vector unsigned char vec_vsububs (vector unsigned char,
12862                                   vector bool char);
12863 vector unsigned char vec_vsububs (vector unsigned char,
12864                                   vector unsigned char);
12865
12866 vector unsigned int vec_sum4s (vector unsigned char,
12867                                vector unsigned int);
12868 vector signed int vec_sum4s (vector signed char, vector signed int);
12869 vector signed int vec_sum4s (vector signed short, vector signed int);
12870
12871 vector signed int vec_vsum4shs (vector signed short, vector signed int);
12872
12873 vector signed int vec_vsum4sbs (vector signed char, vector signed int);
12874
12875 vector unsigned int vec_vsum4ubs (vector unsigned char,
12876                                   vector unsigned int);
12877
12878 vector signed int vec_sum2s (vector signed int, vector signed int);
12879
12880 vector signed int vec_sums (vector signed int, vector signed int);
12881
12882 vector float vec_trunc (vector float);
12883
12884 vector signed short vec_unpackh (vector signed char);
12885 vector bool short vec_unpackh (vector bool char);
12886 vector signed int vec_unpackh (vector signed short);
12887 vector bool int vec_unpackh (vector bool short);
12888 vector unsigned int vec_unpackh (vector pixel);
12889
12890 vector bool int vec_vupkhsh (vector bool short);
12891 vector signed int vec_vupkhsh (vector signed short);
12892
12893 vector unsigned int vec_vupkhpx (vector pixel);
12894
12895 vector bool short vec_vupkhsb (vector bool char);
12896 vector signed short vec_vupkhsb (vector signed char);
12897
12898 vector signed short vec_unpackl (vector signed char);
12899 vector bool short vec_unpackl (vector bool char);
12900 vector unsigned int vec_unpackl (vector pixel);
12901 vector signed int vec_unpackl (vector signed short);
12902 vector bool int vec_unpackl (vector bool short);
12903
12904 vector unsigned int vec_vupklpx (vector pixel);
12905
12906 vector bool int vec_vupklsh (vector bool short);
12907 vector signed int vec_vupklsh (vector signed short);
12908
12909 vector bool short vec_vupklsb (vector bool char);
12910 vector signed short vec_vupklsb (vector signed char);
12911
12912 vector float vec_xor (vector float, vector float);
12913 vector float vec_xor (vector float, vector bool int);
12914 vector float vec_xor (vector bool int, vector float);
12915 vector bool int vec_xor (vector bool int, vector bool int);
12916 vector signed int vec_xor (vector bool int, vector signed int);
12917 vector signed int vec_xor (vector signed int, vector bool int);
12918 vector signed int vec_xor (vector signed int, vector signed int);
12919 vector unsigned int vec_xor (vector bool int, vector unsigned int);
12920 vector unsigned int vec_xor (vector unsigned int, vector bool int);
12921 vector unsigned int vec_xor (vector unsigned int, vector unsigned int);
12922 vector bool short vec_xor (vector bool short, vector bool short);
12923 vector signed short vec_xor (vector bool short, vector signed short);
12924 vector signed short vec_xor (vector signed short, vector bool short);
12925 vector signed short vec_xor (vector signed short, vector signed short);
12926 vector unsigned short vec_xor (vector bool short,
12927                                vector unsigned short);
12928 vector unsigned short vec_xor (vector unsigned short,
12929                                vector bool short);
12930 vector unsigned short vec_xor (vector unsigned short,
12931                                vector unsigned short);
12932 vector signed char vec_xor (vector bool char, vector signed char);
12933 vector bool char vec_xor (vector bool char, vector bool char);
12934 vector signed char vec_xor (vector signed char, vector bool char);
12935 vector signed char vec_xor (vector signed char, vector signed char);
12936 vector unsigned char vec_xor (vector bool char, vector unsigned char);
12937 vector unsigned char vec_xor (vector unsigned char, vector bool char);
12938 vector unsigned char vec_xor (vector unsigned char,
12939                               vector unsigned char);
12940
12941 int vec_all_eq (vector signed char, vector bool char);
12942 int vec_all_eq (vector signed char, vector signed char);
12943 int vec_all_eq (vector unsigned char, vector bool char);
12944 int vec_all_eq (vector unsigned char, vector unsigned char);
12945 int vec_all_eq (vector bool char, vector bool char);
12946 int vec_all_eq (vector bool char, vector unsigned char);
12947 int vec_all_eq (vector bool char, vector signed char);
12948 int vec_all_eq (vector signed short, vector bool short);
12949 int vec_all_eq (vector signed short, vector signed short);
12950 int vec_all_eq (vector unsigned short, vector bool short);
12951 int vec_all_eq (vector unsigned short, vector unsigned short);
12952 int vec_all_eq (vector bool short, vector bool short);
12953 int vec_all_eq (vector bool short, vector unsigned short);
12954 int vec_all_eq (vector bool short, vector signed short);
12955 int vec_all_eq (vector pixel, vector pixel);
12956 int vec_all_eq (vector signed int, vector bool int);
12957 int vec_all_eq (vector signed int, vector signed int);
12958 int vec_all_eq (vector unsigned int, vector bool int);
12959 int vec_all_eq (vector unsigned int, vector unsigned int);
12960 int vec_all_eq (vector bool int, vector bool int);
12961 int vec_all_eq (vector bool int, vector unsigned int);
12962 int vec_all_eq (vector bool int, vector signed int);
12963 int vec_all_eq (vector float, vector float);
12964
12965 int vec_all_ge (vector bool char, vector unsigned char);
12966 int vec_all_ge (vector unsigned char, vector bool char);
12967 int vec_all_ge (vector unsigned char, vector unsigned char);
12968 int vec_all_ge (vector bool char, vector signed char);
12969 int vec_all_ge (vector signed char, vector bool char);
12970 int vec_all_ge (vector signed char, vector signed char);
12971 int vec_all_ge (vector bool short, vector unsigned short);
12972 int vec_all_ge (vector unsigned short, vector bool short);
12973 int vec_all_ge (vector unsigned short, vector unsigned short);
12974 int vec_all_ge (vector signed short, vector signed short);
12975 int vec_all_ge (vector bool short, vector signed short);
12976 int vec_all_ge (vector signed short, vector bool short);
12977 int vec_all_ge (vector bool int, vector unsigned int);
12978 int vec_all_ge (vector unsigned int, vector bool int);
12979 int vec_all_ge (vector unsigned int, vector unsigned int);
12980 int vec_all_ge (vector bool int, vector signed int);
12981 int vec_all_ge (vector signed int, vector bool int);
12982 int vec_all_ge (vector signed int, vector signed int);
12983 int vec_all_ge (vector float, vector float);
12984
12985 int vec_all_gt (vector bool char, vector unsigned char);
12986 int vec_all_gt (vector unsigned char, vector bool char);
12987 int vec_all_gt (vector unsigned char, vector unsigned char);
12988 int vec_all_gt (vector bool char, vector signed char);
12989 int vec_all_gt (vector signed char, vector bool char);
12990 int vec_all_gt (vector signed char, vector signed char);
12991 int vec_all_gt (vector bool short, vector unsigned short);
12992 int vec_all_gt (vector unsigned short, vector bool short);
12993 int vec_all_gt (vector unsigned short, vector unsigned short);
12994 int vec_all_gt (vector bool short, vector signed short);
12995 int vec_all_gt (vector signed short, vector bool short);
12996 int vec_all_gt (vector signed short, vector signed short);
12997 int vec_all_gt (vector bool int, vector unsigned int);
12998 int vec_all_gt (vector unsigned int, vector bool int);
12999 int vec_all_gt (vector unsigned int, vector unsigned int);
13000 int vec_all_gt (vector bool int, vector signed int);
13001 int vec_all_gt (vector signed int, vector bool int);
13002 int vec_all_gt (vector signed int, vector signed int);
13003 int vec_all_gt (vector float, vector float);
13004
13005 int vec_all_in (vector float, vector float);
13006
13007 int vec_all_le (vector bool char, vector unsigned char);
13008 int vec_all_le (vector unsigned char, vector bool char);
13009 int vec_all_le (vector unsigned char, vector unsigned char);
13010 int vec_all_le (vector bool char, vector signed char);
13011 int vec_all_le (vector signed char, vector bool char);
13012 int vec_all_le (vector signed char, vector signed char);
13013 int vec_all_le (vector bool short, vector unsigned short);
13014 int vec_all_le (vector unsigned short, vector bool short);
13015 int vec_all_le (vector unsigned short, vector unsigned short);
13016 int vec_all_le (vector bool short, vector signed short);
13017 int vec_all_le (vector signed short, vector bool short);
13018 int vec_all_le (vector signed short, vector signed short);
13019 int vec_all_le (vector bool int, vector unsigned int);
13020 int vec_all_le (vector unsigned int, vector bool int);
13021 int vec_all_le (vector unsigned int, vector unsigned int);
13022 int vec_all_le (vector bool int, vector signed int);
13023 int vec_all_le (vector signed int, vector bool int);
13024 int vec_all_le (vector signed int, vector signed int);
13025 int vec_all_le (vector float, vector float);
13026
13027 int vec_all_lt (vector bool char, vector unsigned char);
13028 int vec_all_lt (vector unsigned char, vector bool char);
13029 int vec_all_lt (vector unsigned char, vector unsigned char);
13030 int vec_all_lt (vector bool char, vector signed char);
13031 int vec_all_lt (vector signed char, vector bool char);
13032 int vec_all_lt (vector signed char, vector signed char);
13033 int vec_all_lt (vector bool short, vector unsigned short);
13034 int vec_all_lt (vector unsigned short, vector bool short);
13035 int vec_all_lt (vector unsigned short, vector unsigned short);
13036 int vec_all_lt (vector bool short, vector signed short);
13037 int vec_all_lt (vector signed short, vector bool short);
13038 int vec_all_lt (vector signed short, vector signed short);
13039 int vec_all_lt (vector bool int, vector unsigned int);
13040 int vec_all_lt (vector unsigned int, vector bool int);
13041 int vec_all_lt (vector unsigned int, vector unsigned int);
13042 int vec_all_lt (vector bool int, vector signed int);
13043 int vec_all_lt (vector signed int, vector bool int);
13044 int vec_all_lt (vector signed int, vector signed int);
13045 int vec_all_lt (vector float, vector float);
13046
13047 int vec_all_nan (vector float);
13048
13049 int vec_all_ne (vector signed char, vector bool char);
13050 int vec_all_ne (vector signed char, vector signed char);
13051 int vec_all_ne (vector unsigned char, vector bool char);
13052 int vec_all_ne (vector unsigned char, vector unsigned char);
13053 int vec_all_ne (vector bool char, vector bool char);
13054 int vec_all_ne (vector bool char, vector unsigned char);
13055 int vec_all_ne (vector bool char, vector signed char);
13056 int vec_all_ne (vector signed short, vector bool short);
13057 int vec_all_ne (vector signed short, vector signed short);
13058 int vec_all_ne (vector unsigned short, vector bool short);
13059 int vec_all_ne (vector unsigned short, vector unsigned short);
13060 int vec_all_ne (vector bool short, vector bool short);
13061 int vec_all_ne (vector bool short, vector unsigned short);
13062 int vec_all_ne (vector bool short, vector signed short);
13063 int vec_all_ne (vector pixel, vector pixel);
13064 int vec_all_ne (vector signed int, vector bool int);
13065 int vec_all_ne (vector signed int, vector signed int);
13066 int vec_all_ne (vector unsigned int, vector bool int);
13067 int vec_all_ne (vector unsigned int, vector unsigned int);
13068 int vec_all_ne (vector bool int, vector bool int);
13069 int vec_all_ne (vector bool int, vector unsigned int);
13070 int vec_all_ne (vector bool int, vector signed int);
13071 int vec_all_ne (vector float, vector float);
13072
13073 int vec_all_nge (vector float, vector float);
13074
13075 int vec_all_ngt (vector float, vector float);
13076
13077 int vec_all_nle (vector float, vector float);
13078
13079 int vec_all_nlt (vector float, vector float);
13080
13081 int vec_all_numeric (vector float);
13082
13083 int vec_any_eq (vector signed char, vector bool char);
13084 int vec_any_eq (vector signed char, vector signed char);
13085 int vec_any_eq (vector unsigned char, vector bool char);
13086 int vec_any_eq (vector unsigned char, vector unsigned char);
13087 int vec_any_eq (vector bool char, vector bool char);
13088 int vec_any_eq (vector bool char, vector unsigned char);
13089 int vec_any_eq (vector bool char, vector signed char);
13090 int vec_any_eq (vector signed short, vector bool short);
13091 int vec_any_eq (vector signed short, vector signed short);
13092 int vec_any_eq (vector unsigned short, vector bool short);
13093 int vec_any_eq (vector unsigned short, vector unsigned short);
13094 int vec_any_eq (vector bool short, vector bool short);
13095 int vec_any_eq (vector bool short, vector unsigned short);
13096 int vec_any_eq (vector bool short, vector signed short);
13097 int vec_any_eq (vector pixel, vector pixel);
13098 int vec_any_eq (vector signed int, vector bool int);
13099 int vec_any_eq (vector signed int, vector signed int);
13100 int vec_any_eq (vector unsigned int, vector bool int);
13101 int vec_any_eq (vector unsigned int, vector unsigned int);
13102 int vec_any_eq (vector bool int, vector bool int);
13103 int vec_any_eq (vector bool int, vector unsigned int);
13104 int vec_any_eq (vector bool int, vector signed int);
13105 int vec_any_eq (vector float, vector float);
13106
13107 int vec_any_ge (vector signed char, vector bool char);
13108 int vec_any_ge (vector unsigned char, vector bool char);
13109 int vec_any_ge (vector unsigned char, vector unsigned char);
13110 int vec_any_ge (vector signed char, vector signed char);
13111 int vec_any_ge (vector bool char, vector unsigned char);
13112 int vec_any_ge (vector bool char, vector signed char);
13113 int vec_any_ge (vector unsigned short, vector bool short);
13114 int vec_any_ge (vector unsigned short, vector unsigned short);
13115 int vec_any_ge (vector signed short, vector signed short);
13116 int vec_any_ge (vector signed short, vector bool short);
13117 int vec_any_ge (vector bool short, vector unsigned short);
13118 int vec_any_ge (vector bool short, vector signed short);
13119 int vec_any_ge (vector signed int, vector bool int);
13120 int vec_any_ge (vector unsigned int, vector bool int);
13121 int vec_any_ge (vector unsigned int, vector unsigned int);
13122 int vec_any_ge (vector signed int, vector signed int);
13123 int vec_any_ge (vector bool int, vector unsigned int);
13124 int vec_any_ge (vector bool int, vector signed int);
13125 int vec_any_ge (vector float, vector float);
13126
13127 int vec_any_gt (vector bool char, vector unsigned char);
13128 int vec_any_gt (vector unsigned char, vector bool char);
13129 int vec_any_gt (vector unsigned char, vector unsigned char);
13130 int vec_any_gt (vector bool char, vector signed char);
13131 int vec_any_gt (vector signed char, vector bool char);
13132 int vec_any_gt (vector signed char, vector signed char);
13133 int vec_any_gt (vector bool short, vector unsigned short);
13134 int vec_any_gt (vector unsigned short, vector bool short);
13135 int vec_any_gt (vector unsigned short, vector unsigned short);
13136 int vec_any_gt (vector bool short, vector signed short);
13137 int vec_any_gt (vector signed short, vector bool short);
13138 int vec_any_gt (vector signed short, vector signed short);
13139 int vec_any_gt (vector bool int, vector unsigned int);
13140 int vec_any_gt (vector unsigned int, vector bool int);
13141 int vec_any_gt (vector unsigned int, vector unsigned int);
13142 int vec_any_gt (vector bool int, vector signed int);
13143 int vec_any_gt (vector signed int, vector bool int);
13144 int vec_any_gt (vector signed int, vector signed int);
13145 int vec_any_gt (vector float, vector float);
13146
13147 int vec_any_le (vector bool char, vector unsigned char);
13148 int vec_any_le (vector unsigned char, vector bool char);
13149 int vec_any_le (vector unsigned char, vector unsigned char);
13150 int vec_any_le (vector bool char, vector signed char);
13151 int vec_any_le (vector signed char, vector bool char);
13152 int vec_any_le (vector signed char, vector signed char);
13153 int vec_any_le (vector bool short, vector unsigned short);
13154 int vec_any_le (vector unsigned short, vector bool short);
13155 int vec_any_le (vector unsigned short, vector unsigned short);
13156 int vec_any_le (vector bool short, vector signed short);
13157 int vec_any_le (vector signed short, vector bool short);
13158 int vec_any_le (vector signed short, vector signed short);
13159 int vec_any_le (vector bool int, vector unsigned int);
13160 int vec_any_le (vector unsigned int, vector bool int);
13161 int vec_any_le (vector unsigned int, vector unsigned int);
13162 int vec_any_le (vector bool int, vector signed int);
13163 int vec_any_le (vector signed int, vector bool int);
13164 int vec_any_le (vector signed int, vector signed int);
13165 int vec_any_le (vector float, vector float);
13166
13167 int vec_any_lt (vector bool char, vector unsigned char);
13168 int vec_any_lt (vector unsigned char, vector bool char);
13169 int vec_any_lt (vector unsigned char, vector unsigned char);
13170 int vec_any_lt (vector bool char, vector signed char);
13171 int vec_any_lt (vector signed char, vector bool char);
13172 int vec_any_lt (vector signed char, vector signed char);
13173 int vec_any_lt (vector bool short, vector unsigned short);
13174 int vec_any_lt (vector unsigned short, vector bool short);
13175 int vec_any_lt (vector unsigned short, vector unsigned short);
13176 int vec_any_lt (vector bool short, vector signed short);
13177 int vec_any_lt (vector signed short, vector bool short);
13178 int vec_any_lt (vector signed short, vector signed short);
13179 int vec_any_lt (vector bool int, vector unsigned int);
13180 int vec_any_lt (vector unsigned int, vector bool int);
13181 int vec_any_lt (vector unsigned int, vector unsigned int);
13182 int vec_any_lt (vector bool int, vector signed int);
13183 int vec_any_lt (vector signed int, vector bool int);
13184 int vec_any_lt (vector signed int, vector signed int);
13185 int vec_any_lt (vector float, vector float);
13186
13187 int vec_any_nan (vector float);
13188
13189 int vec_any_ne (vector signed char, vector bool char);
13190 int vec_any_ne (vector signed char, vector signed char);
13191 int vec_any_ne (vector unsigned char, vector bool char);
13192 int vec_any_ne (vector unsigned char, vector unsigned char);
13193 int vec_any_ne (vector bool char, vector bool char);
13194 int vec_any_ne (vector bool char, vector unsigned char);
13195 int vec_any_ne (vector bool char, vector signed char);
13196 int vec_any_ne (vector signed short, vector bool short);
13197 int vec_any_ne (vector signed short, vector signed short);
13198 int vec_any_ne (vector unsigned short, vector bool short);
13199 int vec_any_ne (vector unsigned short, vector unsigned short);
13200 int vec_any_ne (vector bool short, vector bool short);
13201 int vec_any_ne (vector bool short, vector unsigned short);
13202 int vec_any_ne (vector bool short, vector signed short);
13203 int vec_any_ne (vector pixel, vector pixel);
13204 int vec_any_ne (vector signed int, vector bool int);
13205 int vec_any_ne (vector signed int, vector signed int);
13206 int vec_any_ne (vector unsigned int, vector bool int);
13207 int vec_any_ne (vector unsigned int, vector unsigned int);
13208 int vec_any_ne (vector bool int, vector bool int);
13209 int vec_any_ne (vector bool int, vector unsigned int);
13210 int vec_any_ne (vector bool int, vector signed int);
13211 int vec_any_ne (vector float, vector float);
13212
13213 int vec_any_nge (vector float, vector float);
13214
13215 int vec_any_ngt (vector float, vector float);
13216
13217 int vec_any_nle (vector float, vector float);
13218
13219 int vec_any_nlt (vector float, vector float);
13220
13221 int vec_any_numeric (vector float);
13222
13223 int vec_any_out (vector float, vector float);
13224 @end smallexample
13225
13226 If the vector/scalar (VSX) instruction set is available, the following
13227 additional functions are available:
13228
13229 @smallexample
13230 vector double vec_abs (vector double);
13231 vector double vec_add (vector double, vector double);
13232 vector double vec_and (vector double, vector double);
13233 vector double vec_and (vector double, vector bool long);
13234 vector double vec_and (vector bool long, vector double);
13235 vector double vec_andc (vector double, vector double);
13236 vector double vec_andc (vector double, vector bool long);
13237 vector double vec_andc (vector bool long, vector double);
13238 vector double vec_ceil (vector double);
13239 vector bool long vec_cmpeq (vector double, vector double);
13240 vector bool long vec_cmpge (vector double, vector double);
13241 vector bool long vec_cmpgt (vector double, vector double);
13242 vector bool long vec_cmple (vector double, vector double);
13243 vector bool long vec_cmplt (vector double, vector double);
13244 vector float vec_div (vector float, vector float);
13245 vector double vec_div (vector double, vector double);
13246 vector double vec_floor (vector double);
13247 vector double vec_ld (int, const vector double *);
13248 vector double vec_ld (int, const double *);
13249 vector double vec_ldl (int, const vector double *);
13250 vector double vec_ldl (int, const double *);
13251 vector unsigned char vec_lvsl (int, const volatile double *);
13252 vector unsigned char vec_lvsr (int, const volatile double *);
13253 vector double vec_madd (vector double, vector double, vector double);
13254 vector double vec_max (vector double, vector double);
13255 vector double vec_min (vector double, vector double);
13256 vector float vec_msub (vector float, vector float, vector float);
13257 vector double vec_msub (vector double, vector double, vector double);
13258 vector float vec_mul (vector float, vector float);
13259 vector double vec_mul (vector double, vector double);
13260 vector float vec_nearbyint (vector float);
13261 vector double vec_nearbyint (vector double);
13262 vector float vec_nmadd (vector float, vector float, vector float);
13263 vector double vec_nmadd (vector double, vector double, vector double);
13264 vector double vec_nmsub (vector double, vector double, vector double);
13265 vector double vec_nor (vector double, vector double);
13266 vector double vec_or (vector double, vector double);
13267 vector double vec_or (vector double, vector bool long);
13268 vector double vec_or (vector bool long, vector double);
13269 vector double vec_perm (vector double,
13270                         vector double,
13271                         vector unsigned char);
13272 vector double vec_rint (vector double);
13273 vector double vec_recip (vector double, vector double);
13274 vector double vec_rsqrt (vector double);
13275 vector double vec_rsqrte (vector double);
13276 vector double vec_sel (vector double, vector double, vector bool long);
13277 vector double vec_sel (vector double, vector double, vector unsigned long);
13278 vector double vec_sub (vector double, vector double);
13279 vector float vec_sqrt (vector float);
13280 vector double vec_sqrt (vector double);
13281 void vec_st (vector double, int, vector double *);
13282 void vec_st (vector double, int, double *);
13283 vector double vec_trunc (vector double);
13284 vector double vec_xor (vector double, vector double);
13285 vector double vec_xor (vector double, vector bool long);
13286 vector double vec_xor (vector bool long, vector double);
13287 int vec_all_eq (vector double, vector double);
13288 int vec_all_ge (vector double, vector double);
13289 int vec_all_gt (vector double, vector double);
13290 int vec_all_le (vector double, vector double);
13291 int vec_all_lt (vector double, vector double);
13292 int vec_all_nan (vector double);
13293 int vec_all_ne (vector double, vector double);
13294 int vec_all_nge (vector double, vector double);
13295 int vec_all_ngt (vector double, vector double);
13296 int vec_all_nle (vector double, vector double);
13297 int vec_all_nlt (vector double, vector double);
13298 int vec_all_numeric (vector double);
13299 int vec_any_eq (vector double, vector double);
13300 int vec_any_ge (vector double, vector double);
13301 int vec_any_gt (vector double, vector double);
13302 int vec_any_le (vector double, vector double);
13303 int vec_any_lt (vector double, vector double);
13304 int vec_any_nan (vector double);
13305 int vec_any_ne (vector double, vector double);
13306 int vec_any_nge (vector double, vector double);
13307 int vec_any_ngt (vector double, vector double);
13308 int vec_any_nle (vector double, vector double);
13309 int vec_any_nlt (vector double, vector double);
13310 int vec_any_numeric (vector double);
13311
13312 vector double vec_vsx_ld (int, const vector double *);
13313 vector double vec_vsx_ld (int, const double *);
13314 vector float vec_vsx_ld (int, const vector float *);
13315 vector float vec_vsx_ld (int, const float *);
13316 vector bool int vec_vsx_ld (int, const vector bool int *);
13317 vector signed int vec_vsx_ld (int, const vector signed int *);
13318 vector signed int vec_vsx_ld (int, const int *);
13319 vector signed int vec_vsx_ld (int, const long *);
13320 vector unsigned int vec_vsx_ld (int, const vector unsigned int *);
13321 vector unsigned int vec_vsx_ld (int, const unsigned int *);
13322 vector unsigned int vec_vsx_ld (int, const unsigned long *);
13323 vector bool short vec_vsx_ld (int, const vector bool short *);
13324 vector pixel vec_vsx_ld (int, const vector pixel *);
13325 vector signed short vec_vsx_ld (int, const vector signed short *);
13326 vector signed short vec_vsx_ld (int, const short *);
13327 vector unsigned short vec_vsx_ld (int, const vector unsigned short *);
13328 vector unsigned short vec_vsx_ld (int, const unsigned short *);
13329 vector bool char vec_vsx_ld (int, const vector bool char *);
13330 vector signed char vec_vsx_ld (int, const vector signed char *);
13331 vector signed char vec_vsx_ld (int, const signed char *);
13332 vector unsigned char vec_vsx_ld (int, const vector unsigned char *);
13333 vector unsigned char vec_vsx_ld (int, const unsigned char *);
13334
13335 void vec_vsx_st (vector double, int, vector double *);
13336 void vec_vsx_st (vector double, int, double *);
13337 void vec_vsx_st (vector float, int, vector float *);
13338 void vec_vsx_st (vector float, int, float *);
13339 void vec_vsx_st (vector signed int, int, vector signed int *);
13340 void vec_vsx_st (vector signed int, int, int *);
13341 void vec_vsx_st (vector unsigned int, int, vector unsigned int *);
13342 void vec_vsx_st (vector unsigned int, int, unsigned int *);
13343 void vec_vsx_st (vector bool int, int, vector bool int *);
13344 void vec_vsx_st (vector bool int, int, unsigned int *);
13345 void vec_vsx_st (vector bool int, int, int *);
13346 void vec_vsx_st (vector signed short, int, vector signed short *);
13347 void vec_vsx_st (vector signed short, int, short *);
13348 void vec_vsx_st (vector unsigned short, int, vector unsigned short *);
13349 void vec_vsx_st (vector unsigned short, int, unsigned short *);
13350 void vec_vsx_st (vector bool short, int, vector bool short *);
13351 void vec_vsx_st (vector bool short, int, unsigned short *);
13352 void vec_vsx_st (vector pixel, int, vector pixel *);
13353 void vec_vsx_st (vector pixel, int, unsigned short *);
13354 void vec_vsx_st (vector pixel, int, short *);
13355 void vec_vsx_st (vector bool short, int, short *);
13356 void vec_vsx_st (vector signed char, int, vector signed char *);
13357 void vec_vsx_st (vector signed char, int, signed char *);
13358 void vec_vsx_st (vector unsigned char, int, vector unsigned char *);
13359 void vec_vsx_st (vector unsigned char, int, unsigned char *);
13360 void vec_vsx_st (vector bool char, int, vector bool char *);
13361 void vec_vsx_st (vector bool char, int, unsigned char *);
13362 void vec_vsx_st (vector bool char, int, signed char *);
13363 @end smallexample
13364
13365 Note that the @samp{vec_ld} and @samp{vec_st} builtins will always
13366 generate the Altivec @samp{LVX} and @samp{STVX} instructions even
13367 if the VSX instruction set is available.  The @samp{vec_vsx_ld} and
13368 @samp{vec_vsx_st} builtins will always generate the VSX @samp{LXVD2X},
13369 @samp{LXVW4X}, @samp{STXVD2X}, and @samp{STXVW4X} instructions.
13370
13371 GCC provides a few other builtins on Powerpc to access certain instructions:
13372 @smallexample
13373 float __builtin_recipdivf (float, float);
13374 float __builtin_rsqrtf (float);
13375 double __builtin_recipdiv (double, double);
13376 double __builtin_rsqrt (double);
13377 long __builtin_bpermd (long, long);
13378 int __builtin_bswap16 (int);
13379 @end smallexample
13380
13381 The @code{vec_rsqrt}, @code{__builtin_rsqrt}, and
13382 @code{__builtin_rsqrtf} functions generate multiple instructions to
13383 implement the reciprocal sqrt functionality using reciprocal sqrt
13384 estimate instructions.
13385
13386 The @code{__builtin_recipdiv}, and @code{__builtin_recipdivf}
13387 functions generate multiple instructions to implement division using
13388 the reciprocal estimate instructions.
13389
13390 @node RX Built-in Functions
13391 @subsection RX Built-in Functions
13392 GCC supports some of the RX instructions which cannot be expressed in
13393 the C programming language via the use of built-in functions.  The
13394 following functions are supported:
13395
13396 @deftypefn {Built-in Function}  void __builtin_rx_brk (void)
13397 Generates the @code{brk} machine instruction.
13398 @end deftypefn
13399
13400 @deftypefn {Built-in Function}  void __builtin_rx_clrpsw (int)
13401 Generates the @code{clrpsw} machine instruction to clear the specified
13402 bit in the processor status word.
13403 @end deftypefn
13404
13405 @deftypefn {Built-in Function}  void __builtin_rx_int (int)
13406 Generates the @code{int} machine instruction to generate an interrupt
13407 with the specified value.
13408 @end deftypefn
13409
13410 @deftypefn {Built-in Function}  void __builtin_rx_machi (int, int)
13411 Generates the @code{machi} machine instruction to add the result of
13412 multiplying the top 16-bits of the two arguments into the
13413 accumulator.
13414 @end deftypefn
13415
13416 @deftypefn {Built-in Function}  void __builtin_rx_maclo (int, int)
13417 Generates the @code{maclo} machine instruction to add the result of
13418 multiplying the bottom 16-bits of the two arguments into the
13419 accumulator.
13420 @end deftypefn
13421
13422 @deftypefn {Built-in Function}  void __builtin_rx_mulhi (int, int)
13423 Generates the @code{mulhi} machine instruction to place the result of
13424 multiplying the top 16-bits of the two arguments into the
13425 accumulator.
13426 @end deftypefn
13427
13428 @deftypefn {Built-in Function}  void __builtin_rx_mullo (int, int)
13429 Generates the @code{mullo} machine instruction to place the result of
13430 multiplying the bottom 16-bits of the two arguments into the
13431 accumulator.
13432 @end deftypefn
13433
13434 @deftypefn {Built-in Function}  int  __builtin_rx_mvfachi (void)
13435 Generates the @code{mvfachi} machine instruction to read the top
13436 32-bits of the accumulator.
13437 @end deftypefn
13438
13439 @deftypefn {Built-in Function}  int  __builtin_rx_mvfacmi (void)
13440 Generates the @code{mvfacmi} machine instruction to read the middle
13441 32-bits of the accumulator.
13442 @end deftypefn
13443
13444 @deftypefn {Built-in Function}  int __builtin_rx_mvfc (int)
13445 Generates the @code{mvfc} machine instruction which reads the control
13446 register specified in its argument and returns its value.
13447 @end deftypefn
13448
13449 @deftypefn {Built-in Function}  void __builtin_rx_mvtachi (int)
13450 Generates the @code{mvtachi} machine instruction to set the top
13451 32-bits of the accumulator.
13452 @end deftypefn
13453
13454 @deftypefn {Built-in Function}  void __builtin_rx_mvtaclo (int)
13455 Generates the @code{mvtaclo} machine instruction to set the bottom
13456 32-bits of the accumulator.
13457 @end deftypefn
13458
13459 @deftypefn {Built-in Function}  void __builtin_rx_mvtc (int reg, int val)
13460 Generates the @code{mvtc} machine instruction which sets control
13461 register number @code{reg} to @code{val}.
13462 @end deftypefn
13463
13464 @deftypefn {Built-in Function}  void __builtin_rx_mvtipl (int)
13465 Generates the @code{mvtipl} machine instruction set the interrupt
13466 priority level.
13467 @end deftypefn
13468
13469 @deftypefn {Built-in Function}  void __builtin_rx_racw (int)
13470 Generates the @code{racw} machine instruction to round the accumulator
13471 according to the specified mode.
13472 @end deftypefn
13473
13474 @deftypefn {Built-in Function}  int __builtin_rx_revw (int)
13475 Generates the @code{revw} machine instruction which swaps the bytes in
13476 the argument so that bits 0--7 now occupy bits 8--15 and vice versa,
13477 and also bits 16--23 occupy bits 24--31 and vice versa.
13478 @end deftypefn
13479
13480 @deftypefn {Built-in Function}  void __builtin_rx_rmpa (void)
13481 Generates the @code{rmpa} machine instruction which initiates a
13482 repeated multiply and accumulate sequence.
13483 @end deftypefn
13484
13485 @deftypefn {Built-in Function}  void __builtin_rx_round (float)
13486 Generates the @code{round} machine instruction which returns the
13487 floating point argument rounded according to the current rounding mode
13488 set in the floating point status word register.
13489 @end deftypefn
13490
13491 @deftypefn {Built-in Function}  int __builtin_rx_sat (int)
13492 Generates the @code{sat} machine instruction which returns the
13493 saturated value of the argument.
13494 @end deftypefn
13495
13496 @deftypefn {Built-in Function}  void __builtin_rx_setpsw (int)
13497 Generates the @code{setpsw} machine instruction to set the specified
13498 bit in the processor status word.
13499 @end deftypefn
13500
13501 @deftypefn {Built-in Function}  void __builtin_rx_wait (void)
13502 Generates the @code{wait} machine instruction.
13503 @end deftypefn
13504
13505 @node SPARC VIS Built-in Functions
13506 @subsection SPARC VIS Built-in Functions
13507
13508 GCC supports SIMD operations on the SPARC using both the generic vector
13509 extensions (@pxref{Vector Extensions}) as well as built-in functions for
13510 the SPARC Visual Instruction Set (VIS).  When you use the @option{-mvis}
13511 switch, the VIS extension is exposed as the following built-in functions:
13512
13513 @smallexample
13514 typedef int v1si __attribute__ ((vector_size (4)));
13515 typedef int v2si __attribute__ ((vector_size (8)));
13516 typedef short v4hi __attribute__ ((vector_size (8)));
13517 typedef short v2hi __attribute__ ((vector_size (4)));
13518 typedef unsigned char v8qi __attribute__ ((vector_size (8)));
13519 typedef unsigned char v4qi __attribute__ ((vector_size (4)));
13520
13521 void __builtin_vis_write_gsr (int64_t);
13522 int64_t __builtin_vis_read_gsr (void);
13523
13524 void * __builtin_vis_alignaddr (void *, long);
13525 void * __builtin_vis_alignaddrl (void *, long);
13526 int64_t __builtin_vis_faligndatadi (int64_t, int64_t);
13527 v2si __builtin_vis_faligndatav2si (v2si, v2si);
13528 v4hi __builtin_vis_faligndatav4hi (v4si, v4si);
13529 v8qi __builtin_vis_faligndatav8qi (v8qi, v8qi);
13530
13531 v4hi __builtin_vis_fexpand (v4qi);
13532
13533 v4hi __builtin_vis_fmul8x16 (v4qi, v4hi);
13534 v4hi __builtin_vis_fmul8x16au (v4qi, v2hi);
13535 v4hi __builtin_vis_fmul8x16al (v4qi, v2hi);
13536 v4hi __builtin_vis_fmul8sux16 (v8qi, v4hi);
13537 v4hi __builtin_vis_fmul8ulx16 (v8qi, v4hi);
13538 v2si __builtin_vis_fmuld8sux16 (v4qi, v2hi);
13539 v2si __builtin_vis_fmuld8ulx16 (v4qi, v2hi);
13540
13541 v4qi __builtin_vis_fpack16 (v4hi);
13542 v8qi __builtin_vis_fpack32 (v2si, v8qi);
13543 v2hi __builtin_vis_fpackfix (v2si);
13544 v8qi __builtin_vis_fpmerge (v4qi, v4qi);
13545
13546 int64_t __builtin_vis_pdist (v8qi, v8qi, int64_t);
13547
13548 long __builtin_vis_edge8 (void *, void *);
13549 long __builtin_vis_edge8l (void *, void *);
13550 long __builtin_vis_edge16 (void *, void *);
13551 long __builtin_vis_edge16l (void *, void *);
13552 long __builtin_vis_edge32 (void *, void *);
13553 long __builtin_vis_edge32l (void *, void *);
13554
13555 long __builtin_vis_fcmple16 (v4hi, v4hi);
13556 long __builtin_vis_fcmple32 (v2si, v2si);
13557 long __builtin_vis_fcmpne16 (v4hi, v4hi);
13558 long __builtin_vis_fcmpne32 (v2si, v2si);
13559 long __builtin_vis_fcmpgt16 (v4hi, v4hi);
13560 long __builtin_vis_fcmpgt32 (v2si, v2si);
13561 long __builtin_vis_fcmpeq16 (v4hi, v4hi);
13562 long __builtin_vis_fcmpeq32 (v2si, v2si);
13563
13564 v4hi __builtin_vis_fpadd16 (v4hi, v4hi);
13565 v2hi __builtin_vis_fpadd16s (v2hi, v2hi);
13566 v2si __builtin_vis_fpadd32 (v2si, v2si);
13567 v1si __builtin_vis_fpadd32s (v1si, v1si);
13568 v4hi __builtin_vis_fpsub16 (v4hi, v4hi);
13569 v2hi __builtin_vis_fpsub16s (v2hi, v2hi);
13570 v2si __builtin_vis_fpsub32 (v2si, v2si);
13571 v1si __builtin_vis_fpsub32s (v1si, v1si);
13572
13573 long __builtin_vis_array8 (long, long);
13574 long __builtin_vis_array16 (long, long);
13575 long __builtin_vis_array32 (long, long);
13576 @end smallexample
13577
13578 When you use the @option{-mvis2} switch, the VIS version 2.0 built-in
13579 functions also become available:
13580
13581 @smallexample
13582 long __builtin_vis_bmask (long, long);
13583 int64_t __builtin_vis_bshuffledi (int64_t, int64_t);
13584 v2si __builtin_vis_bshufflev2si (v2si, v2si);
13585 v4hi __builtin_vis_bshufflev2si (v4hi, v4hi);
13586 v8qi __builtin_vis_bshufflev2si (v8qi, v8qi);
13587
13588 long __builtin_vis_edge8n (void *, void *);
13589 long __builtin_vis_edge8ln (void *, void *);
13590 long __builtin_vis_edge16n (void *, void *);
13591 long __builtin_vis_edge16ln (void *, void *);
13592 long __builtin_vis_edge32n (void *, void *);
13593 long __builtin_vis_edge32ln (void *, void *);
13594 @end smallexample
13595
13596 When you use the @option{-mvis3} switch, the VIS version 3.0 built-in
13597 functions also become available:
13598
13599 @smallexample
13600 void __builtin_vis_cmask8 (long);
13601 void __builtin_vis_cmask16 (long);
13602 void __builtin_vis_cmask32 (long);
13603
13604 v4hi __builtin_vis_fchksm16 (v4hi, v4hi);
13605
13606 v4hi __builtin_vis_fsll16 (v4hi, v4hi);
13607 v4hi __builtin_vis_fslas16 (v4hi, v4hi);
13608 v4hi __builtin_vis_fsrl16 (v4hi, v4hi);
13609 v4hi __builtin_vis_fsra16 (v4hi, v4hi);
13610 v2si __builtin_vis_fsll16 (v2si, v2si);
13611 v2si __builtin_vis_fslas16 (v2si, v2si);
13612 v2si __builtin_vis_fsrl16 (v2si, v2si);
13613 v2si __builtin_vis_fsra16 (v2si, v2si);
13614
13615 long __builtin_vis_pdistn (v8qi, v8qi);
13616
13617 v4hi __builtin_vis_fmean16 (v4hi, v4hi);
13618
13619 int64_t __builtin_vis_fpadd64 (int64_t, int64_t);
13620 int64_t __builtin_vis_fpsub64 (int64_t, int64_t);
13621
13622 v4hi __builtin_vis_fpadds16 (v4hi, v4hi);
13623 v2hi __builtin_vis_fpadds16s (v2hi, v2hi);
13624 v4hi __builtin_vis_fpsubs16 (v4hi, v4hi);
13625 v2hi __builtin_vis_fpsubs16s (v2hi, v2hi);
13626 v2si __builtin_vis_fpadds32 (v2si, v2si);
13627 v1si __builtin_vis_fpadds32s (v1si, v1si);
13628 v2si __builtin_vis_fpsubs32 (v2si, v2si);
13629 v1si __builtin_vis_fpsubs32s (v1si, v1si);
13630
13631 long __builtin_vis_fucmple8 (v8qi, v8qi);
13632 long __builtin_vis_fucmpne8 (v8qi, v8qi);
13633 long __builtin_vis_fucmpgt8 (v8qi, v8qi);
13634 long __builtin_vis_fucmpeq8 (v8qi, v8qi);
13635
13636 float __builtin_vis_fhadds (float, float);
13637 double __builtin_vis_fhaddd (double, double);
13638 float __builtin_vis_fhsubs (float, float);
13639 double __builtin_vis_fhsubd (double, double);
13640 float __builtin_vis_fnhadds (float, float);
13641 double __builtin_vis_fnhaddd (double, double);
13642
13643 int64_t __builtin_vis_umulxhi (int64_t, int64_t);
13644 int64_t __builtin_vis_xmulx (int64_t, int64_t);
13645 int64_t __builtin_vis_xmulxhi (int64_t, int64_t);
13646 @end smallexample
13647
13648 @node SPU Built-in Functions
13649 @subsection SPU Built-in Functions
13650
13651 GCC provides extensions for the SPU processor as described in the
13652 Sony/Toshiba/IBM SPU Language Extensions Specification, which can be
13653 found at @uref{http://cell.scei.co.jp/} or
13654 @uref{http://www.ibm.com/developerworks/power/cell/}.  GCC's
13655 implementation differs in several ways.
13656
13657 @itemize @bullet
13658
13659 @item
13660 The optional extension of specifying vector constants in parentheses is
13661 not supported.
13662
13663 @item
13664 A vector initializer requires no cast if the vector constant is of the
13665 same type as the variable it is initializing.
13666
13667 @item
13668 If @code{signed} or @code{unsigned} is omitted, the signedness of the
13669 vector type is the default signedness of the base type.  The default
13670 varies depending on the operating system, so a portable program should
13671 always specify the signedness.
13672
13673 @item
13674 By default, the keyword @code{__vector} is added. The macro
13675 @code{vector} is defined in @code{<spu_intrinsics.h>} and can be
13676 undefined.
13677
13678 @item
13679 GCC allows using a @code{typedef} name as the type specifier for a
13680 vector type.
13681
13682 @item
13683 For C, overloaded functions are implemented with macros so the following
13684 does not work:
13685
13686 @smallexample
13687   spu_add ((vector signed int)@{1, 2, 3, 4@}, foo);
13688 @end smallexample
13689
13690 Since @code{spu_add} is a macro, the vector constant in the example
13691 is treated as four separate arguments.  Wrap the entire argument in
13692 parentheses for this to work.
13693
13694 @item
13695 The extended version of @code{__builtin_expect} is not supported.
13696
13697 @end itemize
13698
13699 @emph{Note:} Only the interface described in the aforementioned
13700 specification is supported. Internally, GCC uses built-in functions to
13701 implement the required functionality, but these are not supported and
13702 are subject to change without notice.
13703
13704 @node TI C6X Built-in Functions
13705 @subsection TI C6X Built-in Functions
13706
13707 GCC provides intrinsics to access certain instructions of the TI C6X
13708 processors.  These intrinsics, listed below, are available after
13709 inclusion of the @code{c6x_intrinsics.h} header file.  They map directly
13710 to C6X instructions.
13711
13712 @smallexample
13713
13714 int _sadd (int, int)
13715 int _ssub (int, int)
13716 int _sadd2 (int, int)
13717 int _ssub2 (int, int)
13718 long long _mpy2 (int, int)
13719 long long _smpy2 (int, int)
13720 int _add4 (int, int)
13721 int _sub4 (int, int)
13722 int _saddu4 (int, int)
13723
13724 int _smpy (int, int)
13725 int _smpyh (int, int)
13726 int _smpyhl (int, int)
13727 int _smpylh (int, int)
13728
13729 int _sshl (int, int)
13730 int _subc (int, int)
13731
13732 int _avg2 (int, int)
13733 int _avgu4 (int, int)
13734
13735 int _clrr (int, int)
13736 int _extr (int, int)
13737 int _extru (int, int)
13738 int _abs (int)
13739 int _abs2 (int)
13740
13741 @end smallexample
13742
13743 @node TILE-Gx Built-in Functions
13744 @subsection TILE-Gx Built-in Functions
13745
13746 GCC provides intrinsics to access every instruction of the TILE-Gx
13747 processor.  The intrinsics are of the form:
13748
13749 @smallexample
13750
13751 unsigned long long __insn_@var{op} (...)
13752
13753 @end smallexample
13754
13755 Where @var{op} is the name of the instruction.  Refer to the ISA manual
13756 for the complete list of instructions.
13757
13758 GCC also provides intrinsics to directly access the network registers.
13759 The intrinsics are:
13760
13761 @smallexample
13762
13763 unsigned long long __tile_idn0_receive (void)
13764 unsigned long long __tile_idn1_receive (void)
13765 unsigned long long __tile_udn0_receive (void)
13766 unsigned long long __tile_udn1_receive (void)
13767 unsigned long long __tile_udn2_receive (void)
13768 unsigned long long __tile_udn3_receive (void)
13769 void __tile_idn_send (unsigned long long)
13770 void __tile_udn_send (unsigned long long)
13771
13772 @end smallexample
13773
13774 The intrinsic @code{void __tile_network_barrier (void)} is used to
13775 guarantee that no network operatons before it will be reordered with
13776 those after it.
13777
13778 @node TILEPro Built-in Functions
13779 @subsection TILEPro Built-in Functions
13780
13781 GCC provides intrinsics to access every instruction of the TILEPro
13782 processor.  The intrinsics are of the form:
13783
13784 @smallexample
13785
13786 unsigned __insn_@var{op} (...)
13787
13788 @end smallexample
13789
13790 Where @var{op} is the name of the instruction.  Refer to the ISA manual
13791 for the complete list of instructions.
13792
13793 GCC also provides intrinsics to directly access the network registers.
13794 The intrinsics are:
13795
13796 @smallexample
13797
13798 unsigned __tile_idn0_receive (void)
13799 unsigned __tile_idn1_receive (void)
13800 unsigned __tile_sn_receive (void)
13801 unsigned __tile_udn0_receive (void)
13802 unsigned __tile_udn1_receive (void)
13803 unsigned __tile_udn2_receive (void)
13804 unsigned __tile_udn3_receive (void)
13805 void __tile_idn_send (unsigned)
13806 void __tile_sn_send (unsigned)
13807 void __tile_udn_send (unsigned)
13808
13809 @end smallexample
13810
13811 The intrinsic @code{void __tile_network_barrier (void)} is used to
13812 guarantee that no network operatons before it will be reordered with
13813 those after it.
13814
13815 @node Target Format Checks
13816 @section Format Checks Specific to Particular Target Machines
13817
13818 For some target machines, GCC supports additional options to the
13819 format attribute
13820 (@pxref{Function Attributes,,Declaring Attributes of Functions}).
13821
13822 @menu
13823 * Solaris Format Checks::
13824 * Darwin Format Checks::
13825 @end menu
13826
13827 @node Solaris Format Checks
13828 @subsection Solaris Format Checks
13829
13830 Solaris targets support the @code{cmn_err} (or @code{__cmn_err__}) format
13831 check.  @code{cmn_err} accepts a subset of the standard @code{printf}
13832 conversions, and the two-argument @code{%b} conversion for displaying
13833 bit-fields.  See the Solaris man page for @code{cmn_err} for more information.
13834
13835 @node Darwin Format Checks
13836 @subsection Darwin Format Checks
13837
13838 Darwin targets support the @code{CFString} (or @code{__CFString__}) in the format
13839 attribute context.  Declarations made with such attribution will be parsed for correct syntax
13840 and format argument types.  However, parsing of the format string itself is currently undefined
13841 and will not be carried out by this version of the compiler.
13842
13843 Additionally, @code{CFStringRefs} (defined by the @code{CoreFoundation} headers) may
13844 also be used as format arguments.  Note that the relevant headers are only likely to be
13845 available on Darwin (OSX) installations.  On such installations, the XCode and system
13846 documentation provide descriptions of @code{CFString}, @code{CFStringRefs} and
13847 associated functions.
13848
13849 @node Pragmas
13850 @section Pragmas Accepted by GCC
13851 @cindex pragmas
13852 @cindex @code{#pragma}
13853
13854 GCC supports several types of pragmas, primarily in order to compile
13855 code originally written for other compilers.  Note that in general
13856 we do not recommend the use of pragmas; @xref{Function Attributes},
13857 for further explanation.
13858
13859 @menu
13860 * ARM Pragmas::
13861 * M32C Pragmas::
13862 * MeP Pragmas::
13863 * RS/6000 and PowerPC Pragmas::
13864 * Darwin Pragmas::
13865 * Solaris Pragmas::
13866 * Symbol-Renaming Pragmas::
13867 * Structure-Packing Pragmas::
13868 * Weak Pragmas::
13869 * Diagnostic Pragmas::
13870 * Visibility Pragmas::
13871 * Push/Pop Macro Pragmas::
13872 * Function Specific Option Pragmas::
13873 @end menu
13874
13875 @node ARM Pragmas
13876 @subsection ARM Pragmas
13877
13878 The ARM target defines pragmas for controlling the default addition of
13879 @code{long_call} and @code{short_call} attributes to functions.
13880 @xref{Function Attributes}, for information about the effects of these
13881 attributes.
13882
13883 @table @code
13884 @item long_calls
13885 @cindex pragma, long_calls
13886 Set all subsequent functions to have the @code{long_call} attribute.
13887
13888 @item no_long_calls
13889 @cindex pragma, no_long_calls
13890 Set all subsequent functions to have the @code{short_call} attribute.
13891
13892 @item long_calls_off
13893 @cindex pragma, long_calls_off
13894 Do not affect the @code{long_call} or @code{short_call} attributes of
13895 subsequent functions.
13896 @end table
13897
13898 @node M32C Pragmas
13899 @subsection M32C Pragmas
13900
13901 @table @code
13902 @item GCC memregs @var{number}
13903 @cindex pragma, memregs
13904 Overrides the command-line option @code{-memregs=} for the current
13905 file.  Use with care!  This pragma must be before any function in the
13906 file, and mixing different memregs values in different objects may
13907 make them incompatible.  This pragma is useful when a
13908 performance-critical function uses a memreg for temporary values,
13909 as it may allow you to reduce the number of memregs used.
13910
13911 @item ADDRESS @var{name} @var{address}
13912 @cindex pragma, address
13913 For any declared symbols matching @var{name}, this does three things
13914 to that symbol: it forces the symbol to be located at the given
13915 address (a number), it forces the symbol to be volatile, and it
13916 changes the symbol's scope to be static.  This pragma exists for
13917 compatibility with other compilers, but note that the common
13918 @code{1234H} numeric syntax is not supported (use @code{0x1234}
13919 instead).  Example:
13920
13921 @example
13922 #pragma ADDRESS port3 0x103
13923 char port3;
13924 @end example
13925
13926 @end table
13927
13928 @node MeP Pragmas
13929 @subsection MeP Pragmas
13930
13931 @table @code
13932
13933 @item custom io_volatile (on|off)
13934 @cindex pragma, custom io_volatile
13935 Overrides the command line option @code{-mio-volatile} for the current
13936 file.  Note that for compatibility with future GCC releases, this
13937 option should only be used once before any @code{io} variables in each
13938 file.
13939
13940 @item GCC coprocessor available @var{registers}
13941 @cindex pragma, coprocessor available
13942 Specifies which coprocessor registers are available to the register
13943 allocator.  @var{registers} may be a single register, register range
13944 separated by ellipses, or comma-separated list of those.  Example:
13945
13946 @example
13947 #pragma GCC coprocessor available $c0...$c10, $c28
13948 @end example
13949
13950 @item GCC coprocessor call_saved @var{registers}
13951 @cindex pragma, coprocessor call_saved
13952 Specifies which coprocessor registers are to be saved and restored by
13953 any function using them.  @var{registers} may be a single register,
13954 register range separated by ellipses, or comma-separated list of
13955 those.  Example:
13956
13957 @example
13958 #pragma GCC coprocessor call_saved $c4...$c6, $c31
13959 @end example
13960
13961 @item GCC coprocessor subclass '(A|B|C|D)' = @var{registers}
13962 @cindex pragma, coprocessor subclass
13963 Creates and defines a register class.  These register classes can be
13964 used by inline @code{asm} constructs.  @var{registers} may be a single
13965 register, register range separated by ellipses, or comma-separated
13966 list of those.  Example:
13967
13968 @example
13969 #pragma GCC coprocessor subclass 'B' = $c2, $c4, $c6
13970
13971 asm ("cpfoo %0" : "=B" (x));
13972 @end example
13973
13974 @item GCC disinterrupt @var{name} , @var{name} @dots{}
13975 @cindex pragma, disinterrupt
13976 For the named functions, the compiler adds code to disable interrupts
13977 for the duration of those functions.  Any functions so named, which
13978 are not encountered in the source, cause a warning that the pragma was
13979 not used.  Examples:
13980
13981 @example
13982 #pragma disinterrupt foo
13983 #pragma disinterrupt bar, grill
13984 int foo () @{ @dots{} @}
13985 @end example
13986
13987 @item GCC call @var{name} , @var{name} @dots{}
13988 @cindex pragma, call
13989 For the named functions, the compiler always uses a register-indirect
13990 call model when calling the named functions.  Examples:
13991
13992 @example
13993 extern int foo ();
13994 #pragma call foo
13995 @end example
13996
13997 @end table
13998
13999 @node RS/6000 and PowerPC Pragmas
14000 @subsection RS/6000 and PowerPC Pragmas
14001
14002 The RS/6000 and PowerPC targets define one pragma for controlling
14003 whether or not the @code{longcall} attribute is added to function
14004 declarations by default.  This pragma overrides the @option{-mlongcall}
14005 option, but not the @code{longcall} and @code{shortcall} attributes.
14006 @xref{RS/6000 and PowerPC Options}, for more information about when long
14007 calls are and are not necessary.
14008
14009 @table @code
14010 @item longcall (1)
14011 @cindex pragma, longcall
14012 Apply the @code{longcall} attribute to all subsequent function
14013 declarations.
14014
14015 @item longcall (0)
14016 Do not apply the @code{longcall} attribute to subsequent function
14017 declarations.
14018 @end table
14019
14020 @c Describe h8300 pragmas here.
14021 @c Describe sh pragmas here.
14022 @c Describe v850 pragmas here.
14023
14024 @node Darwin Pragmas
14025 @subsection Darwin Pragmas
14026
14027 The following pragmas are available for all architectures running the
14028 Darwin operating system.  These are useful for compatibility with other
14029 Mac OS compilers.
14030
14031 @table @code
14032 @item mark @var{tokens}@dots{}
14033 @cindex pragma, mark
14034 This pragma is accepted, but has no effect.
14035
14036 @item options align=@var{alignment}
14037 @cindex pragma, options align
14038 This pragma sets the alignment of fields in structures.  The values of
14039 @var{alignment} may be @code{mac68k}, to emulate m68k alignment, or
14040 @code{power}, to emulate PowerPC alignment.  Uses of this pragma nest
14041 properly; to restore the previous setting, use @code{reset} for the
14042 @var{alignment}.
14043
14044 @item segment @var{tokens}@dots{}
14045 @cindex pragma, segment
14046 This pragma is accepted, but has no effect.
14047
14048 @item unused (@var{var} [, @var{var}]@dots{})
14049 @cindex pragma, unused
14050 This pragma declares variables to be possibly unused.  GCC will not
14051 produce warnings for the listed variables.  The effect is similar to
14052 that of the @code{unused} attribute, except that this pragma may appear
14053 anywhere within the variables' scopes.
14054 @end table
14055
14056 @node Solaris Pragmas
14057 @subsection Solaris Pragmas
14058
14059 The Solaris target supports @code{#pragma redefine_extname}
14060 (@pxref{Symbol-Renaming Pragmas}).  It also supports additional
14061 @code{#pragma} directives for compatibility with the system compiler.
14062
14063 @table @code
14064 @item align @var{alignment} (@var{variable} [, @var{variable}]...)
14065 @cindex pragma, align
14066
14067 Increase the minimum alignment of each @var{variable} to @var{alignment}.
14068 This is the same as GCC's @code{aligned} attribute @pxref{Variable
14069 Attributes}).  Macro expansion occurs on the arguments to this pragma
14070 when compiling C and Objective-C@.  It does not currently occur when
14071 compiling C++, but this is a bug which may be fixed in a future
14072 release.
14073
14074 @item fini (@var{function} [, @var{function}]...)
14075 @cindex pragma, fini
14076
14077 This pragma causes each listed @var{function} to be called after
14078 main, or during shared module unloading, by adding a call to the
14079 @code{.fini} section.
14080
14081 @item init (@var{function} [, @var{function}]...)
14082 @cindex pragma, init
14083
14084 This pragma causes each listed @var{function} to be called during
14085 initialization (before @code{main}) or during shared module loading, by
14086 adding a call to the @code{.init} section.
14087
14088 @end table
14089
14090 @node Symbol-Renaming Pragmas
14091 @subsection Symbol-Renaming Pragmas
14092
14093 For compatibility with the Solaris and Tru64 UNIX system headers, GCC
14094 supports two @code{#pragma} directives which change the name used in
14095 assembly for a given declaration.  @code{#pragma extern_prefix} is only
14096 available on platforms whose system headers need it. To get this effect
14097 on all platforms supported by GCC, use the asm labels extension (@pxref{Asm
14098 Labels}).
14099
14100 @table @code
14101 @item redefine_extname @var{oldname} @var{newname}
14102 @cindex pragma, redefine_extname
14103
14104 This pragma gives the C function @var{oldname} the assembly symbol
14105 @var{newname}.  The preprocessor macro @code{__PRAGMA_REDEFINE_EXTNAME}
14106 will be defined if this pragma is available (currently on all platforms).
14107
14108 @item extern_prefix @var{string}
14109 @cindex pragma, extern_prefix
14110
14111 This pragma causes all subsequent external function and variable
14112 declarations to have @var{string} prepended to their assembly symbols.
14113 This effect may be terminated with another @code{extern_prefix} pragma
14114 whose argument is an empty string.  The preprocessor macro
14115 @code{__PRAGMA_EXTERN_PREFIX} will be defined if this pragma is
14116 available (currently only on Tru64 UNIX)@.
14117 @end table
14118
14119 These pragmas and the asm labels extension interact in a complicated
14120 manner.  Here are some corner cases you may want to be aware of.
14121
14122 @enumerate
14123 @item Both pragmas silently apply only to declarations with external
14124 linkage.  Asm labels do not have this restriction.
14125
14126 @item In C++, both pragmas silently apply only to declarations with
14127 ``C'' linkage.  Again, asm labels do not have this restriction.
14128
14129 @item If any of the three ways of changing the assembly name of a
14130 declaration is applied to a declaration whose assembly name has
14131 already been determined (either by a previous use of one of these
14132 features, or because the compiler needed the assembly name in order to
14133 generate code), and the new name is different, a warning issues and
14134 the name does not change.
14135
14136 @item The @var{oldname} used by @code{#pragma redefine_extname} is
14137 always the C-language name.
14138
14139 @item If @code{#pragma extern_prefix} is in effect, and a declaration
14140 occurs with an asm label attached, the prefix is silently ignored for
14141 that declaration.
14142
14143 @item If @code{#pragma extern_prefix} and @code{#pragma redefine_extname}
14144 apply to the same declaration, whichever triggered first wins, and a
14145 warning issues if they contradict each other.  (We would like to have
14146 @code{#pragma redefine_extname} always win, for consistency with asm
14147 labels, but if @code{#pragma extern_prefix} triggers first we have no
14148 way of knowing that that happened.)
14149 @end enumerate
14150
14151 @node Structure-Packing Pragmas
14152 @subsection Structure-Packing Pragmas
14153
14154 For compatibility with Microsoft Windows compilers, GCC supports a
14155 set of @code{#pragma} directives which change the maximum alignment of
14156 members of structures (other than zero-width bitfields), unions, and
14157 classes subsequently defined. The @var{n} value below always is required
14158 to be a small power of two and specifies the new alignment in bytes.
14159
14160 @enumerate
14161 @item @code{#pragma pack(@var{n})} simply sets the new alignment.
14162 @item @code{#pragma pack()} sets the alignment to the one that was in
14163 effect when compilation started (see also command-line option
14164 @option{-fpack-struct[=@var{n}]} @pxref{Code Gen Options}).
14165 @item @code{#pragma pack(push[,@var{n}])} pushes the current alignment
14166 setting on an internal stack and then optionally sets the new alignment.
14167 @item @code{#pragma pack(pop)} restores the alignment setting to the one
14168 saved at the top of the internal stack (and removes that stack entry).
14169 Note that @code{#pragma pack([@var{n}])} does not influence this internal
14170 stack; thus it is possible to have @code{#pragma pack(push)} followed by
14171 multiple @code{#pragma pack(@var{n})} instances and finalized by a single
14172 @code{#pragma pack(pop)}.
14173 @end enumerate
14174
14175 Some targets, e.g.@: i386 and powerpc, support the @code{ms_struct}
14176 @code{#pragma} which lays out a structure as the documented
14177 @code{__attribute__ ((ms_struct))}.
14178 @enumerate
14179 @item @code{#pragma ms_struct on} turns on the layout for structures
14180 declared.
14181 @item @code{#pragma ms_struct off} turns off the layout for structures
14182 declared.
14183 @item @code{#pragma ms_struct reset} goes back to the default layout.
14184 @end enumerate
14185
14186 @node Weak Pragmas
14187 @subsection Weak Pragmas
14188
14189 For compatibility with SVR4, GCC supports a set of @code{#pragma}
14190 directives for declaring symbols to be weak, and defining weak
14191 aliases.
14192
14193 @table @code
14194 @item #pragma weak @var{symbol}
14195 @cindex pragma, weak
14196 This pragma declares @var{symbol} to be weak, as if the declaration
14197 had the attribute of the same name.  The pragma may appear before
14198 or after the declaration of @var{symbol}.  It is not an error for
14199 @var{symbol} to never be defined at all.
14200
14201 @item #pragma weak @var{symbol1} = @var{symbol2}
14202 This pragma declares @var{symbol1} to be a weak alias of @var{symbol2}.
14203 It is an error if @var{symbol2} is not defined in the current
14204 translation unit.
14205 @end table
14206
14207 @node Diagnostic Pragmas
14208 @subsection Diagnostic Pragmas
14209
14210 GCC allows the user to selectively enable or disable certain types of
14211 diagnostics, and change the kind of the diagnostic.  For example, a
14212 project's policy might require that all sources compile with
14213 @option{-Werror} but certain files might have exceptions allowing
14214 specific types of warnings.  Or, a project might selectively enable
14215 diagnostics and treat them as errors depending on which preprocessor
14216 macros are defined.
14217
14218 @table @code
14219 @item #pragma GCC diagnostic @var{kind} @var{option}
14220 @cindex pragma, diagnostic
14221
14222 Modifies the disposition of a diagnostic.  Note that not all
14223 diagnostics are modifiable; at the moment only warnings (normally
14224 controlled by @samp{-W@dots{}}) can be controlled, and not all of them.
14225 Use @option{-fdiagnostics-show-option} to determine which diagnostics
14226 are controllable and which option controls them.
14227
14228 @var{kind} is @samp{error} to treat this diagnostic as an error,
14229 @samp{warning} to treat it like a warning (even if @option{-Werror} is
14230 in effect), or @samp{ignored} if the diagnostic is to be ignored.
14231 @var{option} is a double quoted string which matches the command-line
14232 option.
14233
14234 @example
14235 #pragma GCC diagnostic warning "-Wformat"
14236 #pragma GCC diagnostic error "-Wformat"
14237 #pragma GCC diagnostic ignored "-Wformat"
14238 @end example
14239
14240 Note that these pragmas override any command-line options.  GCC keeps
14241 track of the location of each pragma, and issues diagnostics according
14242 to the state as of that point in the source file.  Thus, pragmas occurring
14243 after a line do not affect diagnostics caused by that line.
14244
14245 @item #pragma GCC diagnostic push
14246 @itemx #pragma GCC diagnostic pop
14247
14248 Causes GCC to remember the state of the diagnostics as of each
14249 @code{push}, and restore to that point at each @code{pop}.  If a
14250 @code{pop} has no matching @code{push}, the command line options are
14251 restored.
14252
14253 @example
14254 #pragma GCC diagnostic error "-Wuninitialized"
14255   foo(a);                       /* error is given for this one */
14256 #pragma GCC diagnostic push
14257 #pragma GCC diagnostic ignored "-Wuninitialized"
14258   foo(b);                       /* no diagnostic for this one */
14259 #pragma GCC diagnostic pop
14260   foo(c);                       /* error is given for this one */
14261 #pragma GCC diagnostic pop
14262   foo(d);                       /* depends on command line options */
14263 @end example
14264
14265 @end table
14266
14267 GCC also offers a simple mechanism for printing messages during
14268 compilation.
14269
14270 @table @code
14271 @item #pragma message @var{string}
14272 @cindex pragma, diagnostic
14273
14274 Prints @var{string} as a compiler message on compilation.  The message
14275 is informational only, and is neither a compilation warning nor an error.
14276
14277 @smallexample
14278 #pragma message "Compiling " __FILE__ "..."
14279 @end smallexample
14280
14281 @var{string} may be parenthesized, and is printed with location
14282 information.  For example,
14283
14284 @smallexample
14285 #define DO_PRAGMA(x) _Pragma (#x)
14286 #define TODO(x) DO_PRAGMA(message ("TODO - " #x))
14287
14288 TODO(Remember to fix this)
14289 @end smallexample
14290
14291 prints @samp{/tmp/file.c:4: note: #pragma message:
14292 TODO - Remember to fix this}.
14293
14294 @end table
14295
14296 @node Visibility Pragmas
14297 @subsection Visibility Pragmas
14298
14299 @table @code
14300 @item #pragma GCC visibility push(@var{visibility})
14301 @itemx #pragma GCC visibility pop
14302 @cindex pragma, visibility
14303
14304 This pragma allows the user to set the visibility for multiple
14305 declarations without having to give each a visibility attribute
14306 @xref{Function Attributes}, for more information about visibility and
14307 the attribute syntax.
14308
14309 In C++, @samp{#pragma GCC visibility} affects only namespace-scope
14310 declarations.  Class members and template specializations are not
14311 affected; if you want to override the visibility for a particular
14312 member or instantiation, you must use an attribute.
14313
14314 @end table
14315
14316
14317 @node Push/Pop Macro Pragmas
14318 @subsection Push/Pop Macro Pragmas
14319
14320 For compatibility with Microsoft Windows compilers, GCC supports
14321 @samp{#pragma push_macro(@var{"macro_name"})}
14322 and @samp{#pragma pop_macro(@var{"macro_name"})}.
14323
14324 @table @code
14325 @item #pragma push_macro(@var{"macro_name"})
14326 @cindex pragma, push_macro
14327 This pragma saves the value of the macro named as @var{macro_name} to
14328 the top of the stack for this macro.
14329
14330 @item #pragma pop_macro(@var{"macro_name"})
14331 @cindex pragma, pop_macro
14332 This pragma sets the value of the macro named as @var{macro_name} to
14333 the value on top of the stack for this macro. If the stack for
14334 @var{macro_name} is empty, the value of the macro remains unchanged.
14335 @end table
14336
14337 For example:
14338
14339 @smallexample
14340 #define X  1
14341 #pragma push_macro("X")
14342 #undef X
14343 #define X -1
14344 #pragma pop_macro("X")
14345 int x [X];
14346 @end smallexample
14347
14348 In this example, the definition of X as 1 is saved by @code{#pragma
14349 push_macro} and restored by @code{#pragma pop_macro}.
14350
14351 @node Function Specific Option Pragmas
14352 @subsection Function Specific Option Pragmas
14353
14354 @table @code
14355 @item #pragma GCC target (@var{"string"}...)
14356 @cindex pragma GCC target
14357
14358 This pragma allows you to set target specific options for functions
14359 defined later in the source file.  One or more strings can be
14360 specified.  Each function that is defined after this point will be as
14361 if @code{attribute((target("STRING")))} was specified for that
14362 function.  The parenthesis around the options is optional.
14363 @xref{Function Attributes}, for more information about the
14364 @code{target} attribute and the attribute syntax.
14365
14366 The @code{#pragma GCC target} attribute is not implemented in GCC versions earlier
14367 than 4.4 for the i386/x86_64 and 4.6 for the PowerPC backends.  At
14368 present, it is not implemented for other backends.
14369 @end table
14370
14371 @table @code
14372 @item #pragma GCC optimize (@var{"string"}...)
14373 @cindex pragma GCC optimize
14374
14375 This pragma allows you to set global optimization options for functions
14376 defined later in the source file.  One or more strings can be
14377 specified.  Each function that is defined after this point will be as
14378 if @code{attribute((optimize("STRING")))} was specified for that
14379 function.  The parenthesis around the options is optional.
14380 @xref{Function Attributes}, for more information about the
14381 @code{optimize} attribute and the attribute syntax.
14382
14383 The @samp{#pragma GCC optimize} pragma is not implemented in GCC
14384 versions earlier than 4.4.
14385 @end table
14386
14387 @table @code
14388 @item #pragma GCC push_options
14389 @itemx #pragma GCC pop_options
14390 @cindex pragma GCC push_options
14391 @cindex pragma GCC pop_options
14392
14393 These pragmas maintain a stack of the current target and optimization
14394 options.  It is intended for include files where you temporarily want
14395 to switch to using a different @samp{#pragma GCC target} or
14396 @samp{#pragma GCC optimize} and then to pop back to the previous
14397 options.
14398
14399 The @samp{#pragma GCC push_options} and @samp{#pragma GCC pop_options}
14400 pragmas are not implemented in GCC versions earlier than 4.4.
14401 @end table
14402
14403 @table @code
14404 @item #pragma GCC reset_options
14405 @cindex pragma GCC reset_options
14406
14407 This pragma clears the current @code{#pragma GCC target} and
14408 @code{#pragma GCC optimize} to use the default switches as specified
14409 on the command line.
14410
14411 The @samp{#pragma GCC reset_options} pragma is not implemented in GCC
14412 versions earlier than 4.4.
14413 @end table
14414
14415 @node Unnamed Fields
14416 @section Unnamed struct/union fields within structs/unions
14417 @cindex @code{struct}
14418 @cindex @code{union}
14419
14420 As permitted by ISO C11 and for compatibility with other compilers,
14421 GCC allows you to define
14422 a structure or union that contains, as fields, structures and unions
14423 without names.  For example:
14424
14425 @smallexample
14426 struct @{
14427   int a;
14428   union @{
14429     int b;
14430     float c;
14431   @};
14432   int d;
14433 @} foo;
14434 @end smallexample
14435
14436 In this example, the user would be able to access members of the unnamed
14437 union with code like @samp{foo.b}.  Note that only unnamed structs and
14438 unions are allowed, you may not have, for example, an unnamed
14439 @code{int}.
14440
14441 You must never create such structures that cause ambiguous field definitions.
14442 For example, this structure:
14443
14444 @smallexample
14445 struct @{
14446   int a;
14447   struct @{
14448     int a;
14449   @};
14450 @} foo;
14451 @end smallexample
14452
14453 It is ambiguous which @code{a} is being referred to with @samp{foo.a}.
14454 The compiler gives errors for such constructs.
14455
14456 @opindex fms-extensions
14457 Unless @option{-fms-extensions} is used, the unnamed field must be a
14458 structure or union definition without a tag (for example, @samp{struct
14459 @{ int a; @};}).  If @option{-fms-extensions} is used, the field may
14460 also be a definition with a tag such as @samp{struct foo @{ int a;
14461 @};}, a reference to a previously defined structure or union such as
14462 @samp{struct foo;}, or a reference to a @code{typedef} name for a
14463 previously defined structure or union type.
14464
14465 @opindex fplan9-extensions
14466 The option @option{-fplan9-extensions} enables
14467 @option{-fms-extensions} as well as two other extensions.  First, a
14468 pointer to a structure is automatically converted to a pointer to an
14469 anonymous field for assignments and function calls.  For example:
14470
14471 @smallexample
14472 struct s1 @{ int a; @};
14473 struct s2 @{ struct s1; @};
14474 extern void f1 (struct s1 *);
14475 void f2 (struct s2 *p) @{ f1 (p); @}
14476 @end smallexample
14477
14478 In the call to @code{f1} inside @code{f2}, the pointer @code{p} is
14479 converted into a pointer to the anonymous field.
14480
14481 Second, when the type of an anonymous field is a @code{typedef} for a
14482 @code{struct} or @code{union}, code may refer to the field using the
14483 name of the @code{typedef}.
14484
14485 @smallexample
14486 typedef struct @{ int a; @} s1;
14487 struct s2 @{ s1; @};
14488 s1 f1 (struct s2 *p) @{ return p->s1; @}
14489 @end smallexample
14490
14491 These usages are only permitted when they are not ambiguous.
14492
14493 @node Thread-Local
14494 @section Thread-Local Storage
14495 @cindex Thread-Local Storage
14496 @cindex @acronym{TLS}
14497 @cindex @code{__thread}
14498
14499 Thread-local storage (@acronym{TLS}) is a mechanism by which variables
14500 are allocated such that there is one instance of the variable per extant
14501 thread.  The run-time model GCC uses to implement this originates
14502 in the IA-64 processor-specific ABI, but has since been migrated
14503 to other processors as well.  It requires significant support from
14504 the linker (@command{ld}), dynamic linker (@command{ld.so}), and
14505 system libraries (@file{libc.so} and @file{libpthread.so}), so it
14506 is not available everywhere.
14507
14508 At the user level, the extension is visible with a new storage
14509 class keyword: @code{__thread}.  For example:
14510
14511 @smallexample
14512 __thread int i;
14513 extern __thread struct state s;
14514 static __thread char *p;
14515 @end smallexample
14516
14517 The @code{__thread} specifier may be used alone, with the @code{extern}
14518 or @code{static} specifiers, but with no other storage class specifier.
14519 When used with @code{extern} or @code{static}, @code{__thread} must appear
14520 immediately after the other storage class specifier.
14521
14522 The @code{__thread} specifier may be applied to any global, file-scoped
14523 static, function-scoped static, or static data member of a class.  It may
14524 not be applied to block-scoped automatic or non-static data member.
14525
14526 When the address-of operator is applied to a thread-local variable, it is
14527 evaluated at run-time and returns the address of the current thread's
14528 instance of that variable.  An address so obtained may be used by any
14529 thread.  When a thread terminates, any pointers to thread-local variables
14530 in that thread become invalid.
14531
14532 No static initialization may refer to the address of a thread-local variable.
14533
14534 In C++, if an initializer is present for a thread-local variable, it must
14535 be a @var{constant-expression}, as defined in 5.19.2 of the ANSI/ISO C++
14536 standard.
14537
14538 See @uref{http://www.akkadia.org/drepper/tls.pdf,
14539 ELF Handling For Thread-Local Storage} for a detailed explanation of
14540 the four thread-local storage addressing models, and how the run-time
14541 is expected to function.
14542
14543 @menu
14544 * C99 Thread-Local Edits::
14545 * C++98 Thread-Local Edits::
14546 @end menu
14547
14548 @node C99 Thread-Local Edits
14549 @subsection ISO/IEC 9899:1999 Edits for Thread-Local Storage
14550
14551 The following are a set of changes to ISO/IEC 9899:1999 (aka C99)
14552 that document the exact semantics of the language extension.
14553
14554 @itemize @bullet
14555 @item
14556 @cite{5.1.2  Execution environments}
14557
14558 Add new text after paragraph 1
14559
14560 @quotation
14561 Within either execution environment, a @dfn{thread} is a flow of
14562 control within a program.  It is implementation defined whether
14563 or not there may be more than one thread associated with a program.
14564 It is implementation defined how threads beyond the first are
14565 created, the name and type of the function called at thread
14566 startup, and how threads may be terminated.  However, objects
14567 with thread storage duration shall be initialized before thread
14568 startup.
14569 @end quotation
14570
14571 @item
14572 @cite{6.2.4  Storage durations of objects}
14573
14574 Add new text before paragraph 3
14575
14576 @quotation
14577 An object whose identifier is declared with the storage-class
14578 specifier @w{@code{__thread}} has @dfn{thread storage duration}.
14579 Its lifetime is the entire execution of the thread, and its
14580 stored value is initialized only once, prior to thread startup.
14581 @end quotation
14582
14583 @item
14584 @cite{6.4.1  Keywords}
14585
14586 Add @code{__thread}.
14587
14588 @item
14589 @cite{6.7.1  Storage-class specifiers}
14590
14591 Add @code{__thread} to the list of storage class specifiers in
14592 paragraph 1.
14593
14594 Change paragraph 2 to
14595
14596 @quotation
14597 With the exception of @code{__thread}, at most one storage-class
14598 specifier may be given [@dots{}].  The @code{__thread} specifier may
14599 be used alone, or immediately following @code{extern} or
14600 @code{static}.
14601 @end quotation
14602
14603 Add new text after paragraph 6
14604
14605 @quotation
14606 The declaration of an identifier for a variable that has
14607 block scope that specifies @code{__thread} shall also
14608 specify either @code{extern} or @code{static}.
14609
14610 The @code{__thread} specifier shall be used only with
14611 variables.
14612 @end quotation
14613 @end itemize
14614
14615 @node C++98 Thread-Local Edits
14616 @subsection ISO/IEC 14882:1998 Edits for Thread-Local Storage
14617
14618 The following are a set of changes to ISO/IEC 14882:1998 (aka C++98)
14619 that document the exact semantics of the language extension.
14620
14621 @itemize @bullet
14622 @item
14623 @b{[intro.execution]}
14624
14625 New text after paragraph 4
14626
14627 @quotation
14628 A @dfn{thread} is a flow of control within the abstract machine.
14629 It is implementation defined whether or not there may be more than
14630 one thread.
14631 @end quotation
14632
14633 New text after paragraph 7
14634
14635 @quotation
14636 It is unspecified whether additional action must be taken to
14637 ensure when and whether side effects are visible to other threads.
14638 @end quotation
14639
14640 @item
14641 @b{[lex.key]}
14642
14643 Add @code{__thread}.
14644
14645 @item
14646 @b{[basic.start.main]}
14647
14648 Add after paragraph 5
14649
14650 @quotation
14651 The thread that begins execution at the @code{main} function is called
14652 the @dfn{main thread}.  It is implementation defined how functions
14653 beginning threads other than the main thread are designated or typed.
14654 A function so designated, as well as the @code{main} function, is called
14655 a @dfn{thread startup function}.  It is implementation defined what
14656 happens if a thread startup function returns.  It is implementation
14657 defined what happens to other threads when any thread calls @code{exit}.
14658 @end quotation
14659
14660 @item
14661 @b{[basic.start.init]}
14662
14663 Add after paragraph 4
14664
14665 @quotation
14666 The storage for an object of thread storage duration shall be
14667 statically initialized before the first statement of the thread startup
14668 function.  An object of thread storage duration shall not require
14669 dynamic initialization.
14670 @end quotation
14671
14672 @item
14673 @b{[basic.start.term]}
14674
14675 Add after paragraph 3
14676
14677 @quotation
14678 The type of an object with thread storage duration shall not have a
14679 non-trivial destructor, nor shall it be an array type whose elements
14680 (directly or indirectly) have non-trivial destructors.
14681 @end quotation
14682
14683 @item
14684 @b{[basic.stc]}
14685
14686 Add ``thread storage duration'' to the list in paragraph 1.
14687
14688 Change paragraph 2
14689
14690 @quotation
14691 Thread, static, and automatic storage durations are associated with
14692 objects introduced by declarations [@dots{}].
14693 @end quotation
14694
14695 Add @code{__thread} to the list of specifiers in paragraph 3.
14696
14697 @item
14698 @b{[basic.stc.thread]}
14699
14700 New section before @b{[basic.stc.static]}
14701
14702 @quotation
14703 The keyword @code{__thread} applied to a non-local object gives the
14704 object thread storage duration.
14705
14706 A local variable or class data member declared both @code{static}
14707 and @code{__thread} gives the variable or member thread storage
14708 duration.
14709 @end quotation
14710
14711 @item
14712 @b{[basic.stc.static]}
14713
14714 Change paragraph 1
14715
14716 @quotation
14717 All objects which have neither thread storage duration, dynamic
14718 storage duration nor are local [@dots{}].
14719 @end quotation
14720
14721 @item
14722 @b{[dcl.stc]}
14723
14724 Add @code{__thread} to the list in paragraph 1.
14725
14726 Change paragraph 1
14727
14728 @quotation
14729 With the exception of @code{__thread}, at most one
14730 @var{storage-class-specifier} shall appear in a given
14731 @var{decl-specifier-seq}.  The @code{__thread} specifier may
14732 be used alone, or immediately following the @code{extern} or
14733 @code{static} specifiers.  [@dots{}]
14734 @end quotation
14735
14736 Add after paragraph 5
14737
14738 @quotation
14739 The @code{__thread} specifier can be applied only to the names of objects
14740 and to anonymous unions.
14741 @end quotation
14742
14743 @item
14744 @b{[class.mem]}
14745
14746 Add after paragraph 6
14747
14748 @quotation
14749 Non-@code{static} members shall not be @code{__thread}.
14750 @end quotation
14751 @end itemize
14752
14753 @node Binary constants
14754 @section Binary constants using the @samp{0b} prefix
14755 @cindex Binary constants using the @samp{0b} prefix
14756
14757 Integer constants can be written as binary constants, consisting of a
14758 sequence of @samp{0} and @samp{1} digits, prefixed by @samp{0b} or
14759 @samp{0B}.  This is particularly useful in environments that operate a
14760 lot on the bit-level (like microcontrollers).
14761
14762 The following statements are identical:
14763
14764 @smallexample
14765 i =       42;
14766 i =     0x2a;
14767 i =      052;
14768 i = 0b101010;
14769 @end smallexample
14770
14771 The type of these constants follows the same rules as for octal or
14772 hexadecimal integer constants, so suffixes like @samp{L} or @samp{UL}
14773 can be applied.
14774
14775 @node C++ Extensions
14776 @chapter Extensions to the C++ Language
14777 @cindex extensions, C++ language
14778 @cindex C++ language extensions
14779
14780 The GNU compiler provides these extensions to the C++ language (and you
14781 can also use most of the C language extensions in your C++ programs).  If you
14782 want to write code that checks whether these features are available, you can
14783 test for the GNU compiler the same way as for C programs: check for a
14784 predefined macro @code{__GNUC__}.  You can also use @code{__GNUG__} to
14785 test specifically for GNU C++ (@pxref{Common Predefined Macros,,
14786 Predefined Macros,cpp,The GNU C Preprocessor}).
14787
14788 @menu
14789 * C++ Volatiles::       What constitutes an access to a volatile object.
14790 * Restricted Pointers:: C99 restricted pointers and references.
14791 * Vague Linkage::       Where G++ puts inlines, vtables and such.
14792 * C++ Interface::       You can use a single C++ header file for both
14793                         declarations and definitions.
14794 * Template Instantiation:: Methods for ensuring that exactly one copy of
14795                         each needed template instantiation is emitted.
14796 * Bound member functions:: You can extract a function pointer to the
14797                         method denoted by a @samp{->*} or @samp{.*} expression.
14798 * C++ Attributes::      Variable, function, and type attributes for C++ only.
14799 * Namespace Association:: Strong using-directives for namespace association.
14800 * Type Traits::         Compiler support for type traits
14801 * Java Exceptions::     Tweaking exception handling to work with Java.
14802 * Deprecated Features:: Things will disappear from g++.
14803 * Backwards Compatibility:: Compatibilities with earlier definitions of C++.
14804 @end menu
14805
14806 @node C++ Volatiles
14807 @section When is a Volatile C++ Object Accessed?
14808 @cindex accessing volatiles
14809 @cindex volatile read
14810 @cindex volatile write
14811 @cindex volatile access
14812
14813 The C++ standard differs from the C standard in its treatment of
14814 volatile objects.  It fails to specify what constitutes a volatile
14815 access, except to say that C++ should behave in a similar manner to C
14816 with respect to volatiles, where possible.  However, the different
14817 lvalueness of expressions between C and C++ complicate the behavior.
14818 G++ behaves the same as GCC for volatile access, @xref{C
14819 Extensions,,Volatiles}, for a description of GCC's behavior.
14820
14821 The C and C++ language specifications differ when an object is
14822 accessed in a void context:
14823
14824 @smallexample
14825 volatile int *src = @var{somevalue};
14826 *src;
14827 @end smallexample
14828
14829 The C++ standard specifies that such expressions do not undergo lvalue
14830 to rvalue conversion, and that the type of the dereferenced object may
14831 be incomplete.  The C++ standard does not specify explicitly that it
14832 is lvalue to rvalue conversion which is responsible for causing an
14833 access.  There is reason to believe that it is, because otherwise
14834 certain simple expressions become undefined.  However, because it
14835 would surprise most programmers, G++ treats dereferencing a pointer to
14836 volatile object of complete type as GCC would do for an equivalent
14837 type in C@.  When the object has incomplete type, G++ issues a
14838 warning; if you wish to force an error, you must force a conversion to
14839 rvalue with, for instance, a static cast.
14840
14841 When using a reference to volatile, G++ does not treat equivalent
14842 expressions as accesses to volatiles, but instead issues a warning that
14843 no volatile is accessed.  The rationale for this is that otherwise it
14844 becomes difficult to determine where volatile access occur, and not
14845 possible to ignore the return value from functions returning volatile
14846 references.  Again, if you wish to force a read, cast the reference to
14847 an rvalue.
14848
14849 G++ implements the same behavior as GCC does when assigning to a
14850 volatile object -- there is no reread of the assigned-to object, the
14851 assigned rvalue is reused.  Note that in C++ assignment expressions
14852 are lvalues, and if used as an lvalue, the volatile object will be
14853 referred to.  For instance, @var{vref} will refer to @var{vobj}, as
14854 expected, in the following example:
14855
14856 @smallexample
14857 volatile int vobj;
14858 volatile int &vref = vobj = @var{something};
14859 @end smallexample
14860
14861 @node Restricted Pointers
14862 @section Restricting Pointer Aliasing
14863 @cindex restricted pointers
14864 @cindex restricted references
14865 @cindex restricted this pointer
14866
14867 As with the C front end, G++ understands the C99 feature of restricted pointers,
14868 specified with the @code{__restrict__}, or @code{__restrict} type
14869 qualifier.  Because you cannot compile C++ by specifying the @option{-std=c99}
14870 language flag, @code{restrict} is not a keyword in C++.
14871
14872 In addition to allowing restricted pointers, you can specify restricted
14873 references, which indicate that the reference is not aliased in the local
14874 context.
14875
14876 @smallexample
14877 void fn (int *__restrict__ rptr, int &__restrict__ rref)
14878 @{
14879   /* @r{@dots{}} */
14880 @}
14881 @end smallexample
14882
14883 @noindent
14884 In the body of @code{fn}, @var{rptr} points to an unaliased integer and
14885 @var{rref} refers to a (different) unaliased integer.
14886
14887 You may also specify whether a member function's @var{this} pointer is
14888 unaliased by using @code{__restrict__} as a member function qualifier.
14889
14890 @smallexample
14891 void T::fn () __restrict__
14892 @{
14893   /* @r{@dots{}} */
14894 @}
14895 @end smallexample
14896
14897 @noindent
14898 Within the body of @code{T::fn}, @var{this} will have the effective
14899 definition @code{T *__restrict__ const this}.  Notice that the
14900 interpretation of a @code{__restrict__} member function qualifier is
14901 different to that of @code{const} or @code{volatile} qualifier, in that it
14902 is applied to the pointer rather than the object.  This is consistent with
14903 other compilers which implement restricted pointers.
14904
14905 As with all outermost parameter qualifiers, @code{__restrict__} is
14906 ignored in function definition matching.  This means you only need to
14907 specify @code{__restrict__} in a function definition, rather than
14908 in a function prototype as well.
14909
14910 @node Vague Linkage
14911 @section Vague Linkage
14912 @cindex vague linkage
14913
14914 There are several constructs in C++ which require space in the object
14915 file but are not clearly tied to a single translation unit.  We say that
14916 these constructs have ``vague linkage''.  Typically such constructs are
14917 emitted wherever they are needed, though sometimes we can be more
14918 clever.
14919
14920 @table @asis
14921 @item Inline Functions
14922 Inline functions are typically defined in a header file which can be
14923 included in many different compilations.  Hopefully they can usually be
14924 inlined, but sometimes an out-of-line copy is necessary, if the address
14925 of the function is taken or if inlining fails.  In general, we emit an
14926 out-of-line copy in all translation units where one is needed.  As an
14927 exception, we only emit inline virtual functions with the vtable, since
14928 it will always require a copy.
14929
14930 Local static variables and string constants used in an inline function
14931 are also considered to have vague linkage, since they must be shared
14932 between all inlined and out-of-line instances of the function.
14933
14934 @item VTables
14935 @cindex vtable
14936 C++ virtual functions are implemented in most compilers using a lookup
14937 table, known as a vtable.  The vtable contains pointers to the virtual
14938 functions provided by a class, and each object of the class contains a
14939 pointer to its vtable (or vtables, in some multiple-inheritance
14940 situations).  If the class declares any non-inline, non-pure virtual
14941 functions, the first one is chosen as the ``key method'' for the class,
14942 and the vtable is only emitted in the translation unit where the key
14943 method is defined.
14944
14945 @emph{Note:} If the chosen key method is later defined as inline, the
14946 vtable will still be emitted in every translation unit which defines it.
14947 Make sure that any inline virtuals are declared inline in the class
14948 body, even if they are not defined there.
14949
14950 @item @code{type_info} objects
14951 @cindex @code{type_info}
14952 @cindex RTTI
14953 C++ requires information about types to be written out in order to
14954 implement @samp{dynamic_cast}, @samp{typeid} and exception handling.
14955 For polymorphic classes (classes with virtual functions), the @samp{type_info}
14956 object is written out along with the vtable so that @samp{dynamic_cast}
14957 can determine the dynamic type of a class object at runtime.  For all
14958 other types, we write out the @samp{type_info} object when it is used: when
14959 applying @samp{typeid} to an expression, throwing an object, or
14960 referring to a type in a catch clause or exception specification.
14961
14962 @item Template Instantiations
14963 Most everything in this section also applies to template instantiations,
14964 but there are other options as well.
14965 @xref{Template Instantiation,,Where's the Template?}.
14966
14967 @end table
14968
14969 When used with GNU ld version 2.8 or later on an ELF system such as
14970 GNU/Linux or Solaris 2, or on Microsoft Windows, duplicate copies of
14971 these constructs will be discarded at link time.  This is known as
14972 COMDAT support.
14973
14974 On targets that don't support COMDAT, but do support weak symbols, GCC
14975 will use them.  This way one copy will override all the others, but
14976 the unused copies will still take up space in the executable.
14977
14978 For targets which do not support either COMDAT or weak symbols,
14979 most entities with vague linkage will be emitted as local symbols to
14980 avoid duplicate definition errors from the linker.  This will not happen
14981 for local statics in inlines, however, as having multiple copies will
14982 almost certainly break things.
14983
14984 @xref{C++ Interface,,Declarations and Definitions in One Header}, for
14985 another way to control placement of these constructs.
14986
14987 @node C++ Interface
14988 @section #pragma interface and implementation
14989
14990 @cindex interface and implementation headers, C++
14991 @cindex C++ interface and implementation headers
14992 @cindex pragmas, interface and implementation
14993
14994 @code{#pragma interface} and @code{#pragma implementation} provide the
14995 user with a way of explicitly directing the compiler to emit entities
14996 with vague linkage (and debugging information) in a particular
14997 translation unit.
14998
14999 @emph{Note:} As of GCC 2.7.2, these @code{#pragma}s are not useful in
15000 most cases, because of COMDAT support and the ``key method'' heuristic
15001 mentioned in @ref{Vague Linkage}.  Using them can actually cause your
15002 program to grow due to unnecessary out-of-line copies of inline
15003 functions.  Currently (3.4) the only benefit of these
15004 @code{#pragma}s is reduced duplication of debugging information, and
15005 that should be addressed soon on DWARF 2 targets with the use of
15006 COMDAT groups.
15007
15008 @table @code
15009 @item #pragma interface
15010 @itemx #pragma interface "@var{subdir}/@var{objects}.h"
15011 @kindex #pragma interface
15012 Use this directive in @emph{header files} that define object classes, to save
15013 space in most of the object files that use those classes.  Normally,
15014 local copies of certain information (backup copies of inline member
15015 functions, debugging information, and the internal tables that implement
15016 virtual functions) must be kept in each object file that includes class
15017 definitions.  You can use this pragma to avoid such duplication.  When a
15018 header file containing @samp{#pragma interface} is included in a
15019 compilation, this auxiliary information will not be generated (unless
15020 the main input source file itself uses @samp{#pragma implementation}).
15021 Instead, the object files will contain references to be resolved at link
15022 time.
15023
15024 The second form of this directive is useful for the case where you have
15025 multiple headers with the same name in different directories.  If you
15026 use this form, you must specify the same string to @samp{#pragma
15027 implementation}.
15028
15029 @item #pragma implementation
15030 @itemx #pragma implementation "@var{objects}.h"
15031 @kindex #pragma implementation
15032 Use this pragma in a @emph{main input file}, when you want full output from
15033 included header files to be generated (and made globally visible).  The
15034 included header file, in turn, should use @samp{#pragma interface}.
15035 Backup copies of inline member functions, debugging information, and the
15036 internal tables used to implement virtual functions are all generated in
15037 implementation files.
15038
15039 @cindex implied @code{#pragma implementation}
15040 @cindex @code{#pragma implementation}, implied
15041 @cindex naming convention, implementation headers
15042 If you use @samp{#pragma implementation} with no argument, it applies to
15043 an include file with the same basename@footnote{A file's @dfn{basename}
15044 was the name stripped of all leading path information and of trailing
15045 suffixes, such as @samp{.h} or @samp{.C} or @samp{.cc}.} as your source
15046 file.  For example, in @file{allclass.cc}, giving just
15047 @samp{#pragma implementation}
15048 by itself is equivalent to @samp{#pragma implementation "allclass.h"}.
15049
15050 In versions of GNU C++ prior to 2.6.0 @file{allclass.h} was treated as
15051 an implementation file whenever you would include it from
15052 @file{allclass.cc} even if you never specified @samp{#pragma
15053 implementation}.  This was deemed to be more trouble than it was worth,
15054 however, and disabled.
15055
15056 Use the string argument if you want a single implementation file to
15057 include code from multiple header files.  (You must also use
15058 @samp{#include} to include the header file; @samp{#pragma
15059 implementation} only specifies how to use the file---it doesn't actually
15060 include it.)
15061
15062 There is no way to split up the contents of a single header file into
15063 multiple implementation files.
15064 @end table
15065
15066 @cindex inlining and C++ pragmas
15067 @cindex C++ pragmas, effect on inlining
15068 @cindex pragmas in C++, effect on inlining
15069 @samp{#pragma implementation} and @samp{#pragma interface} also have an
15070 effect on function inlining.
15071
15072 If you define a class in a header file marked with @samp{#pragma
15073 interface}, the effect on an inline function defined in that class is
15074 similar to an explicit @code{extern} declaration---the compiler emits
15075 no code at all to define an independent version of the function.  Its
15076 definition is used only for inlining with its callers.
15077
15078 @opindex fno-implement-inlines
15079 Conversely, when you include the same header file in a main source file
15080 that declares it as @samp{#pragma implementation}, the compiler emits
15081 code for the function itself; this defines a version of the function
15082 that can be found via pointers (or by callers compiled without
15083 inlining).  If all calls to the function can be inlined, you can avoid
15084 emitting the function by compiling with @option{-fno-implement-inlines}.
15085 If any calls were not inlined, you will get linker errors.
15086
15087 @node Template Instantiation
15088 @section Where's the Template?
15089 @cindex template instantiation
15090
15091 C++ templates are the first language feature to require more
15092 intelligence from the environment than one usually finds on a UNIX
15093 system.  Somehow the compiler and linker have to make sure that each
15094 template instance occurs exactly once in the executable if it is needed,
15095 and not at all otherwise.  There are two basic approaches to this
15096 problem, which are referred to as the Borland model and the Cfront model.
15097
15098 @table @asis
15099 @item Borland model
15100 Borland C++ solved the template instantiation problem by adding the code
15101 equivalent of common blocks to their linker; the compiler emits template
15102 instances in each translation unit that uses them, and the linker
15103 collapses them together.  The advantage of this model is that the linker
15104 only has to consider the object files themselves; there is no external
15105 complexity to worry about.  This disadvantage is that compilation time
15106 is increased because the template code is being compiled repeatedly.
15107 Code written for this model tends to include definitions of all
15108 templates in the header file, since they must be seen to be
15109 instantiated.
15110
15111 @item Cfront model
15112 The AT&T C++ translator, Cfront, solved the template instantiation
15113 problem by creating the notion of a template repository, an
15114 automatically maintained place where template instances are stored.  A
15115 more modern version of the repository works as follows: As individual
15116 object files are built, the compiler places any template definitions and
15117 instantiations encountered in the repository.  At link time, the link
15118 wrapper adds in the objects in the repository and compiles any needed
15119 instances that were not previously emitted.  The advantages of this
15120 model are more optimal compilation speed and the ability to use the
15121 system linker; to implement the Borland model a compiler vendor also
15122 needs to replace the linker.  The disadvantages are vastly increased
15123 complexity, and thus potential for error; for some code this can be
15124 just as transparent, but in practice it can been very difficult to build
15125 multiple programs in one directory and one program in multiple
15126 directories.  Code written for this model tends to separate definitions
15127 of non-inline member templates into a separate file, which should be
15128 compiled separately.
15129 @end table
15130
15131 When used with GNU ld version 2.8 or later on an ELF system such as
15132 GNU/Linux or Solaris 2, or on Microsoft Windows, G++ supports the
15133 Borland model.  On other systems, G++ implements neither automatic
15134 model.
15135
15136 A future version of G++ will support a hybrid model whereby the compiler
15137 will emit any instantiations for which the template definition is
15138 included in the compile, and store template definitions and
15139 instantiation context information into the object file for the rest.
15140 The link wrapper will extract that information as necessary and invoke
15141 the compiler to produce the remaining instantiations.  The linker will
15142 then combine duplicate instantiations.
15143
15144 In the mean time, you have the following options for dealing with
15145 template instantiations:
15146
15147 @enumerate
15148 @item
15149 @opindex frepo
15150 Compile your template-using code with @option{-frepo}.  The compiler will
15151 generate files with the extension @samp{.rpo} listing all of the
15152 template instantiations used in the corresponding object files which
15153 could be instantiated there; the link wrapper, @samp{collect2}, will
15154 then update the @samp{.rpo} files to tell the compiler where to place
15155 those instantiations and rebuild any affected object files.  The
15156 link-time overhead is negligible after the first pass, as the compiler
15157 will continue to place the instantiations in the same files.
15158
15159 This is your best option for application code written for the Borland
15160 model, as it will just work.  Code written for the Cfront model will
15161 need to be modified so that the template definitions are available at
15162 one or more points of instantiation; usually this is as simple as adding
15163 @code{#include <tmethods.cc>} to the end of each template header.
15164
15165 For library code, if you want the library to provide all of the template
15166 instantiations it needs, just try to link all of its object files
15167 together; the link will fail, but cause the instantiations to be
15168 generated as a side effect.  Be warned, however, that this may cause
15169 conflicts if multiple libraries try to provide the same instantiations.
15170 For greater control, use explicit instantiation as described in the next
15171 option.
15172
15173 @item
15174 @opindex fno-implicit-templates
15175 Compile your code with @option{-fno-implicit-templates} to disable the
15176 implicit generation of template instances, and explicitly instantiate
15177 all the ones you use.  This approach requires more knowledge of exactly
15178 which instances you need than do the others, but it's less
15179 mysterious and allows greater control.  You can scatter the explicit
15180 instantiations throughout your program, perhaps putting them in the
15181 translation units where the instances are used or the translation units
15182 that define the templates themselves; you can put all of the explicit
15183 instantiations you need into one big file; or you can create small files
15184 like
15185
15186 @smallexample
15187 #include "Foo.h"
15188 #include "Foo.cc"
15189
15190 template class Foo<int>;
15191 template ostream& operator <<
15192                 (ostream&, const Foo<int>&);
15193 @end smallexample
15194
15195 for each of the instances you need, and create a template instantiation
15196 library from those.
15197
15198 If you are using Cfront-model code, you can probably get away with not
15199 using @option{-fno-implicit-templates} when compiling files that don't
15200 @samp{#include} the member template definitions.
15201
15202 If you use one big file to do the instantiations, you may want to
15203 compile it without @option{-fno-implicit-templates} so you get all of the
15204 instances required by your explicit instantiations (but not by any
15205 other files) without having to specify them as well.
15206
15207 G++ has extended the template instantiation syntax given in the ISO
15208 standard to allow forward declaration of explicit instantiations
15209 (with @code{extern}), instantiation of the compiler support data for a
15210 template class (i.e.@: the vtable) without instantiating any of its
15211 members (with @code{inline}), and instantiation of only the static data
15212 members of a template class, without the support data or member
15213 functions (with (@code{static}):
15214
15215 @smallexample
15216 extern template int max (int, int);
15217 inline template class Foo<int>;
15218 static template class Foo<int>;
15219 @end smallexample
15220
15221 @item
15222 Do nothing.  Pretend G++ does implement automatic instantiation
15223 management.  Code written for the Borland model will work fine, but
15224 each translation unit will contain instances of each of the templates it
15225 uses.  In a large program, this can lead to an unacceptable amount of code
15226 duplication.
15227 @end enumerate
15228
15229 @node Bound member functions
15230 @section Extracting the function pointer from a bound pointer to member function
15231 @cindex pmf
15232 @cindex pointer to member function
15233 @cindex bound pointer to member function
15234
15235 In C++, pointer to member functions (PMFs) are implemented using a wide
15236 pointer of sorts to handle all the possible call mechanisms; the PMF
15237 needs to store information about how to adjust the @samp{this} pointer,
15238 and if the function pointed to is virtual, where to find the vtable, and
15239 where in the vtable to look for the member function.  If you are using
15240 PMFs in an inner loop, you should really reconsider that decision.  If
15241 that is not an option, you can extract the pointer to the function that
15242 would be called for a given object/PMF pair and call it directly inside
15243 the inner loop, to save a bit of time.
15244
15245 Note that you will still be paying the penalty for the call through a
15246 function pointer; on most modern architectures, such a call defeats the
15247 branch prediction features of the CPU@.  This is also true of normal
15248 virtual function calls.
15249
15250 The syntax for this extension is
15251
15252 @smallexample
15253 extern A a;
15254 extern int (A::*fp)();
15255 typedef int (*fptr)(A *);
15256
15257 fptr p = (fptr)(a.*fp);
15258 @end smallexample
15259
15260 For PMF constants (i.e.@: expressions of the form @samp{&Klasse::Member}),
15261 no object is needed to obtain the address of the function.  They can be
15262 converted to function pointers directly:
15263
15264 @smallexample
15265 fptr p1 = (fptr)(&A::foo);
15266 @end smallexample
15267
15268 @opindex Wno-pmf-conversions
15269 You must specify @option{-Wno-pmf-conversions} to use this extension.
15270
15271 @node C++ Attributes
15272 @section C++-Specific Variable, Function, and Type Attributes
15273
15274 Some attributes only make sense for C++ programs.
15275
15276 @table @code
15277 @item init_priority (@var{priority})
15278 @cindex @code{init_priority} attribute
15279
15280
15281 In Standard C++, objects defined at namespace scope are guaranteed to be
15282 initialized in an order in strict accordance with that of their definitions
15283 @emph{in a given translation unit}.  No guarantee is made for initializations
15284 across translation units.  However, GNU C++ allows users to control the
15285 order of initialization of objects defined at namespace scope with the
15286 @code{init_priority} attribute by specifying a relative @var{priority},
15287 a constant integral expression currently bounded between 101 and 65535
15288 inclusive.  Lower numbers indicate a higher priority.
15289
15290 In the following example, @code{A} would normally be created before
15291 @code{B}, but the @code{init_priority} attribute has reversed that order:
15292
15293 @smallexample
15294 Some_Class  A  __attribute__ ((init_priority (2000)));
15295 Some_Class  B  __attribute__ ((init_priority (543)));
15296 @end smallexample
15297
15298 @noindent
15299 Note that the particular values of @var{priority} do not matter; only their
15300 relative ordering.
15301
15302 @item java_interface
15303 @cindex @code{java_interface} attribute
15304
15305 This type attribute informs C++ that the class is a Java interface.  It may
15306 only be applied to classes declared within an @code{extern "Java"} block.
15307 Calls to methods declared in this interface will be dispatched using GCJ's
15308 interface table mechanism, instead of regular virtual table dispatch.
15309
15310 @end table
15311
15312 See also @ref{Namespace Association}.
15313
15314 @node Namespace Association
15315 @section Namespace Association
15316
15317 @strong{Caution:} The semantics of this extension are not fully
15318 defined.  Users should refrain from using this extension as its
15319 semantics may change subtly over time.  It is possible that this
15320 extension will be removed in future versions of G++.
15321
15322 A using-directive with @code{__attribute ((strong))} is stronger
15323 than a normal using-directive in two ways:
15324
15325 @itemize @bullet
15326 @item
15327 Templates from the used namespace can be specialized and explicitly
15328 instantiated as though they were members of the using namespace.
15329
15330 @item
15331 The using namespace is considered an associated namespace of all
15332 templates in the used namespace for purposes of argument-dependent
15333 name lookup.
15334 @end itemize
15335
15336 The used namespace must be nested within the using namespace so that
15337 normal unqualified lookup works properly.
15338
15339 This is useful for composing a namespace transparently from
15340 implementation namespaces.  For example:
15341
15342 @smallexample
15343 namespace std @{
15344   namespace debug @{
15345     template <class T> struct A @{ @};
15346   @}
15347   using namespace debug __attribute ((__strong__));
15348   template <> struct A<int> @{ @};   // @r{ok to specialize}
15349
15350   template <class T> void f (A<T>);
15351 @}
15352
15353 int main()
15354 @{
15355   f (std::A<float>());             // @r{lookup finds} std::f
15356   f (std::A<int>());
15357 @}
15358 @end smallexample
15359
15360 @node Type Traits
15361 @section Type Traits
15362
15363 The C++ front-end implements syntactic extensions that allow to
15364 determine at compile time various characteristics of a type (or of a
15365 pair of types).
15366
15367 @table @code
15368 @item __has_nothrow_assign (type)
15369 If @code{type} is const qualified or is a reference type then the trait is
15370 false.  Otherwise if @code{__has_trivial_assign (type)} is true then the trait
15371 is true, else if @code{type} is a cv class or union type with copy assignment
15372 operators that are known not to throw an exception then the trait is true,
15373 else it is false.  Requires: @code{type} shall be a complete type,
15374 (possibly cv-qualified) @code{void}, or an array of unknown bound.
15375
15376 @item __has_nothrow_copy (type)
15377 If @code{__has_trivial_copy (type)} is true then the trait is true, else if
15378 @code{type} is a cv class or union type with copy constructors that
15379 are known not to throw an exception then the trait is true, else it is false.
15380 Requires: @code{type} shall be a complete type, (possibly cv-qualified)
15381 @code{void}, or an array of unknown bound.
15382
15383 @item __has_nothrow_constructor (type)
15384 If @code{__has_trivial_constructor (type)} is true then the trait is
15385 true, else if @code{type} is a cv class or union type (or array
15386 thereof) with a default constructor that is known not to throw an
15387 exception then the trait is true, else it is false.  Requires:
15388 @code{type} shall be a complete type, (possibly cv-qualified)
15389 @code{void}, or an array of unknown bound.
15390
15391 @item __has_trivial_assign (type)
15392 If @code{type} is const qualified or is a reference type then the trait is
15393 false.  Otherwise if @code{__is_pod (type)} is true then the trait is
15394 true, else if @code{type} is a cv class or union type with a trivial
15395 copy assignment ([class.copy]) then the trait is true, else it is
15396 false.  Requires: @code{type} shall be a complete type, (possibly
15397 cv-qualified) @code{void}, or an array of unknown bound.
15398
15399 @item __has_trivial_copy (type)
15400 If @code{__is_pod (type)} is true or @code{type} is a reference type
15401 then the trait is true, else if @code{type} is a cv class or union type
15402 with a trivial copy constructor ([class.copy]) then the trait
15403 is true, else it is false.  Requires: @code{type} shall be a complete
15404 type, (possibly cv-qualified) @code{void}, or an array of unknown bound.
15405
15406 @item __has_trivial_constructor (type)
15407 If @code{__is_pod (type)} is true then the trait is true, else if
15408 @code{type} is a cv class or union type (or array thereof) with a
15409 trivial default constructor ([class.ctor]) then the trait is true,
15410 else it is false.  Requires: @code{type} shall be a complete
15411 type, (possibly cv-qualified) @code{void}, or an array of unknown bound.
15412
15413 @item __has_trivial_destructor (type)
15414 If @code{__is_pod (type)} is true or @code{type} is a reference type then
15415 the trait is true, else if @code{type} is a cv class or union type (or
15416 array thereof) with a trivial destructor ([class.dtor]) then the trait
15417 is true, else it is false.  Requires: @code{type} shall be a complete
15418 type, (possibly cv-qualified) @code{void}, or an array of unknown bound.
15419
15420 @item __has_virtual_destructor (type)
15421 If @code{type} is a class type with a virtual destructor
15422 ([class.dtor]) then the trait is true, else it is false.  Requires:
15423 @code{type} shall be a complete type, (possibly cv-qualified)
15424 @code{void}, or an array of unknown bound.
15425
15426 @item __is_abstract (type)
15427 If @code{type} is an abstract class ([class.abstract]) then the trait
15428 is true, else it is false.  Requires: @code{type} shall be a complete
15429 type, (possibly cv-qualified) @code{void}, or an array of unknown bound.
15430
15431 @item __is_base_of (base_type, derived_type)
15432 If @code{base_type} is a base class of @code{derived_type}
15433 ([class.derived]) then the trait is true, otherwise it is false.
15434 Top-level cv qualifications of @code{base_type} and
15435 @code{derived_type} are ignored.  For the purposes of this trait, a
15436 class type is considered is own base.  Requires: if @code{__is_class
15437 (base_type)} and @code{__is_class (derived_type)} are true and
15438 @code{base_type} and @code{derived_type} are not the same type
15439 (disregarding cv-qualifiers), @code{derived_type} shall be a complete
15440 type.  Diagnostic is produced if this requirement is not met.
15441
15442 @item __is_class (type)
15443 If @code{type} is a cv class type, and not a union type
15444 ([basic.compound]) the trait is true, else it is false.
15445
15446 @item __is_empty (type)
15447 If @code{__is_class (type)} is false then the trait is false.
15448 Otherwise @code{type} is considered empty if and only if: @code{type}
15449 has no non-static data members, or all non-static data members, if
15450 any, are bit-fields of length 0, and @code{type} has no virtual
15451 members, and @code{type} has no virtual base classes, and @code{type}
15452 has no base classes @code{base_type} for which
15453 @code{__is_empty (base_type)} is false.  Requires: @code{type} shall
15454 be a complete type, (possibly cv-qualified) @code{void}, or an array
15455 of unknown bound.
15456
15457 @item __is_enum (type)
15458 If @code{type} is a cv enumeration type ([basic.compound]) the trait is
15459 true, else it is false.
15460
15461 @item __is_literal_type (type)
15462 If @code{type} is a literal type ([basic.types]) the trait is
15463 true, else it is false.  Requires: @code{type} shall be a complete type,
15464 (possibly cv-qualified) @code{void}, or an array of unknown bound.
15465
15466 @item __is_pod (type)
15467 If @code{type} is a cv POD type ([basic.types]) then the trait is true,
15468 else it is false.  Requires: @code{type} shall be a complete type,
15469 (possibly cv-qualified) @code{void}, or an array of unknown bound.
15470
15471 @item __is_polymorphic (type)
15472 If @code{type} is a polymorphic class ([class.virtual]) then the trait
15473 is true, else it is false.  Requires: @code{type} shall be a complete
15474 type, (possibly cv-qualified) @code{void}, or an array of unknown bound.
15475
15476 @item __is_standard_layout (type)
15477 If @code{type} is a standard-layout type ([basic.types]) the trait is
15478 true, else it is false.  Requires: @code{type} shall be a complete
15479 type, (possibly cv-qualified) @code{void}, or an array of unknown bound.
15480
15481 @item __is_trivial (type)
15482 If @code{type} is a trivial type ([basic.types]) the trait is
15483 true, else it is false.  Requires: @code{type} shall be a complete
15484 type, (possibly cv-qualified) @code{void}, or an array of unknown bound.
15485
15486 @item __is_union (type)
15487 If @code{type} is a cv union type ([basic.compound]) the trait is
15488 true, else it is false.
15489
15490 @item __underlying_type (type)
15491 The underlying type of @code{type}.  Requires: @code{type} shall be
15492 an enumeration type ([dcl.enum]).
15493
15494 @end table
15495
15496 @node Java Exceptions
15497 @section Java Exceptions
15498
15499 The Java language uses a slightly different exception handling model
15500 from C++.  Normally, GNU C++ will automatically detect when you are
15501 writing C++ code that uses Java exceptions, and handle them
15502 appropriately.  However, if C++ code only needs to execute destructors
15503 when Java exceptions are thrown through it, GCC will guess incorrectly.
15504 Sample problematic code is:
15505
15506 @smallexample
15507   struct S @{ ~S(); @};
15508   extern void bar();    // @r{is written in Java, and may throw exceptions}
15509   void foo()
15510   @{
15511     S s;
15512     bar();
15513   @}
15514 @end smallexample
15515
15516 @noindent
15517 The usual effect of an incorrect guess is a link failure, complaining of
15518 a missing routine called @samp{__gxx_personality_v0}.
15519
15520 You can inform the compiler that Java exceptions are to be used in a
15521 translation unit, irrespective of what it might think, by writing
15522 @samp{@w{#pragma GCC java_exceptions}} at the head of the file.  This
15523 @samp{#pragma} must appear before any functions that throw or catch
15524 exceptions, or run destructors when exceptions are thrown through them.
15525
15526 You cannot mix Java and C++ exceptions in the same translation unit.  It
15527 is believed to be safe to throw a C++ exception from one file through
15528 another file compiled for the Java exception model, or vice versa, but
15529 there may be bugs in this area.
15530
15531 @node Deprecated Features
15532 @section Deprecated Features
15533
15534 In the past, the GNU C++ compiler was extended to experiment with new
15535 features, at a time when the C++ language was still evolving.  Now that
15536 the C++ standard is complete, some of those features are superseded by
15537 superior alternatives.  Using the old features might cause a warning in
15538 some cases that the feature will be dropped in the future.  In other
15539 cases, the feature might be gone already.
15540
15541 While the list below is not exhaustive, it documents some of the options
15542 that are now deprecated:
15543
15544 @table @code
15545 @item -fexternal-templates
15546 @itemx -falt-external-templates
15547 These are two of the many ways for G++ to implement template
15548 instantiation.  @xref{Template Instantiation}.  The C++ standard clearly
15549 defines how template definitions have to be organized across
15550 implementation units.  G++ has an implicit instantiation mechanism that
15551 should work just fine for standard-conforming code.
15552
15553 @item -fstrict-prototype
15554 @itemx -fno-strict-prototype
15555 Previously it was possible to use an empty prototype parameter list to
15556 indicate an unspecified number of parameters (like C), rather than no
15557 parameters, as C++ demands.  This feature has been removed, except where
15558 it is required for backwards compatibility.   @xref{Backwards Compatibility}.
15559 @end table
15560
15561 G++ allows a virtual function returning @samp{void *} to be overridden
15562 by one returning a different pointer type.  This extension to the
15563 covariant return type rules is now deprecated and will be removed from a
15564 future version.
15565
15566 The G++ minimum and maximum operators (@samp{<?} and @samp{>?}) and
15567 their compound forms (@samp{<?=}) and @samp{>?=}) have been deprecated
15568 and are now removed from G++.  Code using these operators should be
15569 modified to use @code{std::min} and @code{std::max} instead.
15570
15571 The named return value extension has been deprecated, and is now
15572 removed from G++.
15573
15574 The use of initializer lists with new expressions has been deprecated,
15575 and is now removed from G++.
15576
15577 Floating and complex non-type template parameters have been deprecated,
15578 and are now removed from G++.
15579
15580 The implicit typename extension has been deprecated and is now
15581 removed from G++.
15582
15583 The use of default arguments in function pointers, function typedefs
15584 and other places where they are not permitted by the standard is
15585 deprecated and will be removed from a future version of G++.
15586
15587 G++ allows floating-point literals to appear in integral constant expressions,
15588 e.g. @samp{ enum E @{ e = int(2.2 * 3.7) @} }
15589 This extension is deprecated and will be removed from a future version.
15590
15591 G++ allows static data members of const floating-point type to be declared
15592 with an initializer in a class definition. The standard only allows
15593 initializers for static members of const integral types and const
15594 enumeration types so this extension has been deprecated and will be removed
15595 from a future version.
15596
15597 @node Backwards Compatibility
15598 @section Backwards Compatibility
15599 @cindex Backwards Compatibility
15600 @cindex ARM [Annotated C++ Reference Manual]
15601
15602 Now that there is a definitive ISO standard C++, G++ has a specification
15603 to adhere to.  The C++ language evolved over time, and features that
15604 used to be acceptable in previous drafts of the standard, such as the ARM
15605 [Annotated C++ Reference Manual], are no longer accepted.  In order to allow
15606 compilation of C++ written to such drafts, G++ contains some backwards
15607 compatibilities.  @emph{All such backwards compatibility features are
15608 liable to disappear in future versions of G++.} They should be considered
15609 deprecated.   @xref{Deprecated Features}.
15610
15611 @table @code
15612 @item For scope
15613 If a variable is declared at for scope, it used to remain in scope until
15614 the end of the scope which contained the for statement (rather than just
15615 within the for scope).  G++ retains this, but issues a warning, if such a
15616 variable is accessed outside the for scope.
15617
15618 @item Implicit C language
15619 Old C system header files did not contain an @code{extern "C" @{@dots{}@}}
15620 scope to set the language.  On such systems, all header files are
15621 implicitly scoped inside a C language scope.  Also, an empty prototype
15622 @code{()} will be treated as an unspecified number of arguments, rather
15623 than no arguments, as C++ demands.
15624 @end table