]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/extend.texi
md.texi: Use XX-bit instead of XXbit or XX bit where appropriate.
[thirdparty/gcc.git] / gcc / extend.texi
CommitLineData
5c25e11d 1@c Copyright (C) 1988,89,92,93,94,96,98,99,2000,01 Free Software Foundation, Inc.
c1f7febf
RK
2@c This is part of the GCC manual.
3@c For copying conditions, see the file gcc.texi.
4
5@node C Extensions
6@chapter Extensions to the C Language Family
7@cindex extensions, C language
8@cindex C language extensions
9
5490d604 10GNU C provides several language features not found in ISO standard C.
c1f7febf
RK
11(The @samp{-pedantic} option directs GNU CC to print a warning message if
12any of these features is used.) To test for the availability of these
13features in conditional compilation, check for a predefined macro
14@code{__GNUC__}, which is always defined under GNU CC.
15
16These extensions are available in C and Objective C. Most of them are
17also available in C++. @xref{C++ Extensions,,Extensions to the
18C++ Language}, for extensions that apply @emph{only} to C++.
19
5490d604
JM
20@c FIXME: document clearly which features are in ISO C99, but also
21@c accepted as extensions for -std=gnu89 and possibly for C++.
22@c See PR other/930.
23
24@c FIXME: the documentation for preprocessor extensions here is out of
25@c date. See PR other/928.
26
c1f7febf
RK
27@c The only difference between the two versions of this menu is that the
28@c version for clear INTERNALS has an extra node, "Constraints" (which
29@c appears in a separate chapter in the other version of the manual).
30@ifset INTERNALS
31@menu
32* Statement Exprs:: Putting statements and declarations inside expressions.
33* Local Labels:: Labels local to a statement-expression.
34* Labels as Values:: Getting pointers to labels, and computed gotos.
35* Nested Functions:: As in Algol and Pascal, lexical scoping of functions.
36* Constructing Calls:: Dispatching a call to another function.
37* Naming Types:: Giving a name to the type of some expression.
38* Typeof:: @code{typeof}: referring to the type of an expression.
39* Lvalues:: Using @samp{?:}, @samp{,} and casts in lvalues.
40* Conditionals:: Omitting the middle operand of a @samp{?:} expression.
41* Long Long:: Double-word integers---@code{long long int}.
42* Complex:: Data types for complex numbers.
6f4d7222 43* Hex Floats:: Hexadecimal floating-point constants.
c1f7febf
RK
44* Zero Length:: Zero-length arrays.
45* Variable Length:: Arrays whose length is computed at run time.
ccd96f0a
NB
46* Variadic Macros:: Macros with a variable number of arguments.
47* Escaped Newlines:: Slightly looser rules for escaped newlines.
48* Multi-line Strings:: String literals with embedded newlines.
c1f7febf
RK
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* Constructors:: Constructor expressions give structures, unions
53 or arrays as values.
54* Labeled Elements:: 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* Function Attributes:: Declaring that functions have no side effects,
58 or that they can never return.
2c5e91d2 59* Attribute Syntax:: Formal syntax for attributes.
c1f7febf
RK
60* Function Prototypes:: Prototype declarations and old-style definitions.
61* C++ Comments:: C++ comments are recognized.
62* Dollar Signs:: Dollar sign is allowed in identifiers.
63* Character Escapes:: @samp{\e} stands for the character @key{ESC}.
64* Variable Attributes:: Specifying attributes of variables.
65* Type Attributes:: Specifying attributes of types.
66* Alignment:: Inquiring about the alignment of a type or variable.
67* Inline:: Defining inline functions (as fast as macros).
68* Extended Asm:: Assembler instructions with C expressions as operands.
69 (With them you can define ``built-in'' functions.)
70* Asm Labels:: Specifying the assembler name to use for a C symbol.
71* Explicit Reg Vars:: Defining variables residing in specified registers.
72* Alternate Keywords:: @code{__const__}, @code{__asm__}, etc., for header files.
73* Incomplete Enums:: @code{enum foo;}, with details to follow.
74* Function Names:: Printable strings which are the name of the current
75 function.
76* Return Address:: Getting the return or frame address of a function.
185ebd6c 77* Other Builtins:: Other built-in functions.
c1f7febf
RK
78@end menu
79@end ifset
80@ifclear INTERNALS
81@menu
82* Statement Exprs:: Putting statements and declarations inside expressions.
83* Local Labels:: Labels local to a statement-expression.
84* Labels as Values:: Getting pointers to labels, and computed gotos.
85* Nested Functions:: As in Algol and Pascal, lexical scoping of functions.
86* Constructing Calls:: Dispatching a call to another function.
87* Naming Types:: Giving a name to the type of some expression.
88* Typeof:: @code{typeof}: referring to the type of an expression.
89* Lvalues:: Using @samp{?:}, @samp{,} and casts in lvalues.
90* Conditionals:: Omitting the middle operand of a @samp{?:} expression.
91* Long Long:: Double-word integers---@code{long long int}.
92* Complex:: Data types for complex numbers.
6f4d7222 93* Hex Floats:: Hexadecimal floating-point constants.
c1f7febf
RK
94* Zero Length:: Zero-length arrays.
95* Variable Length:: Arrays whose length is computed at run time.
ccd96f0a
NB
96* Variadic Macros:: Macros with a variable number of arguments.
97* Escaped Newlines:: Slightly looser rules for escaped newlines.
98* Multi-line Strings:: String literals with embedded newlines.
c1f7febf
RK
99* Subscripting:: Any array can be subscripted, even if not an lvalue.
100* Pointer Arith:: Arithmetic on @code{void}-pointers and function pointers.
101* Initializers:: Non-constant initializers.
102* Constructors:: Constructor expressions give structures, unions
103 or arrays as values.
104* Labeled Elements:: Labeling elements of initializers.
105* Cast to Union:: Casting to union type from any member of the union.
106* Case Ranges:: `case 1 ... 9' and such.
107* Function Attributes:: Declaring that functions have no side effects,
108 or that they can never return.
2c5e91d2 109* Attribute Syntax:: Formal syntax for attributes.
c1f7febf
RK
110* Function Prototypes:: Prototype declarations and old-style definitions.
111* C++ Comments:: C++ comments are recognized.
112* Dollar Signs:: Dollar sign is allowed in identifiers.
113* Character Escapes:: @samp{\e} stands for the character @key{ESC}.
114* Variable Attributes:: Specifying attributes of variables.
115* Type Attributes:: Specifying attributes of types.
116* Alignment:: Inquiring about the alignment of a type or variable.
117* Inline:: Defining inline functions (as fast as macros).
118* Extended Asm:: Assembler instructions with C expressions as operands.
119 (With them you can define ``built-in'' functions.)
120* Constraints:: Constraints for asm operands
121* Asm Labels:: Specifying the assembler name to use for a C symbol.
122* Explicit Reg Vars:: Defining variables residing in specified registers.
123* Alternate Keywords:: @code{__const__}, @code{__asm__}, etc., for header files.
124* Incomplete Enums:: @code{enum foo;}, with details to follow.
125* Function Names:: Printable strings which are the name of the current
126 function.
127* Return Address:: Getting the return or frame address of a function.
c5c76735 128* Other Builtins:: Other built-in functions.
c1f7febf
RK
129@end menu
130@end ifclear
131
132@node Statement Exprs
133@section Statements and Declarations in Expressions
134@cindex statements inside expressions
135@cindex declarations inside expressions
136@cindex expressions containing statements
137@cindex macros, statements in expressions
138
139@c the above section title wrapped and causes an underfull hbox.. i
140@c changed it from "within" to "in". --mew 4feb93
141
142A compound statement enclosed in parentheses may appear as an expression
143in GNU C. This allows you to use loops, switches, and local variables
144within an expression.
145
146Recall that a compound statement is a sequence of statements surrounded
147by braces; in this construct, parentheses go around the braces. For
148example:
149
150@example
151(@{ int y = foo (); int z;
152 if (y > 0) z = y;
153 else z = - y;
154 z; @})
155@end example
156
157@noindent
158is a valid (though slightly more complex than necessary) expression
159for the absolute value of @code{foo ()}.
160
161The last thing in the compound statement should be an expression
162followed by a semicolon; the value of this subexpression serves as the
163value of the entire construct. (If you use some other kind of statement
164last within the braces, the construct has type @code{void}, and thus
165effectively no value.)
166
167This feature is especially useful in making macro definitions ``safe'' (so
168that they evaluate each operand exactly once). For example, the
169``maximum'' function is commonly defined as a macro in standard C as
170follows:
171
172@example
173#define max(a,b) ((a) > (b) ? (a) : (b))
174@end example
175
176@noindent
177@cindex side effects, macro argument
178But this definition computes either @var{a} or @var{b} twice, with bad
179results if the operand has side effects. In GNU C, if you know the
180type of the operands (here let's assume @code{int}), you can define
181the macro safely as follows:
182
183@example
184#define maxint(a,b) \
185 (@{int _a = (a), _b = (b); _a > _b ? _a : _b; @})
186@end example
187
188Embedded statements are not allowed in constant expressions, such as
189the value of an enumeration constant, the width of a bit field, or
190the initial value of a static variable.
191
192If you don't know the type of the operand, you can still do this, but you
193must use @code{typeof} (@pxref{Typeof}) or type naming (@pxref{Naming
194Types}).
195
b98e139b
MM
196Statement expressions are not supported fully in G++, and their fate
197there is unclear. (It is possible that they will become fully supported
198at some point, or that they will be deprecated, or that the bugs that
199are present will continue to exist indefinitely.) Presently, statement
200expressions do not work well as default arguments.
201
202In addition, there are semantic issues with statement-expressions in
203C++. If you try to use statement-expressions instead of inline
204functions in C++, you may be surprised at the way object destruction is
205handled. For example:
206
207@example
208#define foo(a) (@{int b = (a); b + 3; @})
209@end example
210
211@noindent
212does not work the same way as:
213
214@example
54e1d3a6 215inline int foo(int a) @{ int b = a; return b + 3; @}
b98e139b
MM
216@end example
217
218@noindent
219In particular, if the expression passed into @code{foo} involves the
220creation of temporaries, the destructors for those temporaries will be
221run earlier in the case of the macro than in the case of the function.
222
223These considerations mean that it is probably a bad idea to use
224statement-expressions of this form in header files that are designed to
54e1d3a6
MM
225work with C++. (Note that some versions of the GNU C Library contained
226header files using statement-expression that lead to precisely this
227bug.)
b98e139b 228
c1f7febf
RK
229@node Local Labels
230@section Locally Declared Labels
231@cindex local labels
232@cindex macros, local labels
233
234Each statement expression is a scope in which @dfn{local labels} can be
235declared. A local label is simply an identifier; you can jump to it
236with an ordinary @code{goto} statement, but only from within the
237statement expression it belongs to.
238
239A local label declaration looks like this:
240
241@example
242__label__ @var{label};
243@end example
244
245@noindent
246or
247
248@example
249__label__ @var{label1}, @var{label2}, @dots{};
250@end example
251
252Local label declarations must come at the beginning of the statement
253expression, right after the @samp{(@{}, before any ordinary
254declarations.
255
256The label declaration defines the label @emph{name}, but does not define
257the label itself. You must do this in the usual way, with
258@code{@var{label}:}, within the statements of the statement expression.
259
260The local label feature is useful because statement expressions are
261often used in macros. If the macro contains nested loops, a @code{goto}
262can be useful for breaking out of them. However, an ordinary label
263whose scope is the whole function cannot be used: if the macro can be
264expanded several times in one function, the label will be multiply
265defined in that function. A local label avoids this problem. For
266example:
267
268@example
269#define SEARCH(array, target) \
270(@{ \
271 __label__ found; \
272 typeof (target) _SEARCH_target = (target); \
273 typeof (*(array)) *_SEARCH_array = (array); \
274 int i, j; \
275 int value; \
276 for (i = 0; i < max; i++) \
277 for (j = 0; j < max; j++) \
278 if (_SEARCH_array[i][j] == _SEARCH_target) \
279 @{ value = i; goto found; @} \
280 value = -1; \
281 found: \
282 value; \
283@})
284@end example
285
286@node Labels as Values
287@section Labels as Values
288@cindex labels as values
289@cindex computed gotos
290@cindex goto with computed label
291@cindex address of a label
292
293You can get the address of a label defined in the current function
294(or a containing function) with the unary operator @samp{&&}. The
295value has type @code{void *}. This value is a constant and can be used
296wherever a constant of that type is valid. For example:
297
298@example
299void *ptr;
300@dots{}
301ptr = &&foo;
302@end example
303
304To use these values, you need to be able to jump to one. This is done
305with the computed goto statement@footnote{The analogous feature in
306Fortran is called an assigned goto, but that name seems inappropriate in
307C, where one can do more than simply store label addresses in label
308variables.}, @code{goto *@var{exp};}. For example,
309
310@example
311goto *ptr;
312@end example
313
314@noindent
315Any expression of type @code{void *} is allowed.
316
317One way of using these constants is in initializing a static array that
318will serve as a jump table:
319
320@example
321static void *array[] = @{ &&foo, &&bar, &&hack @};
322@end example
323
324Then you can select a label with indexing, like this:
325
326@example
327goto *array[i];
328@end example
329
330@noindent
331Note that this does not check whether the subscript is in bounds---array
332indexing in C never does that.
333
334Such an array of label values serves a purpose much like that of the
335@code{switch} statement. The @code{switch} statement is cleaner, so
336use that rather than an array unless the problem does not fit a
337@code{switch} statement very well.
338
339Another use of label values is in an interpreter for threaded code.
340The labels within the interpreter function can be stored in the
341threaded code for super-fast dispatching.
342
47620e09
RH
343You may not use this mechanism to jump to code in a different function.
344If you do that, totally unpredictable things will happen. The best way to
c1f7febf
RK
345avoid this is to store the label address only in automatic variables and
346never pass it as an argument.
347
47620e09
RH
348An alternate way to write the above example is
349
350@example
351static const int array[] = @{ &&foo - &&foo, &&bar - &&foo, &&hack - &&foo @};
352goto *(&&foo + array[i]);
353@end example
354
355@noindent
356This is more friendly to code living in shared libraries, as it reduces
357the number of dynamic relocations that are needed, and by consequence,
358allows the data to be read-only.
359
c1f7febf
RK
360@node Nested Functions
361@section Nested Functions
362@cindex nested functions
363@cindex downward funargs
364@cindex thunks
365
366A @dfn{nested function} is a function defined inside another function.
367(Nested functions are not supported for GNU C++.) The nested function's
368name is local to the block where it is defined. For example, here we
369define a nested function named @code{square}, and call it twice:
370
371@example
372@group
373foo (double a, double b)
374@{
375 double square (double z) @{ return z * z; @}
376
377 return square (a) + square (b);
378@}
379@end group
380@end example
381
382The nested function can access all the variables of the containing
383function that are visible at the point of its definition. This is
384called @dfn{lexical scoping}. For example, here we show a nested
385function which uses an inherited variable named @code{offset}:
386
387@example
388bar (int *array, int offset, int size)
389@{
390 int access (int *array, int index)
391 @{ return array[index + offset]; @}
392 int i;
393 @dots{}
394 for (i = 0; i < size; i++)
395 @dots{} access (array, i) @dots{}
396@}
397@end example
398
399Nested function definitions are permitted within functions in the places
400where variable definitions are allowed; that is, in any block, before
401the first statement in the block.
402
403It is possible to call the nested function from outside the scope of its
404name by storing its address or passing the address to another function:
405
406@example
407hack (int *array, int size)
408@{
409 void store (int index, int value)
410 @{ array[index] = value; @}
411
412 intermediate (store, size);
413@}
414@end example
415
416Here, the function @code{intermediate} receives the address of
417@code{store} as an argument. If @code{intermediate} calls @code{store},
418the arguments given to @code{store} are used to store into @code{array}.
419But this technique works only so long as the containing function
420(@code{hack}, in this example) does not exit.
421
422If you try to call the nested function through its address after the
423containing function has exited, all hell will break loose. If you try
424to call it after a containing scope level has exited, and if it refers
425to some of the variables that are no longer in scope, you may be lucky,
426but it's not wise to take the risk. If, however, the nested function
427does not refer to anything that has gone out of scope, you should be
428safe.
429
430GNU CC implements taking the address of a nested function using a
674032e2 431technique called @dfn{trampolines}. A paper describing them is
9734e80c 432available as @uref{http://people.debian.org/~karlheg/Usenix88-lexic.pdf}.
c1f7febf
RK
433
434A nested function can jump to a label inherited from a containing
435function, provided the label was explicitly declared in the containing
436function (@pxref{Local Labels}). Such a jump returns instantly to the
437containing function, exiting the nested function which did the
438@code{goto} and any intermediate functions as well. Here is an example:
439
440@example
441@group
442bar (int *array, int offset, int size)
443@{
444 __label__ failure;
445 int access (int *array, int index)
446 @{
447 if (index > size)
448 goto failure;
449 return array[index + offset];
450 @}
451 int i;
452 @dots{}
453 for (i = 0; i < size; i++)
454 @dots{} access (array, i) @dots{}
455 @dots{}
456 return 0;
457
458 /* @r{Control comes here from @code{access}
459 if it detects an error.} */
460 failure:
461 return -1;
462@}
463@end group
464@end example
465
466A nested function always has internal linkage. Declaring one with
467@code{extern} is erroneous. If you need to declare the nested function
468before its definition, use @code{auto} (which is otherwise meaningless
469for function declarations).
470
471@example
472bar (int *array, int offset, int size)
473@{
474 __label__ failure;
475 auto int access (int *, int);
476 @dots{}
477 int access (int *array, int index)
478 @{
479 if (index > size)
480 goto failure;
481 return array[index + offset];
482 @}
483 @dots{}
484@}
485@end example
486
487@node Constructing Calls
488@section Constructing Function Calls
489@cindex constructing calls
490@cindex forwarding calls
491
492Using the built-in functions described below, you can record
493the arguments a function received, and call another function
494with the same arguments, without knowing the number or types
495of the arguments.
496
497You can also record the return value of that function call,
498and later return that value, without knowing what data type
499the function tried to return (as long as your caller expects
500that data type).
501
502@table @code
503@findex __builtin_apply_args
504@item __builtin_apply_args ()
505This built-in function returns a pointer of type @code{void *} to data
506describing how to perform a call with the same arguments as were passed
507to the current function.
508
509The function saves the arg pointer register, structure value address,
510and all registers that might be used to pass arguments to a function
511into a block of memory allocated on the stack. Then it returns the
512address of that block.
513
514@findex __builtin_apply
515@item __builtin_apply (@var{function}, @var{arguments}, @var{size})
516This built-in function invokes @var{function} (type @code{void (*)()})
517with a copy of the parameters described by @var{arguments} (type
518@code{void *}) and @var{size} (type @code{int}).
519
520The value of @var{arguments} should be the value returned by
521@code{__builtin_apply_args}. The argument @var{size} specifies the size
522of the stack argument data, in bytes.
523
524This function returns a pointer of type @code{void *} to data describing
525how to return whatever value was returned by @var{function}. The data
526is saved in a block of memory allocated on the stack.
527
528It is not always simple to compute the proper value for @var{size}. The
529value is used by @code{__builtin_apply} to compute the amount of data
530that should be pushed on the stack and copied from the incoming argument
531area.
532
533@findex __builtin_return
534@item __builtin_return (@var{result})
535This built-in function returns the value described by @var{result} from
536the containing function. You should specify, for @var{result}, a value
537returned by @code{__builtin_apply}.
538@end table
539
540@node Naming Types
541@section Naming an Expression's Type
542@cindex naming types
543
544You can give a name to the type of an expression using a @code{typedef}
545declaration with an initializer. Here is how to define @var{name} as a
546type name for the type of @var{exp}:
547
548@example
549typedef @var{name} = @var{exp};
550@end example
551
552This is useful in conjunction with the statements-within-expressions
553feature. Here is how the two together can be used to define a safe
554``maximum'' macro that operates on any arithmetic type:
555
556@example
557#define max(a,b) \
558 (@{typedef _ta = (a), _tb = (b); \
559 _ta _a = (a); _tb _b = (b); \
560 _a > _b ? _a : _b; @})
561@end example
562
563@cindex underscores in variables in macros
564@cindex @samp{_} in variables in macros
565@cindex local variables in macros
566@cindex variables, local, in macros
567@cindex macros, local variables in
568
569The reason for using names that start with underscores for the local
570variables is to avoid conflicts with variable names that occur within the
571expressions that are substituted for @code{a} and @code{b}. Eventually we
572hope to design a new form of declaration syntax that allows you to declare
573variables whose scopes start only after their initializers; this will be a
574more reliable way to prevent such conflicts.
575
576@node Typeof
577@section Referring to a Type with @code{typeof}
578@findex typeof
579@findex sizeof
580@cindex macros, types of arguments
581
582Another way to refer to the type of an expression is with @code{typeof}.
583The syntax of using of this keyword looks like @code{sizeof}, but the
584construct acts semantically like a type name defined with @code{typedef}.
585
586There are two ways of writing the argument to @code{typeof}: with an
587expression or with a type. Here is an example with an expression:
588
589@example
590typeof (x[0](1))
591@end example
592
593@noindent
89aed483
JM
594This assumes that @code{x} is an array of pointers to functions;
595the type described is that of the values of the functions.
c1f7febf
RK
596
597Here is an example with a typename as the argument:
598
599@example
600typeof (int *)
601@end example
602
603@noindent
604Here the type described is that of pointers to @code{int}.
605
5490d604 606If you are writing a header file that must work when included in ISO C
c1f7febf
RK
607programs, write @code{__typeof__} instead of @code{typeof}.
608@xref{Alternate Keywords}.
609
610A @code{typeof}-construct can be used anywhere a typedef name could be
611used. For example, you can use it in a declaration, in a cast, or inside
612of @code{sizeof} or @code{typeof}.
613
614@itemize @bullet
615@item
616This declares @code{y} with the type of what @code{x} points to.
617
618@example
619typeof (*x) y;
620@end example
621
622@item
623This declares @code{y} as an array of such values.
624
625@example
626typeof (*x) y[4];
627@end example
628
629@item
630This declares @code{y} as an array of pointers to characters:
631
632@example
633typeof (typeof (char *)[4]) y;
634@end example
635
636@noindent
637It is equivalent to the following traditional C declaration:
638
639@example
640char *y[4];
641@end example
642
643To see the meaning of the declaration using @code{typeof}, and why it
644might be a useful way to write, let's rewrite it with these macros:
645
646@example
647#define pointer(T) typeof(T *)
648#define array(T, N) typeof(T [N])
649@end example
650
651@noindent
652Now the declaration can be rewritten this way:
653
654@example
655array (pointer (char), 4) y;
656@end example
657
658@noindent
659Thus, @code{array (pointer (char), 4)} is the type of arrays of 4
660pointers to @code{char}.
661@end itemize
662
663@node Lvalues
664@section Generalized Lvalues
665@cindex compound expressions as lvalues
666@cindex expressions, compound, as lvalues
667@cindex conditional expressions as lvalues
668@cindex expressions, conditional, as lvalues
669@cindex casts as lvalues
670@cindex generalized lvalues
671@cindex lvalues, generalized
672@cindex extensions, @code{?:}
673@cindex @code{?:} extensions
674Compound expressions, conditional expressions and casts are allowed as
675lvalues provided their operands are lvalues. This means that you can take
676their addresses or store values into them.
677
678Standard C++ allows compound expressions and conditional expressions as
679lvalues, and permits casts to reference type, so use of this extension
680is deprecated for C++ code.
681
682For example, a compound expression can be assigned, provided the last
683expression in the sequence is an lvalue. These two expressions are
684equivalent:
685
686@example
687(a, b) += 5
688a, (b += 5)
689@end example
690
691Similarly, the address of the compound expression can be taken. These two
692expressions are equivalent:
693
694@example
695&(a, b)
696a, &b
697@end example
698
699A conditional expression is a valid lvalue if its type is not void and the
700true and false branches are both valid lvalues. For example, these two
701expressions are equivalent:
702
703@example
704(a ? b : c) = 5
705(a ? b = 5 : (c = 5))
706@end example
707
708A cast is a valid lvalue if its operand is an lvalue. A simple
709assignment whose left-hand side is a cast works by converting the
710right-hand side first to the specified type, then to the type of the
711inner left-hand side expression. After this is stored, the value is
712converted back to the specified type to become the value of the
713assignment. Thus, if @code{a} has type @code{char *}, the following two
714expressions are equivalent:
715
716@example
717(int)a = 5
718(int)(a = (char *)(int)5)
719@end example
720
721An assignment-with-arithmetic operation such as @samp{+=} applied to a cast
722performs the arithmetic using the type resulting from the cast, and then
723continues as in the previous case. Therefore, these two expressions are
724equivalent:
725
726@example
727(int)a += 5
728(int)(a = (char *)(int) ((int)a + 5))
729@end example
730
731You cannot take the address of an lvalue cast, because the use of its
732address would not work out coherently. Suppose that @code{&(int)f} were
733permitted, where @code{f} has type @code{float}. Then the following
734statement would try to store an integer bit-pattern where a floating
735point number belongs:
736
737@example
738*&(int)f = 1;
739@end example
740
741This is quite different from what @code{(int)f = 1} would do---that
742would convert 1 to floating point and store it. Rather than cause this
743inconsistency, we think it is better to prohibit use of @samp{&} on a cast.
744
745If you really do want an @code{int *} pointer with the address of
746@code{f}, you can simply write @code{(int *)&f}.
747
748@node Conditionals
749@section Conditionals with Omitted Operands
750@cindex conditional expressions, extensions
751@cindex omitted middle-operands
752@cindex middle-operands, omitted
753@cindex extensions, @code{?:}
754@cindex @code{?:} extensions
755
756The middle operand in a conditional expression may be omitted. Then
757if the first operand is nonzero, its value is the value of the conditional
758expression.
759
760Therefore, the expression
761
762@example
763x ? : y
764@end example
765
766@noindent
767has the value of @code{x} if that is nonzero; otherwise, the value of
768@code{y}.
769
770This example is perfectly equivalent to
771
772@example
773x ? x : y
774@end example
775
776@cindex side effect in ?:
777@cindex ?: side effect
778@noindent
779In this simple case, the ability to omit the middle operand is not
780especially useful. When it becomes useful is when the first operand does,
781or may (if it is a macro argument), contain a side effect. Then repeating
782the operand in the middle would perform the side effect twice. Omitting
783the middle operand uses the value already computed without the undesirable
784effects of recomputing it.
785
786@node Long Long
787@section Double-Word Integers
788@cindex @code{long long} data types
789@cindex double-word arithmetic
790@cindex multiprecision arithmetic
791
792GNU C supports data types for integers that are twice as long as
793@code{int}. Simply write @code{long long int} for a signed integer, or
794@code{unsigned long long int} for an unsigned integer. To make an
795integer constant of type @code{long long int}, add the suffix @code{LL}
796to the integer. To make an integer constant of type @code{unsigned long
797long int}, add the suffix @code{ULL} to the integer.
798
799You can use these types in arithmetic like any other integer types.
800Addition, subtraction, and bitwise boolean operations on these types
801are open-coded on all types of machines. Multiplication is open-coded
802if the machine supports fullword-to-doubleword a widening multiply
803instruction. Division and shifts are open-coded only on machines that
804provide special support. The operations that are not open-coded use
805special library routines that come with GNU CC.
806
807There may be pitfalls when you use @code{long long} types for function
808arguments, unless you declare function prototypes. If a function
809expects type @code{int} for its argument, and you pass a value of type
810@code{long long int}, confusion will result because the caller and the
811subroutine will disagree about the number of bytes for the argument.
812Likewise, if the function expects @code{long long int} and you pass
813@code{int}. The best way to avoid such problems is to use prototypes.
814
815@node Complex
816@section Complex Numbers
817@cindex complex numbers
818
819GNU C supports complex data types. You can declare both complex integer
820types and complex floating types, using the keyword @code{__complex__}.
821
822For example, @samp{__complex__ double x;} declares @code{x} as a
823variable whose real part and imaginary part are both of type
824@code{double}. @samp{__complex__ short int y;} declares @code{y} to
825have real and imaginary parts of type @code{short int}; this is not
826likely to be useful, but it shows that the set of complex types is
827complete.
828
829To write a constant with a complex data type, use the suffix @samp{i} or
830@samp{j} (either one; they are equivalent). For example, @code{2.5fi}
831has type @code{__complex__ float} and @code{3i} has type
832@code{__complex__ int}. Such a constant always has a pure imaginary
833value, but you can form any complex value you like by adding one to a
834real constant.
835
836To extract the real part of a complex-valued expression @var{exp}, write
837@code{__real__ @var{exp}}. Likewise, use @code{__imag__} to
838extract the imaginary part.
839
840The operator @samp{~} performs complex conjugation when used on a value
841with a complex type.
842
843GNU CC can allocate complex automatic variables in a noncontiguous
844fashion; it's even possible for the real part to be in a register while
845the imaginary part is on the stack (or vice-versa). None of the
846supported debugging info formats has a way to represent noncontiguous
847allocation like this, so GNU CC describes a noncontiguous complex
848variable as if it were two separate variables of noncomplex type.
849If the variable's actual name is @code{foo}, the two fictitious
850variables are named @code{foo$real} and @code{foo$imag}. You can
851examine and set these two fictitious variables with your debugger.
852
853A future version of GDB will know how to recognize such pairs and treat
854them as a single variable with a complex type.
855
6f4d7222 856@node Hex Floats
6b42b9ea
UD
857@section Hex Floats
858@cindex hex floats
c5c76735 859
2a59078d 860GNU CC recognizes floating-point numbers written not only in the usual
6f4d7222
UD
861decimal notation, such as @code{1.55e1}, but also numbers such as
862@code{0x1.fp3} written in hexadecimal format. In that format the
863@code{0x} hex introducer and the @code{p} or @code{P} exponent field are
864mandatory. The exponent is a decimal number that indicates the power of
3b7a2e58 8652 by which the significant part will be multiplied. Thus @code{0x1.f} is
6f4d7222
UD
8661 15/16, @code{p3} multiplies it by 8, and the value of @code{0x1.fp3}
867is the same as @code{1.55e1}.
868
869Unlike for floating-point numbers in the decimal notation the exponent
870is always required in the hexadecimal notation. Otherwise the compiler
871would not be able to resolve the ambiguity of, e.g., @code{0x1.f}. This
872could mean @code{1.0f} or @code{1.9375} since @code{f} is also the
873extension for floating-point constants of type @code{float}.
874
c1f7febf
RK
875@node Zero Length
876@section Arrays of Length Zero
877@cindex arrays of length zero
878@cindex zero-length arrays
879@cindex length-zero arrays
ffc5c6a9 880@cindex flexible array members
c1f7febf 881
584ef5fe
RH
882Zero-length arrays are allowed in GNU C. They are very useful as the
883last element of a structure which is really a header for a variable-length
c1f7febf
RK
884object:
885
886@example
887struct line @{
888 int length;
889 char contents[0];
890@};
891
584ef5fe
RH
892struct line *thisline = (struct line *)
893 malloc (sizeof (struct line) + this_length);
894thisline->length = this_length;
c1f7febf
RK
895@end example
896
a25f1211 897In ISO C89, you would have to give @code{contents} a length of 1, which
c1f7febf
RK
898means either you waste space or complicate the argument to @code{malloc}.
899
584ef5fe
RH
900In ISO C99, you would use a @dfn{flexible array member}, which is
901slightly different in syntax and semantics:
902
903@itemize @bullet
904@item
905Flexible array members are written as @code{contents[]} without
906the @code{0}.
907
908@item
909Flexible array members have incomplete type, and so the @code{sizeof}
910operator may not be applied. As a quirk of the original implementation
911of zero-length arrays, @code{sizeof} evaluates to zero.
912
913@item
914Flexible array members may only appear as the last member of a
915@code{struct} that is otherwise non-empty. GCC currently allows
916zero-length arrays anywhere. You may encounter problems, however,
917defining structures containing only a zero-length array. Such usage
918is deprecated, and we recommend using zero-length arrays only in
919places in which flexible array members would be allowed.
ffc5c6a9 920@end itemize
a25f1211 921
ffc5c6a9
RH
922GCC versions before 3.0 allowed zero-length arrays to be statically
923initialized. In addition to those cases that were useful, it also
924allowed initializations in situations that would corrupt later data.
925Non-empty initialization of zero-length arrays is now deprecated.
926
927Instead GCC allows static initialization of flexible array members.
928This is equivalent to defining a new structure containing the original
929structure followed by an array of sufficient size to contain the data.
930I.e. in the following, @code{f1} is constructed as if it were declared
931like @code{f2}.
a25f1211
RH
932
933@example
ffc5c6a9
RH
934struct f1 @{
935 int x; int y[];
936@} f1 = @{ 1, @{ 2, 3, 4 @} @};
937
938struct f2 @{
939 struct f1 f1; int data[3];
940@} f2 = @{ @{ 1 @}, @{ 2, 3, 4 @} @};
941@end example
584ef5fe 942
ffc5c6a9
RH
943@noindent
944The convenience of this extension is that @code{f1} has the desired
945type, eliminating the need to consistently refer to @code{f2.f1}.
946
947This has symmetry with normal static arrays, in that an array of
948unknown size is also written with @code{[]}.
a25f1211 949
ffc5c6a9
RH
950Of course, this extension only makes sense if the extra data comes at
951the end of a top-level object, as otherwise we would be overwriting
952data at subsequent offsets. To avoid undue complication and confusion
953with initialization of deeply nested arrays, we simply disallow any
954non-empty initialization except when the structure is the top-level
955object. For example:
584ef5fe 956
ffc5c6a9
RH
957@example
958struct foo @{ int x; int y[]; @};
959struct bar @{ struct foo z; @};
960
961struct foo a = @{ 1, @{ 2, 3, 4 @} @}; // Legal.
962struct bar b = @{ @{ 1, @{ 2, 3, 4 @} @} @}; // Illegal.
963struct bar c = @{ @{ 1, @{ @} @} @}; // Legal.
964struct foo d[1] = @{ @{ 1 @{ 2, 3, 4 @} @} @}; // Illegal.
a25f1211 965@end example
4b606faf 966
c1f7febf
RK
967@node Variable Length
968@section Arrays of Variable Length
969@cindex variable-length arrays
970@cindex arrays of variable length
971
972Variable-length automatic arrays are allowed in GNU C. These arrays are
973declared like any other automatic arrays, but with a length that is not
974a constant expression. The storage is allocated at the point of
975declaration and deallocated when the brace-level is exited. For
976example:
977
978@example
979FILE *
980concat_fopen (char *s1, char *s2, char *mode)
981@{
982 char str[strlen (s1) + strlen (s2) + 1];
983 strcpy (str, s1);
984 strcat (str, s2);
985 return fopen (str, mode);
986@}
987@end example
988
989@cindex scope of a variable length array
990@cindex variable-length array scope
991@cindex deallocating variable length arrays
992Jumping or breaking out of the scope of the array name deallocates the
993storage. Jumping into the scope is not allowed; you get an error
994message for it.
995
996@cindex @code{alloca} vs variable-length arrays
997You can use the function @code{alloca} to get an effect much like
998variable-length arrays. The function @code{alloca} is available in
999many other C implementations (but not in all). On the other hand,
1000variable-length arrays are more elegant.
1001
1002There are other differences between these two methods. Space allocated
1003with @code{alloca} exists until the containing @emph{function} returns.
1004The space for a variable-length array is deallocated as soon as the array
1005name's scope ends. (If you use both variable-length arrays and
1006@code{alloca} in the same function, deallocation of a variable-length array
1007will also deallocate anything more recently allocated with @code{alloca}.)
1008
1009You can also use variable-length arrays as arguments to functions:
1010
1011@example
1012struct entry
1013tester (int len, char data[len][len])
1014@{
1015 @dots{}
1016@}
1017@end example
1018
1019The length of an array is computed once when the storage is allocated
1020and is remembered for the scope of the array in case you access it with
1021@code{sizeof}.
1022
1023If you want to pass the array first and the length afterward, you can
1024use a forward declaration in the parameter list---another GNU extension.
1025
1026@example
1027struct entry
1028tester (int len; char data[len][len], int len)
1029@{
1030 @dots{}
1031@}
1032@end example
1033
1034@cindex parameter forward declaration
1035The @samp{int len} before the semicolon is a @dfn{parameter forward
1036declaration}, and it serves the purpose of making the name @code{len}
1037known when the declaration of @code{data} is parsed.
1038
1039You can write any number of such parameter forward declarations in the
1040parameter list. They can be separated by commas or semicolons, but the
1041last one must end with a semicolon, which is followed by the ``real''
1042parameter declarations. Each forward declaration must match a ``real''
1043declaration in parameter name and data type.
1044
ccd96f0a
NB
1045@node Variadic Macros
1046@section Macros with a Variable Number of Arguments.
c1f7febf
RK
1047@cindex variable number of arguments
1048@cindex macro with variable arguments
1049@cindex rest argument (in macro)
ccd96f0a 1050@cindex variadic macros
c1f7febf 1051
ccd96f0a
NB
1052In the ISO C standard of 1999, a macro can be declared to accept a
1053variable number of arguments much as a function can. The syntax for
1054defining the macro is similar to that of a function. Here is an
1055example:
c1f7febf
RK
1056
1057@example
ccd96f0a 1058#define debug(format, ...) fprintf (stderr, format, __VA_ARGS__)
c1f7febf
RK
1059@end example
1060
ccd96f0a
NB
1061Here @samp{@dots{}} is a @dfn{variable argument}. In the invocation of
1062such a macro, it represents the zero or more tokens until the closing
1063parenthesis that ends the invocation, including any commas. This set of
1064tokens replaces the identifier @code{__VA_ARGS__} in the macro body
1065wherever it appears. See the CPP manual for more information.
1066
1067GCC has long supported variadic macros, and used a different syntax that
1068allowed you to give a name to the variable arguments just like any other
1069argument. Here is an example:
c1f7febf
RK
1070
1071@example
ccd96f0a 1072#define debug(format, args...) fprintf (stderr, format, args)
c1f7febf
RK
1073@end example
1074
ccd96f0a
NB
1075This is in all ways equivalent to the ISO C example above, but arguably
1076more readable and descriptive.
c1f7febf 1077
ccd96f0a
NB
1078GNU CPP has two further variadic macro extensions, and permits them to
1079be used with either of the above forms of macro definition.
1080
1081In standard C, you are not allowed to leave the variable argument out
1082entirely; but you are allowed to pass an empty argument. For example,
1083this invocation is invalid in ISO C, because there is no comma after
1084the string:
c1f7febf
RK
1085
1086@example
ccd96f0a 1087debug ("A message")
c1f7febf
RK
1088@end example
1089
ccd96f0a
NB
1090GNU CPP permits you to completely omit the variable arguments in this
1091way. In the above examples, the compiler would complain, though since
1092the expansion of the macro still has the extra comma after the format
1093string.
1094
1095To help solve this problem, CPP behaves specially for variable arguments
1096used with the token paste operator, @samp{##}. If instead you write
c1f7febf
RK
1097
1098@example
ccd96f0a 1099#define debug(format, ...) fprintf (stderr, format, ## __VA_ARGS__)
c1f7febf
RK
1100@end example
1101
ccd96f0a
NB
1102and if the variable arguments are omitted or empty, the @samp{##}
1103operator causes the preprocessor to remove the comma before it. If you
1104do provide some variable arguments in your macro invocation, GNU CPP
1105does not complain about the paste operation and instead places the
1106variable arguments after the comma. Just like any other pasted macro
1107argument, these arguments are not macro expanded.
1108
1109@node Escaped Newlines
1110@section Slightly Looser Rules for Escaped Newlines
1111@cindex escaped newlines
1112@cindex newlines (escaped)
1113
1114Recently, the non-traditional preprocessor has relaxed its treatment of
1115escaped newlines. Previously, the newline had to immediately follow a
1116backslash. The current implementation allows whitespace in the form of
1117spaces, horizontal and vertical tabs, and form feeds between the
1118backslash and the subsequent newline. The preprocessor issues a
1119warning, but treats it as a valid escaped newline and combines the two
1120lines to form a single logical line. This works within comments and
1121tokens, including multi-line strings, as well as between tokens.
1122Comments are @emph{not} treated as whitespace for the purposes of this
1123relaxation, since they have not yet been replaced with spaces.
1124
1125@node Multi-line Strings
1126@section String Literals with Embedded Newlines
1127@cindex multi-line string literals
1128
1129As an extension, GNU CPP permits string literals to cross multiple lines
1130without escaping the embedded newlines. Each embedded newline is
1131replaced with a single @samp{\n} character in the resulting string
1132literal, regardless of what form the newline took originally.
1133
1134CPP currently allows such strings in directives as well (other than the
1135@samp{#include} family). This is deprecated and will eventually be
1136removed.
c1f7febf
RK
1137
1138@node Subscripting
1139@section Non-Lvalue Arrays May Have Subscripts
1140@cindex subscripting
1141@cindex arrays, non-lvalue
1142
1143@cindex subscripting and function values
1144Subscripting is allowed on arrays that are not lvalues, even though the
1145unary @samp{&} operator is not. For example, this is valid in GNU C though
1146not valid in other C dialects:
1147
1148@example
1149@group
1150struct foo @{int a[4];@};
1151
1152struct foo f();
1153
1154bar (int index)
1155@{
1156 return f().a[index];
1157@}
1158@end group
1159@end example
1160
1161@node Pointer Arith
1162@section Arithmetic on @code{void}- and Function-Pointers
1163@cindex void pointers, arithmetic
1164@cindex void, size of pointer to
1165@cindex function pointers, arithmetic
1166@cindex function, size of pointer to
1167
1168In GNU C, addition and subtraction operations are supported on pointers to
1169@code{void} and on pointers to functions. This is done by treating the
1170size of a @code{void} or of a function as 1.
1171
1172A consequence of this is that @code{sizeof} is also allowed on @code{void}
1173and on function types, and returns 1.
1174
1175The option @samp{-Wpointer-arith} requests a warning if these extensions
1176are used.
1177
1178@node Initializers
1179@section Non-Constant Initializers
1180@cindex initializers, non-constant
1181@cindex non-constant initializers
1182
1183As in standard C++, the elements of an aggregate initializer for an
1184automatic variable are not required to be constant expressions in GNU C.
1185Here is an example of an initializer with run-time varying elements:
1186
1187@example
1188foo (float f, float g)
1189@{
1190 float beat_freqs[2] = @{ f-g, f+g @};
1191 @dots{}
1192@}
1193@end example
1194
1195@node Constructors
1196@section Constructor Expressions
1197@cindex constructor expressions
1198@cindex initializations in expressions
1199@cindex structures, constructor expression
1200@cindex expressions, constructor
1201
1202GNU C supports constructor expressions. A constructor looks like
1203a cast containing an initializer. Its value is an object of the
1204type specified in the cast, containing the elements specified in
1205the initializer.
1206
1207Usually, the specified type is a structure. Assume that
1208@code{struct foo} and @code{structure} are declared as shown:
1209
1210@example
1211struct foo @{int a; char b[2];@} structure;
1212@end example
1213
1214@noindent
1215Here is an example of constructing a @code{struct foo} with a constructor:
1216
1217@example
1218structure = ((struct foo) @{x + y, 'a', 0@});
1219@end example
1220
1221@noindent
1222This is equivalent to writing the following:
1223
1224@example
1225@{
1226 struct foo temp = @{x + y, 'a', 0@};
1227 structure = temp;
1228@}
1229@end example
1230
1231You can also construct an array. If all the elements of the constructor
1232are (made up of) simple constant expressions, suitable for use in
1233initializers, then the constructor is an lvalue and can be coerced to a
1234pointer to its first element, as shown here:
1235
1236@example
1237char **foo = (char *[]) @{ "x", "y", "z" @};
1238@end example
1239
1240Array constructors whose elements are not simple constants are
1241not very useful, because the constructor is not an lvalue. There
1242are only two valid ways to use it: to subscript it, or initialize
1243an array variable with it. The former is probably slower than a
1244@code{switch} statement, while the latter does the same thing an
1245ordinary C initializer would do. Here is an example of
1246subscripting an array constructor:
1247
1248@example
1249output = ((int[]) @{ 2, x, 28 @}) [input];
1250@end example
1251
1252Constructor expressions for scalar types and union types are is
1253also allowed, but then the constructor expression is equivalent
1254to a cast.
1255
1256@node Labeled Elements
1257@section Labeled Elements in Initializers
1258@cindex initializers with labeled elements
1259@cindex labeled elements in initializers
1260@cindex case labels in initializers
1261
26d4fec7 1262Standard C89 requires the elements of an initializer to appear in a fixed
c1f7febf
RK
1263order, the same as the order of the elements in the array or structure
1264being initialized.
1265
26d4fec7
JM
1266In ISO C99 you can give the elements in any order, specifying the array
1267indices or structure field names they apply to, and GNU C allows this as
1268an extension in C89 mode as well. This extension is not
c1f7febf
RK
1269implemented in GNU C++.
1270
26d4fec7 1271To specify an array index, write
c1f7febf
RK
1272@samp{[@var{index}] =} before the element value. For example,
1273
1274@example
26d4fec7 1275int a[6] = @{ [4] = 29, [2] = 15 @};
c1f7febf
RK
1276@end example
1277
1278@noindent
1279is equivalent to
1280
1281@example
1282int a[6] = @{ 0, 0, 15, 0, 29, 0 @};
1283@end example
1284
1285@noindent
1286The index values must be constant expressions, even if the array being
1287initialized is automatic.
1288
26d4fec7
JM
1289An alternative syntax for this which has been obsolete since GCC 2.5 but
1290GCC still accepts is to write @samp{[@var{index}]} before the element
1291value, with no @samp{=}.
1292
c1f7febf 1293To initialize a range of elements to the same value, write
26d4fec7
JM
1294@samp{[@var{first} ... @var{last}] = @var{value}}. This is a GNU
1295extension. For example,
c1f7febf
RK
1296
1297@example
1298int widths[] = @{ [0 ... 9] = 1, [10 ... 99] = 2, [100] = 3 @};
1299@end example
1300
8b6a5902
JJ
1301@noindent
1302If the value in it has side-effects, the side-effects will happen only once,
1303not for each initialized field by the range initializer.
1304
c1f7febf
RK
1305@noindent
1306Note that the length of the array is the highest value specified
1307plus one.
1308
1309In a structure initializer, specify the name of a field to initialize
26d4fec7 1310with @samp{.@var{fieldname} =} before the element value. For example,
c1f7febf
RK
1311given the following structure,
1312
1313@example
1314struct point @{ int x, y; @};
1315@end example
1316
1317@noindent
1318the following initialization
1319
1320@example
26d4fec7 1321struct point p = @{ .y = yvalue, .x = xvalue @};
c1f7febf
RK
1322@end example
1323
1324@noindent
1325is equivalent to
1326
1327@example
1328struct point p = @{ xvalue, yvalue @};
1329@end example
1330
26d4fec7
JM
1331Another syntax which has the same meaning, obsolete since GCC 2.5, is
1332@samp{@var{fieldname}:}, as shown here:
c1f7febf
RK
1333
1334@example
26d4fec7 1335struct point p = @{ y: yvalue, x: xvalue @};
c1f7febf
RK
1336@end example
1337
1338You can also use an element label (with either the colon syntax or the
1339period-equal syntax) when initializing a union, to specify which element
1340of the union should be used. For example,
1341
1342@example
1343union foo @{ int i; double d; @};
1344
26d4fec7 1345union foo f = @{ .d = 4 @};
c1f7febf
RK
1346@end example
1347
1348@noindent
1349will convert 4 to a @code{double} to store it in the union using
1350the second element. By contrast, casting 4 to type @code{union foo}
1351would store it into the union as the integer @code{i}, since it is
1352an integer. (@xref{Cast to Union}.)
1353
1354You can combine this technique of naming elements with ordinary C
1355initialization of successive elements. Each initializer element that
1356does not have a label applies to the next consecutive element of the
1357array or structure. For example,
1358
1359@example
1360int a[6] = @{ [1] = v1, v2, [4] = v4 @};
1361@end example
1362
1363@noindent
1364is equivalent to
1365
1366@example
1367int a[6] = @{ 0, v1, v2, 0, v4, 0 @};
1368@end example
1369
1370Labeling the elements of an array initializer is especially useful
1371when the indices are characters or belong to an @code{enum} type.
1372For example:
1373
1374@example
1375int whitespace[256]
1376 = @{ [' '] = 1, ['\t'] = 1, ['\h'] = 1,
1377 ['\f'] = 1, ['\n'] = 1, ['\r'] = 1 @};
1378@end example
1379
26d4fec7
JM
1380You can also write a series of @samp{.@var{fieldname}} and
1381@samp{[@var{index}]} element labels before an @samp{=} to specify a
1382nested subobject to initialize; the list is taken relative to the
1383subobject corresponding to the closest surrounding brace pair. For
1384example, with the @samp{struct point} declaration above:
1385
1386@example
1387struct point ptarray[10] = @{ [2].y = yv2, [2].x = xv2, [0].x = xv0 @};
1388@end example
1389
8b6a5902
JJ
1390@noindent
1391If the same field is initialized multiple times, it will have value from
1392the last initialization. If any such overridden initialization has
1393side-effect, it is unspecified whether the side-effect happens or not.
1394Currently, gcc will discard them and issue a warning.
1395
c1f7febf
RK
1396@node Case Ranges
1397@section Case Ranges
1398@cindex case ranges
1399@cindex ranges in case statements
1400
1401You can specify a range of consecutive values in a single @code{case} label,
1402like this:
1403
1404@example
1405case @var{low} ... @var{high}:
1406@end example
1407
1408@noindent
1409This has the same effect as the proper number of individual @code{case}
1410labels, one for each integer value from @var{low} to @var{high}, inclusive.
1411
1412This feature is especially useful for ranges of ASCII character codes:
1413
1414@example
1415case 'A' ... 'Z':
1416@end example
1417
1418@strong{Be careful:} Write spaces around the @code{...}, for otherwise
1419it may be parsed wrong when you use it with integer values. For example,
1420write this:
1421
1422@example
1423case 1 ... 5:
1424@end example
1425
1426@noindent
1427rather than this:
1428
1429@example
1430case 1...5:
1431@end example
1432
1433@node Cast to Union
1434@section Cast to a Union Type
1435@cindex cast to a union
1436@cindex union, casting to a
1437
1438A cast to union type is similar to other casts, except that the type
1439specified is a union type. You can specify the type either with
1440@code{union @var{tag}} or with a typedef name. A cast to union is actually
1441a constructor though, not a cast, and hence does not yield an lvalue like
1442normal casts. (@xref{Constructors}.)
1443
1444The types that may be cast to the union type are those of the members
1445of the union. Thus, given the following union and variables:
1446
1447@example
1448union foo @{ int i; double d; @};
1449int x;
1450double y;
1451@end example
1452
1453@noindent
1454both @code{x} and @code{y} can be cast to type @code{union} foo.
1455
1456Using the cast as the right-hand side of an assignment to a variable of
1457union type is equivalent to storing in a member of the union:
1458
1459@example
1460union foo u;
1461@dots{}
1462u = (union foo) x @equiv{} u.i = x
1463u = (union foo) y @equiv{} u.d = y
1464@end example
1465
1466You can also use the union cast as a function argument:
1467
1468@example
1469void hack (union foo);
1470@dots{}
1471hack ((union foo) x);
1472@end example
1473
1474@node Function Attributes
1475@section Declaring Attributes of Functions
1476@cindex function attributes
1477@cindex declaring attributes of functions
1478@cindex functions that never return
1479@cindex functions that have no side effects
1480@cindex functions in arbitrary sections
2a59078d 1481@cindex functions that behave like malloc
c1f7febf
RK
1482@cindex @code{volatile} applied to function
1483@cindex @code{const} applied to function
26f6672d 1484@cindex functions with @code{printf}, @code{scanf}, @code{strftime} or @code{strfmon} style arguments
c1f7febf
RK
1485@cindex functions that are passed arguments in registers on the 386
1486@cindex functions that pop the argument stack on the 386
1487@cindex functions that do not pop the argument stack on the 386
1488
1489In GNU C, you declare certain things about functions called in your program
1490which help the compiler optimize function calls and check your code more
1491carefully.
1492
1493The keyword @code{__attribute__} allows you to specify special
1494attributes when making a declaration. This keyword is followed by an
9f1bbeaa
JM
1495attribute specification inside double parentheses. Fourteen attributes,
1496@code{noreturn}, @code{pure}, @code{const}, @code{format},
1497@code{format_arg}, @code{no_instrument_function}, @code{section},
1498@code{constructor}, @code{destructor}, @code{unused}, @code{weak},
1499@code{malloc}, @code{alias} and @code{no_check_memory_usage} are
1500currently defined for functions. Several other attributes are defined
1501for functions on particular target systems. Other attributes, including
c1f7febf
RK
1502@code{section} are supported for variables declarations (@pxref{Variable
1503Attributes}) and for types (@pxref{Type Attributes}).
1504
1505You may also specify attributes with @samp{__} preceding and following
1506each keyword. This allows you to use them in header files without
1507being concerned about a possible macro of the same name. For example,
1508you may use @code{__noreturn__} instead of @code{noreturn}.
1509
2c5e91d2
JM
1510@xref{Attribute Syntax}, for details of the exact syntax for using
1511attributes.
1512
c1f7febf
RK
1513@table @code
1514@cindex @code{noreturn} function attribute
1515@item noreturn
1516A few standard library functions, such as @code{abort} and @code{exit},
1517cannot return. GNU CC knows this automatically. Some programs define
1518their own functions that never return. You can declare them
1519@code{noreturn} to tell the compiler this fact. For example,
1520
1521@smallexample
1522void fatal () __attribute__ ((noreturn));
1523
1524void
1525fatal (@dots{})
1526@{
1527 @dots{} /* @r{Print error message.} */ @dots{}
1528 exit (1);
1529@}
1530@end smallexample
1531
1532The @code{noreturn} keyword tells the compiler to assume that
1533@code{fatal} cannot return. It can then optimize without regard to what
1534would happen if @code{fatal} ever did return. This makes slightly
1535better code. More importantly, it helps avoid spurious warnings of
1536uninitialized variables.
1537
1538Do not assume that registers saved by the calling function are
1539restored before calling the @code{noreturn} function.
1540
1541It does not make sense for a @code{noreturn} function to have a return
1542type other than @code{void}.
1543
1544The attribute @code{noreturn} is not implemented in GNU C versions
1545earlier than 2.5. An alternative way to declare that a function does
1546not return, which works in the current version and in some older
1547versions, is as follows:
1548
1549@smallexample
1550typedef void voidfn ();
1551
1552volatile voidfn fatal;
1553@end smallexample
1554
2a8f6b90
JH
1555@cindex @code{pure} function attribute
1556@item pure
1557Many functions have no effects except the return value and their
d4047e24 1558return value depends only on the parameters and/or global variables.
2a8f6b90 1559Such a function can be subject
c1f7febf
RK
1560to common subexpression elimination and loop optimization just as an
1561arithmetic operator would be. These functions should be declared
2a8f6b90 1562with the attribute @code{pure}. For example,
c1f7febf
RK
1563
1564@smallexample
2a8f6b90 1565int square (int) __attribute__ ((pure));
c1f7febf
RK
1566@end smallexample
1567
1568@noindent
1569says that the hypothetical function @code{square} is safe to call
1570fewer times than the program says.
1571
2a8f6b90
JH
1572Some of common examples of pure functions are @code{strlen} or @code{memcmp}.
1573Interesting non-pure functions are functions with infinite loops or those
1574depending on volatile memory or other system resource, that may change between
2a59078d 1575two consecutive calls (such as @code{feof} in a multithreading environment).
2a8f6b90
JH
1576
1577The attribute @code{pure} is not implemented in GNU C versions earlier
1578than 2.96.
1579@cindex @code{const} function attribute
1580@item const
1581Many functions do not examine any values except their arguments, and
1582have no effects except the return value. Basically this is just slightly
1583more strict class than the "pure" attribute above, since function is not
2a59078d 1584allowed to read global memory.
2a8f6b90
JH
1585
1586@cindex pointer arguments
1587Note that a function that has pointer arguments and examines the data
1588pointed to must @emph{not} be declared @code{const}. Likewise, a
1589function that calls a non-@code{const} function usually must not be
1590@code{const}. It does not make sense for a @code{const} function to
1591return @code{void}.
1592
c1f7febf
RK
1593The attribute @code{const} is not implemented in GNU C versions earlier
1594than 2.5. An alternative way to declare that a function has no side
1595effects, which works in the current version and in some older versions,
1596is as follows:
1597
1598@smallexample
1599typedef int intfn ();
1600
1601extern const intfn square;
1602@end smallexample
1603
1604This approach does not work in GNU C++ from 2.6.0 on, since the language
1605specifies that the @samp{const} must be attached to the return value.
1606
c1f7febf
RK
1607
1608@item format (@var{archetype}, @var{string-index}, @var{first-to-check})
1609@cindex @code{format} function attribute
bb72a084 1610The @code{format} attribute specifies that a function takes @code{printf},
26f6672d
JM
1611@code{scanf}, @code{strftime} or @code{strfmon} style arguments which
1612should be type-checked against a format string. For example, the
1613declaration:
c1f7febf
RK
1614
1615@smallexample
1616extern int
1617my_printf (void *my_object, const char *my_format, ...)
1618 __attribute__ ((format (printf, 2, 3)));
1619@end smallexample
1620
1621@noindent
1622causes the compiler to check the arguments in calls to @code{my_printf}
1623for consistency with the @code{printf} style format string argument
1624@code{my_format}.
1625
1626The parameter @var{archetype} determines how the format string is
26f6672d
JM
1627interpreted, and should be @code{printf}, @code{scanf}, @code{strftime}
1628or @code{strfmon}. (You can also use @code{__printf__},
1629@code{__scanf__}, @code{__strftime__} or @code{__strfmon__}.) The
c1f7febf
RK
1630parameter @var{string-index} specifies which argument is the format
1631string argument (starting from 1), while @var{first-to-check} is the
1632number of the first argument to check against the format string. For
1633functions where the arguments are not available to be checked (such as
1634@code{vprintf}), specify the third parameter as zero. In this case the
b722c82c
JM
1635compiler only checks the format string for consistency. For
1636@code{strftime} formats, the third parameter is required to be zero.
c1f7febf
RK
1637
1638In the example above, the format string (@code{my_format}) is the second
1639argument of the function @code{my_print}, and the arguments to check
1640start with the third argument, so the correct parameters for the format
1641attribute are 2 and 3.
1642
1643The @code{format} attribute allows you to identify your own functions
1644which take format strings as arguments, so that GNU CC can check the
b722c82c
JM
1645calls to these functions for errors. The compiler always (unless
1646@samp{-ffreestanding} is used) checks formats
1647for the standard library functions @code{printf}, @code{fprintf},
bb72a084 1648@code{sprintf}, @code{scanf}, @code{fscanf}, @code{sscanf}, @code{strftime},
c1f7febf
RK
1649@code{vprintf}, @code{vfprintf} and @code{vsprintf} whenever such
1650warnings are requested (using @samp{-Wformat}), so there is no need to
b722c82c
JM
1651modify the header file @file{stdio.h}. In C99 mode, the functions
1652@code{snprintf}, @code{vsnprintf}, @code{vscanf}, @code{vfscanf} and
26f6672d
JM
1653@code{vsscanf} are also checked. Except in strictly conforming C
1654standard modes, the X/Open function @code{strfmon} is also checked.
b722c82c 1655@xref{C Dialect Options,,Options Controlling C Dialect}.
c1f7febf
RK
1656
1657@item format_arg (@var{string-index})
1658@cindex @code{format_arg} function attribute
26f6672d
JM
1659The @code{format_arg} attribute specifies that a function takes a format
1660string for a @code{printf}, @code{scanf}, @code{strftime} or
1661@code{strfmon} style function and modifies it (for example, to translate
1662it into another language), so the result can be passed to a
1663@code{printf}, @code{scanf}, @code{strftime} or @code{strfmon} style
1664function (with the remaining arguments to the format function the same
1665as they would have been for the unmodified string). For example, the
1666declaration:
c1f7febf
RK
1667
1668@smallexample
1669extern char *
1670my_dgettext (char *my_domain, const char *my_format)
1671 __attribute__ ((format_arg (2)));
1672@end smallexample
1673
1674@noindent
26f6672d
JM
1675causes the compiler to check the arguments in calls to a @code{printf},
1676@code{scanf}, @code{strftime} or @code{strfmon} type function, whose
1677format string argument is a call to the @code{my_dgettext} function, for
1678consistency with the format string argument @code{my_format}. If the
1679@code{format_arg} attribute had not been specified, all the compiler
1680could tell in such calls to format functions would be that the format
1681string argument is not constant; this would generate a warning when
1682@code{-Wformat-nonliteral} is used, but the calls could not be checked
1683without the attribute.
c1f7febf
RK
1684
1685The parameter @var{string-index} specifies which argument is the format
1686string argument (starting from 1).
1687
1688The @code{format-arg} attribute allows you to identify your own
1689functions which modify format strings, so that GNU CC can check the
26f6672d
JM
1690calls to @code{printf}, @code{scanf}, @code{strftime} or @code{strfmon}
1691type function whose operands are a call to one of your own function.
1692The compiler always treats @code{gettext}, @code{dgettext}, and
1693@code{dcgettext} in this manner except when strict ISO C support is
1694requested by @samp{-ansi} or an appropriate @samp{-std} option, or
1695@samp{-ffreestanding} is used. @xref{C Dialect Options,,Options
1696Controlling C Dialect}.
c1f7febf 1697
07417085
KR
1698@item no_instrument_function
1699@cindex @code{no_instrument_function} function attribute
1700If @samp{-finstrument-functions} is given, profiling function calls will
1701be generated at entry and exit of most user-compiled functions.
1702Functions with this attribute will not be so instrumented.
1703
c1f7febf
RK
1704@item section ("section-name")
1705@cindex @code{section} function attribute
1706Normally, the compiler places the code it generates in the @code{text} section.
1707Sometimes, however, you need additional sections, or you need certain
1708particular functions to appear in special sections. The @code{section}
1709attribute specifies that a function lives in a particular section.
1710For example, the declaration:
1711
1712@smallexample
1713extern void foobar (void) __attribute__ ((section ("bar")));
1714@end smallexample
1715
1716@noindent
1717puts the function @code{foobar} in the @code{bar} section.
1718
1719Some file formats do not support arbitrary sections so the @code{section}
1720attribute is not available on all platforms.
1721If you need to map the entire contents of a module to a particular
1722section, consider using the facilities of the linker instead.
1723
1724@item constructor
1725@itemx destructor
1726@cindex @code{constructor} function attribute
1727@cindex @code{destructor} function attribute
1728The @code{constructor} attribute causes the function to be called
1729automatically before execution enters @code{main ()}. Similarly, the
1730@code{destructor} attribute causes the function to be called
1731automatically after @code{main ()} has completed or @code{exit ()} has
1732been called. Functions with these attributes are useful for
1733initializing data that will be used implicitly during the execution of
1734the program.
1735
1736These attributes are not currently implemented for Objective C.
1737
1738@item unused
1739This attribute, attached to a function, means that the function is meant
1740to be possibly unused. GNU CC will not produce a warning for this
1741function. GNU C++ does not currently support this attribute as
1742definitions without parameters are valid in C++.
1743
1744@item weak
1745@cindex @code{weak} attribute
1746The @code{weak} attribute causes the declaration to be emitted as a weak
1747symbol rather than a global. This is primarily useful in defining
1748library functions which can be overridden in user code, though it can
1749also be used with non-function declarations. Weak symbols are supported
1750for ELF targets, and also for a.out targets when using the GNU assembler
1751and linker.
1752
140592a0
AG
1753@item malloc
1754@cindex @code{malloc} attribute
1755The @code{malloc} attribute is used to tell the compiler that a function
1756may be treated as if it were the malloc function. The compiler assumes
1757that calls to malloc result in a pointers that cannot alias anything.
1758This will often improve optimization.
1759
c1f7febf
RK
1760@item alias ("target")
1761@cindex @code{alias} attribute
1762The @code{alias} attribute causes the declaration to be emitted as an
1763alias for another symbol, which must be specified. For instance,
1764
1765@smallexample
1766void __f () @{ /* do something */; @}
1767void f () __attribute__ ((weak, alias ("__f")));
1768@end smallexample
1769
1770declares @samp{f} to be a weak alias for @samp{__f}. In C++, the
1771mangled name for the target must be used.
1772
af3e86c2
RK
1773Not all target machines support this attribute.
1774
7d384cc0
KR
1775@item no_check_memory_usage
1776@cindex @code{no_check_memory_usage} function attribute
c5c76735
JL
1777The @code{no_check_memory_usage} attribute causes GNU CC to omit checks
1778of memory references when it generates code for that function. Normally
1779if you specify @samp{-fcheck-memory-usage} (see @pxref{Code Gen
1780Options}), GNU CC generates calls to support routines before most memory
1781accesses to permit support code to record usage and detect uses of
1782uninitialized or unallocated storage. Since GNU CC cannot handle
1783@code{asm} statements properly they are not allowed in such functions.
1784If you declare a function with this attribute, GNU CC will not generate
7d384cc0 1785memory checking code for that function, permitting the use of @code{asm}
c5c76735
JL
1786statements without having to compile that function with different
1787options. This also allows you to write support routines of your own if
1788you wish, without getting infinite recursion if they get compiled with
1789@code{-fcheck-memory-usage}.
7d384cc0 1790
c1f7febf
RK
1791@item regparm (@var{number})
1792@cindex functions that are passed arguments in registers on the 386
1793On the Intel 386, the @code{regparm} attribute causes the compiler to
1794pass up to @var{number} integer arguments in registers @var{EAX},
1795@var{EDX}, and @var{ECX} instead of on the stack. Functions that take a
1796variable number of arguments will continue to be passed all of their
1797arguments on the stack.
1798
1799@item stdcall
1800@cindex functions that pop the argument stack on the 386
1801On the Intel 386, the @code{stdcall} attribute causes the compiler to
1802assume that the called function will pop off the stack space used to
1803pass arguments, unless it takes a variable number of arguments.
1804
1805The PowerPC compiler for Windows NT currently ignores the @code{stdcall}
1806attribute.
1807
1808@item cdecl
1809@cindex functions that do pop the argument stack on the 386
1810On the Intel 386, the @code{cdecl} attribute causes the compiler to
1811assume that the calling function will pop off the stack space used to
1812pass arguments. This is
1813useful to override the effects of the @samp{-mrtd} switch.
1814
1815The PowerPC compiler for Windows NT currently ignores the @code{cdecl}
1816attribute.
1817
1818@item longcall
1819@cindex functions called via pointer on the RS/6000 and PowerPC
1820On the RS/6000 and PowerPC, the @code{longcall} attribute causes the
1821compiler to always call the function via a pointer, so that functions
1822which reside further than 64 megabytes (67,108,864 bytes) from the
1823current location can be called.
1824
c27ba912
DM
1825@item long_call/short_call
1826@cindex indirect calls on ARM
1827This attribute allows to specify how to call a particular function on
1828ARM. Both attributes override the @code{-mlong-calls} (@pxref{ARM Options})
1829command line switch and @code{#pragma long_calls} settings. The
1830@code{long_call} attribute causes the compiler to always call the
1831function by first loading its address into a register and then using the
1832contents of that register. The @code{short_call} attribute always places
1833the offset to the function from the call site into the @samp{BL}
1834instruction directly.
1835
c1f7febf
RK
1836@item dllimport
1837@cindex functions which are imported from a dll on PowerPC Windows NT
1838On the PowerPC running Windows NT, the @code{dllimport} attribute causes
1839the compiler to call the function via a global pointer to the function
1840pointer that is set up by the Windows NT dll library. The pointer name
1841is formed by combining @code{__imp_} and the function name.
1842
1843@item dllexport
1844@cindex functions which are exported from a dll on PowerPC Windows NT
1845On the PowerPC running Windows NT, the @code{dllexport} attribute causes
1846the compiler to provide a global pointer to the function pointer, so
1847that it can be called with the @code{dllimport} attribute. The pointer
1848name is formed by combining @code{__imp_} and the function name.
1849
1850@item exception (@var{except-func} [, @var{except-arg}])
1851@cindex functions which specify exception handling on PowerPC Windows NT
1852On the PowerPC running Windows NT, the @code{exception} attribute causes
1853the compiler to modify the structured exception table entry it emits for
1854the declared function. The string or identifier @var{except-func} is
1855placed in the third entry of the structured exception table. It
1856represents a function, which is called by the exception handling
1857mechanism if an exception occurs. If it was specified, the string or
1858identifier @var{except-arg} is placed in the fourth entry of the
1859structured exception table.
1860
1861@item function_vector
1862@cindex calling functions through the function vector on the H8/300 processors
1863Use this option on the H8/300 and H8/300H to indicate that the specified
1864function should be called through the function vector. Calling a
1865function through the function vector will reduce code size, however;
1866the function vector has a limited size (maximum 128 entries on the H8/300
1867and 64 entries on the H8/300H) and shares space with the interrupt vector.
1868
1869You must use GAS and GLD from GNU binutils version 2.7 or later for
1870this option to work correctly.
1871
1872@item interrupt_handler
1873@cindex interrupt handler functions on the H8/300 processors
1874Use this option on the H8/300 and H8/300H to indicate that the specified
1875function is an interrupt handler. The compiler will generate function
1876entry and exit sequences suitable for use in an interrupt handler when this
1877attribute is present.
1878
6d3d9133
NC
1879@item interrupt
1880@cindex interrupt handler functions
1881Use this option on the ARM, AVR and M32R/D ports to indicate that the
1882specified function is an interrupt handler. The compiler will generate
1883function entry and exit sequences suitable for use in an interrupt
1884handler when this attribute is present.
1885
a7cf60a2 1886Note, interrupt handlers for the H8/300 and H8/300H processors can be
6d3d9133
NC
1887specified via the @code{interrupt_handler} attribute.
1888
1889Note, on the AVR interrupts will be enabled inside the function.
1890
1891Note, for the ARM you can specify the kind of interrupt to be handled by
1892adding an optional parameter to the interrupt attribute like this:
1893
1894@smallexample
1895void f () __attribute__ ((interrupt ("IRQ")));
1896@end smallexample
1897
a7cf60a2 1898Permissible values for this parameter are: IRQ, FIQ, SWI, ABORT and UNDEF.
6d3d9133 1899
c1f7febf
RK
1900@item eightbit_data
1901@cindex eight bit data on the H8/300 and H8/300H
1902Use this option on the H8/300 and H8/300H to indicate that the specified
1903variable should be placed into the eight bit data section.
1904The compiler will generate more efficient code for certain operations
1905on data in the eight bit data area. Note the eight bit data area is limited to
1906256 bytes of data.
1907
1908You must use GAS and GLD from GNU binutils version 2.7 or later for
1909this option to work correctly.
1910
1911@item tiny_data
1912@cindex tiny data section on the H8/300H
1913Use this option on the H8/300H to indicate that the specified
1914variable should be placed into the tiny data section.
1915The compiler will generate more efficient code for loads and stores
1916on data in the tiny data section. Note the tiny data area is limited to
1917slightly under 32kbytes of data.
845da534 1918
052a4b28
DC
1919@item signal
1920@cindex signal handler functions on the AVR processors
1921Use this option on the AVR to indicate that the specified
1922function is an signal handler. The compiler will generate function
1923entry and exit sequences suitable for use in an signal handler when this
1924attribute is present. Interrupts will be disabled inside function.
1925
1926@item naked
6d3d9133
NC
1927@cindex function without a prologue/epilogue code
1928Use this option on the ARM or AVR ports to indicate that the specified
1929function do not need prologue/epilogue sequences generated by the
1930compiler. It is up to the programmer to provide these sequences.
052a4b28 1931
845da534
DE
1932@item model (@var{model-name})
1933@cindex function addressability on the M32R/D
1934Use this attribute on the M32R/D to set the addressability of an object,
1935and the code generated for a function.
1936The identifier @var{model-name} is one of @code{small}, @code{medium},
1937or @code{large}, representing each of the code models.
1938
1939Small model objects live in the lower 16MB of memory (so that their
1940addresses can be loaded with the @code{ld24} instruction), and are
1941callable with the @code{bl} instruction.
1942
1943Medium model objects may live anywhere in the 32 bit address space (the
1944compiler will generate @code{seth/add3} instructions to load their addresses),
1945and are callable with the @code{bl} instruction.
1946
1947Large model objects may live anywhere in the 32 bit address space (the
1948compiler will generate @code{seth/add3} instructions to load their addresses),
1949and may not be reachable with the @code{bl} instruction (the compiler will
1950generate the much slower @code{seth/add3/jl} instruction sequence).
1951
c1f7febf
RK
1952@end table
1953
1954You can specify multiple attributes in a declaration by separating them
1955by commas within the double parentheses or by immediately following an
1956attribute declaration with another attribute declaration.
1957
1958@cindex @code{#pragma}, reason for not using
1959@cindex pragma, reason for not using
9f1bbeaa
JM
1960Some people object to the @code{__attribute__} feature, suggesting that
1961ISO C's @code{#pragma} should be used instead. At the time
1962@code{__attribute__} was designed, there were two reasons for not doing
1963this.
c1f7febf
RK
1964
1965@enumerate
1966@item
1967It is impossible to generate @code{#pragma} commands from a macro.
1968
1969@item
1970There is no telling what the same @code{#pragma} might mean in another
1971compiler.
1972@end enumerate
1973
9f1bbeaa
JM
1974These two reasons applied to almost any application that might have been
1975proposed for @code{#pragma}. It was basically a mistake to use
1976@code{#pragma} for @emph{anything}.
1977
1978The ISO C99 standard includes @code{_Pragma}, which now allows pragmas
1979to be generated from macros. In addition, a @code{#pragma GCC}
1980namespace is now in use for GCC-specific pragmas. However, it has been
1981found convenient to use @code{__attribute__} to achieve a natural
1982attachment of attributes to their corresponding declarations, whereas
1983@code{#pragma GCC} is of use for constructs that do not naturally form
1984part of the grammar. @xref{Other Directives,,Miscellaneous
1985Preprocessing Directives, cpp, The C Preprocessor}.
c1f7febf 1986
2c5e91d2
JM
1987@node Attribute Syntax
1988@section Attribute Syntax
1989@cindex attribute syntax
1990
1991This section describes the syntax with which @code{__attribute__} may be
1992used, and the constructs to which attribute specifiers bind, for the C
1993language. Some details may vary for C++ and Objective C. Because of
1994infelicities in the grammar for attributes, some forms described here
1995may not be successfully parsed in all cases.
1996
1997@xref{Function Attributes}, for details of the semantics of attributes
1998applying to functions. @xref{Variable Attributes}, for details of the
1999semantics of attributes applying to variables. @xref{Type Attributes},
2000for details of the semantics of attributes applying to structure, union
2001and enumerated types.
2002
2003An @dfn{attribute specifier} is of the form
2004@code{__attribute__ ((@var{attribute-list}))}. An @dfn{attribute list}
2005is a possibly empty comma-separated sequence of @dfn{attributes}, where
2006each attribute is one of the following:
2007
2008@itemize @bullet
2009@item
2010Empty. Empty attributes are ignored.
2011
2012@item
2013A word (which may be an identifier such as @code{unused}, or a reserved
2014word such as @code{const}).
2015
2016@item
2017A word, followed by, in parentheses, parameters for the attribute.
2018These parameters take one of the following forms:
2019
2020@itemize @bullet
2021@item
2022An identifier. For example, @code{mode} attributes use this form.
2023
2024@item
2025An identifier followed by a comma and a non-empty comma-separated list
2026of expressions. For example, @code{format} attributes use this form.
2027
2028@item
2029A possibly empty comma-separated list of expressions. For example,
2030@code{format_arg} attributes use this form with the list being a single
2031integer constant expression, and @code{alias} attributes use this form
2032with the list being a single string constant.
2033@end itemize
2034@end itemize
2035
2036An @dfn{attribute specifier list} is a sequence of one or more attribute
2037specifiers, not separated by any other tokens.
2038
2039An attribute specifier list may appear after the colon following a
2040label, other than a @code{case} or @code{default} label. The only
2041attribute it makes sense to use after a label is @code{unused}. This
2042feature is intended for code generated by programs which contains labels
2043that may be unused but which is compiled with @option{-Wall}. It would
2044not normally be appropriate to use in it human-written code, though it
2045could be useful in cases where the code that jumps to the label is
2046contained within an @code{#ifdef} conditional.
2047
2048An attribute specifier list may appear as part of a @code{struct},
2049@code{union} or @code{enum} specifier. It may go either immediately
2050after the @code{struct}, @code{union} or @code{enum} keyword, or after
2051the closing brace. It is ignored if the content of the structure, union
2052or enumerated type is not defined in the specifier in which the
2053attribute specifier list is used---that is, in usages such as
2054@code{struct __attribute__((foo)) bar} with no following opening brace.
2055Where attribute specifiers follow the closing brace, they are considered
2056to relate to the structure, union or enumerated type defined, not to any
2057enclosing declaration the type specifier appears in, and the type
2058defined is not complete until after the attribute specifiers.
2059@c Otherwise, there would be the following problems: a shift/reduce
2060@c conflict between attributes binding the the struct/union/enum and
2061@c binding to the list of specifiers/qualifiers; and "aligned"
2062@c attributes could use sizeof for the structure, but the size could be
2063@c changed later by "packed" attributes.
2064
2065Otherwise, an attribute specifier appears as part of a declaration,
2066counting declarations of unnamed parameters and type names, and relates
2067to that declaration (which may be nested in another declaration, for
2068example in the case of a parameter declaration). In future, attribute
2069specifiers in some places may however apply to a particular declarator
2070within a declaration instead; these cases are noted below.
2071
2072Any list of specifiers and qualifiers at the start of a declaration may
2073contain attribute specifiers, whether or not such a list may in that
2074context contain storage class specifiers. (Some attributes, however,
2075are essentially in the nature of storage class specifiers, and only make
2076sense where storage class specifiers may be used; for example,
2077@code{section}.) There is one necessary limitation to this syntax: the
2078first old-style parameter declaration in a function definition cannot
2079begin with an attribute specifier, because such an attribute applies to
2080the function instead by syntax described below (which, however, is not
2081yet implemented in this case). In some other cases, attribute
2082specifiers are permitted by this grammar but not yet supported by the
2083compiler. All attribute specifiers in this place relate to the
2084declaration as a whole. In the obsolencent usage where a type of
2085@code{int} is implied by the absence of type specifiers, such a list of
2086specifiers and qualifiers may be an attribute specifier list with no
2087other specifiers or qualifiers.
2088
2089An attribute specifier list may appear immediately before a declarator
2090(other than the first) in a comma-separated list of declarators in a
2091declaration of more than one identifier using a single list of
2092specifiers and qualifiers. At present, such attribute specifiers apply
2093not only to the identifier before whose declarator they appear, but to
2094all subsequent identifiers declared in that declaration, but in future
2095they may apply only to that single identifier. For example, in
2096@code{__attribute__((noreturn)) void d0 (void),
2097__attribute__((format(printf, 1, 2))) d1 (const char *, ...), d2
2098(void)}, the @code{noreturn} attribute applies to all the functions
2099declared; the @code{format} attribute should only apply to @code{d1},
2100but at present applies to @code{d2} as well (and so causes an error).
2101
2102An attribute specifier list may appear immediately before the comma,
2103@code{=} or semicolon terminating the declaration of an identifier other
2104than a function definition. At present, such attribute specifiers apply
2105to the declared object or function, but in future they may attach to the
2106outermost adjacent declarator. In simple cases there is no difference,
2107but, for example, in @code{void (****f)(void)
2108__attribute__((noreturn));}, at present the @code{noreturn} attribute
2109applies to @code{f}, which causes a warning since @code{f} is not a
2110function, but in future it may apply to the function @code{****f}. The
2111precise semantics of what attributes in such cases will apply to are not
2112yet specified. Where an assembler name for an object or function is
2113specified (@pxref{Asm Labels}), at present the attribute must follow the
2114@code{asm} specification; in future, attributes before the @code{asm}
2115specification may apply to the adjacent declarator, and those after it
2116to the declared object or function.
2117
2118An attribute specifier list may, in future, be permitted to appear after
2119the declarator in a function definition (before any old-style parameter
2120declarations or the function body).
2121
2122An attribute specifier list may appear at the start of a nested
2123declarator. At present, there are some limitations in this usage: the
2124attributes apply to the identifer declared, and to all subsequent
2125identifiers declared in that declaration (if it includes a
2126comma-separated list of declarators), rather than to a specific
2127declarator. When attribute specifiers follow the @code{*} of a pointer
2128declarator, they must presently follow any type qualifiers present, and
2129cannot be mixed with them. The following describes intended future
2130semantics which make this syntax more useful only. It will make the
2131most sense if you are familiar with the formal specification of
2132declarators in the ISO C standard.
2133
2134Consider (as in C99 subclause 6.7.5 paragraph 4) a declaration @code{T
2135D1}, where @code{T} contains declaration specifiers that specify a type
2136@var{Type} (such as @code{int}) and @code{D1} is a declarator that
2137contains an identifier @var{ident}. The type specified for @var{ident}
2138for derived declarators whose type does not include an attribute
2139specifier is as in the ISO C standard.
2140
2141If @code{D1} has the form @code{( @var{attribute-specifier-list} D )},
2142and the declaration @code{T D} specifies the type
2143``@var{derived-declarator-type-list} @var{Type}'' for @var{ident}, then
2144@code{T D1} specifies the type ``@var{derived-declarator-type-list}
2145@var{attribute-specifier-list} @var{Type}'' for @var{ident}.
2146
2147If @code{D1} has the form @code{*
2148@var{type-qualifier-and-attribute-specifier-list} D}, and the
2149declaration @code{T D} specifies the type
2150``@var{derived-declarator-type-list} @var{Type}'' for @var{ident}, then
2151@code{T D1} specifies the type ``@var{derived-declarator-type-list}
2152@var{type-qualifier-and-attribute-specifier-list} @var{Type}'' for
2153@var{ident}.
2154
2155For example, @code{void (__attribute__((noreturn)) ****f)();} specifies
2156the type ``pointer to pointer to pointer to pointer to non-returning
2157function returning @code{void}''. As another example, @code{char
2158*__attribute__((aligned(8))) *f;} specifies the type ``pointer to
21598-byte-aligned pointer to @code{char}''. Note again that this describes
2160intended future semantics, not current implementation.
2161
c1f7febf
RK
2162@node Function Prototypes
2163@section Prototypes and Old-Style Function Definitions
2164@cindex function prototype declarations
2165@cindex old-style function definitions
2166@cindex promotion of formal parameters
2167
5490d604 2168GNU C extends ISO C to allow a function prototype to override a later
c1f7febf
RK
2169old-style non-prototype definition. Consider the following example:
2170
2171@example
2172/* @r{Use prototypes unless the compiler is old-fashioned.} */
d863830b 2173#ifdef __STDC__
c1f7febf
RK
2174#define P(x) x
2175#else
2176#define P(x) ()
2177#endif
2178
2179/* @r{Prototype function declaration.} */
2180int isroot P((uid_t));
2181
2182/* @r{Old-style function definition.} */
2183int
2184isroot (x) /* ??? lossage here ??? */
2185 uid_t x;
2186@{
2187 return x == 0;
2188@}
2189@end example
2190
5490d604 2191Suppose the type @code{uid_t} happens to be @code{short}. ISO C does
c1f7febf
RK
2192not allow this example, because subword arguments in old-style
2193non-prototype definitions are promoted. Therefore in this example the
2194function definition's argument is really an @code{int}, which does not
2195match the prototype argument type of @code{short}.
2196
5490d604 2197This restriction of ISO C makes it hard to write code that is portable
c1f7febf
RK
2198to traditional C compilers, because the programmer does not know
2199whether the @code{uid_t} type is @code{short}, @code{int}, or
2200@code{long}. Therefore, in cases like these GNU C allows a prototype
2201to override a later old-style definition. More precisely, in GNU C, a
2202function prototype argument type overrides the argument type specified
2203by a later old-style definition if the former type is the same as the
2204latter type before promotion. Thus in GNU C the above example is
2205equivalent to the following:
2206
2207@example
2208int isroot (uid_t);
2209
2210int
2211isroot (uid_t x)
2212@{
2213 return x == 0;
2214@}
2215@end example
2216
2217GNU C++ does not support old-style function definitions, so this
2218extension is irrelevant.
2219
2220@node C++ Comments
2221@section C++ Style Comments
2222@cindex //
2223@cindex C++ comments
2224@cindex comments, C++ style
2225
2226In GNU C, you may use C++ style comments, which start with @samp{//} and
2227continue until the end of the line. Many other C implementations allow
2228such comments, and they are likely to be in a future C standard.
2229However, C++ style comments are not recognized if you specify
5490d604
JM
2230@w{@samp{-ansi}}, a @option{-std} option specifying a version of ISO C
2231before C99, or @w{@samp{-traditional}}, since they are incompatible
c1f7febf
RK
2232with traditional constructs like @code{dividend//*comment*/divisor}.
2233
2234@node Dollar Signs
2235@section Dollar Signs in Identifier Names
2236@cindex $
2237@cindex dollar signs in identifier names
2238@cindex identifier names, dollar signs in
2239
79188db9
RK
2240In GNU C, you may normally use dollar signs in identifier names.
2241This is because many traditional C implementations allow such identifiers.
2242However, dollar signs in identifiers are not supported on a few target
2243machines, typically because the target assembler does not allow them.
c1f7febf
RK
2244
2245@node Character Escapes
2246@section The Character @key{ESC} in Constants
2247
2248You can use the sequence @samp{\e} in a string or character constant to
2249stand for the ASCII character @key{ESC}.
2250
2251@node Alignment
2252@section Inquiring on Alignment of Types or Variables
2253@cindex alignment
2254@cindex type alignment
2255@cindex variable alignment
2256
2257The keyword @code{__alignof__} allows you to inquire about how an object
2258is aligned, or the minimum alignment usually required by a type. Its
2259syntax is just like @code{sizeof}.
2260
2261For example, if the target machine requires a @code{double} value to be
2262aligned on an 8-byte boundary, then @code{__alignof__ (double)} is 8.
2263This is true on many RISC machines. On more traditional machine
2264designs, @code{__alignof__ (double)} is 4 or even 2.
2265
2266Some machines never actually require alignment; they allow reference to any
2267data type even at an odd addresses. For these machines, @code{__alignof__}
2268reports the @emph{recommended} alignment of a type.
2269
2270When the operand of @code{__alignof__} is an lvalue rather than a type, the
2271value is the largest alignment that the lvalue is known to have. It may
2272have this alignment as a result of its data type, or because it is part of
2273a structure and inherits alignment from that structure. For example, after
2274this declaration:
2275
2276@example
2277struct foo @{ int x; char y; @} foo1;
2278@end example
2279
2280@noindent
2281the value of @code{__alignof__ (foo1.y)} is probably 2 or 4, the same as
2282@code{__alignof__ (int)}, even though the data type of @code{foo1.y}
2283does not itself demand any alignment.@refill
2284
9d27bffe
SS
2285It is an error to ask for the alignment of an incomplete type.
2286
c1f7febf
RK
2287A related feature which lets you specify the alignment of an object is
2288@code{__attribute__ ((aligned (@var{alignment})))}; see the following
2289section.
2290
2291@node Variable Attributes
2292@section Specifying Attributes of Variables
2293@cindex attribute of variables
2294@cindex variable attributes
2295
2296The keyword @code{__attribute__} allows you to specify special
2297attributes of variables or structure fields. This keyword is followed
2298by an attribute specification inside double parentheses. Eight
2299attributes are currently defined for variables: @code{aligned},
2300@code{mode}, @code{nocommon}, @code{packed}, @code{section},
9f1bbeaa
JM
2301@code{transparent_union}, @code{unused}, and @code{weak}. Some other
2302attributes are defined for variables on particular target systems. Other
c1f7febf 2303attributes are available for functions (@pxref{Function Attributes}) and
5c25e11d
PE
2304for types (@pxref{Type Attributes}). Other front-ends might define more
2305attributes (@pxref{C++ Extensions,,Extensions to the C++ Language}).
c1f7febf
RK
2306
2307You may also specify attributes with @samp{__} preceding and following
2308each keyword. This allows you to use them in header files without
2309being concerned about a possible macro of the same name. For example,
2310you may use @code{__aligned__} instead of @code{aligned}.
2311
2c5e91d2
JM
2312@xref{Attribute Syntax}, for details of the exact syntax for using
2313attributes.
2314
c1f7febf
RK
2315@table @code
2316@cindex @code{aligned} attribute
2317@item aligned (@var{alignment})
2318This attribute specifies a minimum alignment for the variable or
2319structure field, measured in bytes. For example, the declaration:
2320
2321@smallexample
2322int x __attribute__ ((aligned (16))) = 0;
2323@end smallexample
2324
2325@noindent
2326causes the compiler to allocate the global variable @code{x} on a
232716-byte boundary. On a 68040, this could be used in conjunction with
2328an @code{asm} expression to access the @code{move16} instruction which
2329requires 16-byte aligned operands.
2330
2331You can also specify the alignment of structure fields. For example, to
2332create a double-word aligned @code{int} pair, you could write:
2333
2334@smallexample
2335struct foo @{ int x[2] __attribute__ ((aligned (8))); @};
2336@end smallexample
2337
2338@noindent
2339This is an alternative to creating a union with a @code{double} member
2340that forces the union to be double-word aligned.
2341
2342It is not possible to specify the alignment of functions; the alignment
2343of functions is determined by the machine's requirements and cannot be
2344changed. You cannot specify alignment for a typedef name because such a
2345name is just an alias, not a distinct type.
2346
2347As in the preceding examples, you can explicitly specify the alignment
2348(in bytes) that you wish the compiler to use for a given variable or
2349structure field. Alternatively, you can leave out the alignment factor
2350and just ask the compiler to align a variable or field to the maximum
2351useful alignment for the target machine you are compiling for. For
2352example, you could write:
2353
2354@smallexample
2355short array[3] __attribute__ ((aligned));
2356@end smallexample
2357
2358Whenever you leave out the alignment factor in an @code{aligned} attribute
2359specification, the compiler automatically sets the alignment for the declared
2360variable or field to the largest alignment which is ever used for any data
2361type on the target machine you are compiling for. Doing this can often make
2362copy operations more efficient, because the compiler can use whatever
2363instructions copy the biggest chunks of memory when performing copies to
2364or from the variables or fields that you have aligned this way.
2365
2366The @code{aligned} attribute can only increase the alignment; but you
2367can decrease it by specifying @code{packed} as well. See below.
2368
2369Note that the effectiveness of @code{aligned} attributes may be limited
2370by inherent limitations in your linker. On many systems, the linker is
2371only able to arrange for variables to be aligned up to a certain maximum
2372alignment. (For some linkers, the maximum supported alignment may
2373be very very small.) If your linker is only able to align variables
2374up to a maximum of 8 byte alignment, then specifying @code{aligned(16)}
2375in an @code{__attribute__} will still only provide you with 8 byte
2376alignment. See your linker documentation for further information.
2377
2378@item mode (@var{mode})
2379@cindex @code{mode} attribute
2380This attribute specifies the data type for the declaration---whichever
2381type corresponds to the mode @var{mode}. This in effect lets you
2382request an integer or floating point type according to its width.
2383
2384You may also specify a mode of @samp{byte} or @samp{__byte__} to
2385indicate the mode corresponding to a one-byte integer, @samp{word} or
2386@samp{__word__} for the mode of a one-word integer, and @samp{pointer}
2387or @samp{__pointer__} for the mode used to represent pointers.
2388
2389@item nocommon
2390@cindex @code{nocommon} attribute
2391This attribute specifies requests GNU CC not to place a variable
2392``common'' but instead to allocate space for it directly. If you
2393specify the @samp{-fno-common} flag, GNU CC will do this for all
2394variables.
2395
2396Specifying the @code{nocommon} attribute for a variable provides an
2397initialization of zeros. A variable may only be initialized in one
2398source file.
2399
2400@item packed
2401@cindex @code{packed} attribute
2402The @code{packed} attribute specifies that a variable or structure field
2403should have the smallest possible alignment---one byte for a variable,
2404and one bit for a field, unless you specify a larger value with the
2405@code{aligned} attribute.
2406
2407Here is a structure in which the field @code{x} is packed, so that it
2408immediately follows @code{a}:
2409
2410@example
2411struct foo
2412@{
2413 char a;
2414 int x[2] __attribute__ ((packed));
2415@};
2416@end example
2417
2418@item section ("section-name")
2419@cindex @code{section} variable attribute
2420Normally, the compiler places the objects it generates in sections like
2421@code{data} and @code{bss}. Sometimes, however, you need additional sections,
2422or you need certain particular variables to appear in special sections,
2423for example to map to special hardware. The @code{section}
2424attribute specifies that a variable (or function) lives in a particular
2425section. For example, this small program uses several specific section names:
2426
2427@smallexample
2428struct duart a __attribute__ ((section ("DUART_A"))) = @{ 0 @};
2429struct duart b __attribute__ ((section ("DUART_B"))) = @{ 0 @};
2430char stack[10000] __attribute__ ((section ("STACK"))) = @{ 0 @};
2431int init_data __attribute__ ((section ("INITDATA"))) = 0;
2432
2433main()
2434@{
2435 /* Initialize stack pointer */
2436 init_sp (stack + sizeof (stack));
2437
2438 /* Initialize initialized data */
2439 memcpy (&init_data, &data, &edata - &data);
2440
2441 /* Turn on the serial ports */
2442 init_duart (&a);
2443 init_duart (&b);
2444@}
2445@end smallexample
2446
2447@noindent
2448Use the @code{section} attribute with an @emph{initialized} definition
2449of a @emph{global} variable, as shown in the example. GNU CC issues
2450a warning and otherwise ignores the @code{section} attribute in
2451uninitialized variable declarations.
2452
2453You may only use the @code{section} attribute with a fully initialized
2454global definition because of the way linkers work. The linker requires
2455each object be defined once, with the exception that uninitialized
2456variables tentatively go in the @code{common} (or @code{bss}) section
2457and can be multiply "defined". You can force a variable to be
2458initialized with the @samp{-fno-common} flag or the @code{nocommon}
2459attribute.
2460
2461Some file formats do not support arbitrary sections so the @code{section}
2462attribute is not available on all platforms.
2463If you need to map the entire contents of a module to a particular
2464section, consider using the facilities of the linker instead.
2465
593d3a34
MK
2466@item shared
2467@cindex @code{shared} variable attribute
2a59078d 2468On Windows NT, in addition to putting variable definitions in a named
593d3a34
MK
2469section, the section can also be shared among all running copies of an
2470executable or DLL. For example, this small program defines shared data
2471by putting it in a named section "shared" and marking the section
2472shareable:
2473
2474@smallexample
2475int foo __attribute__((section ("shared"), shared)) = 0;
2476
2477int
2478main()
2479@{
2480 /* Read and write foo. All running copies see the same value. */
2481 return 0;
2482@}
2483@end smallexample
2484
2485@noindent
2486You may only use the @code{shared} attribute along with @code{section}
2487attribute with a fully initialized global definition because of the way
2488linkers work. See @code{section} attribute for more information.
2489
2490The @code{shared} attribute is only available on Windows NT.
2491
c1f7febf
RK
2492@item transparent_union
2493This attribute, attached to a function parameter which is a union, means
2494that the corresponding argument may have the type of any union member,
2495but the argument is passed as if its type were that of the first union
2496member. For more details see @xref{Type Attributes}. You can also use
2497this attribute on a @code{typedef} for a union data type; then it
2498applies to all function parameters with that type.
2499
2500@item unused
2501This attribute, attached to a variable, means that the variable is meant
2502to be possibly unused. GNU CC will not produce a warning for this
2503variable.
2504
2505@item weak
2506The @code{weak} attribute is described in @xref{Function Attributes}.
845da534
DE
2507
2508@item model (@var{model-name})
2509@cindex variable addressability on the M32R/D
2510Use this attribute on the M32R/D to set the addressability of an object.
2511The identifier @var{model-name} is one of @code{small}, @code{medium},
2512or @code{large}, representing each of the code models.
2513
2514Small model objects live in the lower 16MB of memory (so that their
2515addresses can be loaded with the @code{ld24} instruction).
2516
2517Medium and large model objects may live anywhere in the 32 bit address space
2518(the compiler will generate @code{seth/add3} instructions to load their
2519addresses).
2520
c1f7febf
RK
2521@end table
2522
2523To specify multiple attributes, separate them by commas within the
2524double parentheses: for example, @samp{__attribute__ ((aligned (16),
2525packed))}.
2526
2527@node Type Attributes
2528@section Specifying Attributes of Types
2529@cindex attribute of types
2530@cindex type attributes
2531
2532The keyword @code{__attribute__} allows you to specify special
2533attributes of @code{struct} and @code{union} types when you define such
2534types. This keyword is followed by an attribute specification inside
9f1bbeaa
JM
2535double parentheses. Four attributes are currently defined for types:
2536@code{aligned}, @code{packed}, @code{transparent_union}, and @code{unused}.
2537Other attributes are defined for functions (@pxref{Function Attributes}) and
c1f7febf
RK
2538for variables (@pxref{Variable Attributes}).
2539
2540You may also specify any one of these attributes with @samp{__}
2541preceding and following its keyword. This allows you to use these
2542attributes in header files without being concerned about a possible
2543macro of the same name. For example, you may use @code{__aligned__}
2544instead of @code{aligned}.
2545
2546You may specify the @code{aligned} and @code{transparent_union}
2547attributes either in a @code{typedef} declaration or just past the
2548closing curly brace of a complete enum, struct or union type
2549@emph{definition} and the @code{packed} attribute only past the closing
2550brace of a definition.
2551
4051959b
JM
2552You may also specify attributes between the enum, struct or union
2553tag and the name of the type rather than after the closing brace.
2554
2c5e91d2
JM
2555@xref{Attribute Syntax}, for details of the exact syntax for using
2556attributes.
2557
c1f7febf
RK
2558@table @code
2559@cindex @code{aligned} attribute
2560@item aligned (@var{alignment})
2561This attribute specifies a minimum alignment (in bytes) for variables
2562of the specified type. For example, the declarations:
2563
2564@smallexample
f69eecfb
JL
2565struct S @{ short f[3]; @} __attribute__ ((aligned (8)));
2566typedef int more_aligned_int __attribute__ ((aligned (8)));
c1f7febf
RK
2567@end smallexample
2568
2569@noindent
d863830b 2570force the compiler to insure (as far as it can) that each variable whose
c1f7febf
RK
2571type is @code{struct S} or @code{more_aligned_int} will be allocated and
2572aligned @emph{at least} on a 8-byte boundary. On a Sparc, having all
2573variables of type @code{struct S} aligned to 8-byte boundaries allows
2574the compiler to use the @code{ldd} and @code{std} (doubleword load and
2575store) instructions when copying one variable of type @code{struct S} to
2576another, thus improving run-time efficiency.
2577
2578Note that the alignment of any given @code{struct} or @code{union} type
5490d604 2579is required by the ISO C standard to be at least a perfect multiple of
c1f7febf
RK
2580the lowest common multiple of the alignments of all of the members of
2581the @code{struct} or @code{union} in question. This means that you @emph{can}
2582effectively adjust the alignment of a @code{struct} or @code{union}
2583type by attaching an @code{aligned} attribute to any one of the members
2584of such a type, but the notation illustrated in the example above is a
2585more obvious, intuitive, and readable way to request the compiler to
2586adjust the alignment of an entire @code{struct} or @code{union} type.
2587
2588As in the preceding example, you can explicitly specify the alignment
2589(in bytes) that you wish the compiler to use for a given @code{struct}
2590or @code{union} type. Alternatively, you can leave out the alignment factor
2591and just ask the compiler to align a type to the maximum
2592useful alignment for the target machine you are compiling for. For
2593example, you could write:
2594
2595@smallexample
2596struct S @{ short f[3]; @} __attribute__ ((aligned));
2597@end smallexample
2598
2599Whenever you leave out the alignment factor in an @code{aligned}
2600attribute specification, the compiler automatically sets the alignment
2601for the type to the largest alignment which is ever used for any data
2602type on the target machine you are compiling for. Doing this can often
2603make copy operations more efficient, because the compiler can use
2604whatever instructions copy the biggest chunks of memory when performing
2605copies to or from the variables which have types that you have aligned
2606this way.
2607
2608In the example above, if the size of each @code{short} is 2 bytes, then
2609the size of the entire @code{struct S} type is 6 bytes. The smallest
2610power of two which is greater than or equal to that is 8, so the
2611compiler sets the alignment for the entire @code{struct S} type to 8
2612bytes.
2613
2614Note that although you can ask the compiler to select a time-efficient
2615alignment for a given type and then declare only individual stand-alone
2616objects of that type, the compiler's ability to select a time-efficient
2617alignment is primarily useful only when you plan to create arrays of
2618variables having the relevant (efficiently aligned) type. If you
2619declare or use arrays of variables of an efficiently-aligned type, then
2620it is likely that your program will also be doing pointer arithmetic (or
2621subscripting, which amounts to the same thing) on pointers to the
2622relevant type, and the code that the compiler generates for these
2623pointer arithmetic operations will often be more efficient for
2624efficiently-aligned types than for other types.
2625
2626The @code{aligned} attribute can only increase the alignment; but you
2627can decrease it by specifying @code{packed} as well. See below.
2628
2629Note that the effectiveness of @code{aligned} attributes may be limited
2630by inherent limitations in your linker. On many systems, the linker is
2631only able to arrange for variables to be aligned up to a certain maximum
2632alignment. (For some linkers, the maximum supported alignment may
2633be very very small.) If your linker is only able to align variables
2634up to a maximum of 8 byte alignment, then specifying @code{aligned(16)}
2635in an @code{__attribute__} will still only provide you with 8 byte
2636alignment. See your linker documentation for further information.
2637
2638@item packed
2639This attribute, attached to an @code{enum}, @code{struct}, or
2640@code{union} type definition, specified that the minimum required memory
2641be used to represent the type.
2642
2643Specifying this attribute for @code{struct} and @code{union} types is
2644equivalent to specifying the @code{packed} attribute on each of the
2645structure or union members. Specifying the @samp{-fshort-enums}
2646flag on the line is equivalent to specifying the @code{packed}
2647attribute on all @code{enum} definitions.
2648
2649You may only specify this attribute after a closing curly brace on an
1cd4bca9
BK
2650@code{enum} definition, not in a @code{typedef} declaration, unless that
2651declaration also contains the definition of the @code{enum}.
c1f7febf
RK
2652
2653@item transparent_union
2654This attribute, attached to a @code{union} type definition, indicates
2655that any function parameter having that union type causes calls to that
2656function to be treated in a special way.
2657
2658First, the argument corresponding to a transparent union type can be of
2659any type in the union; no cast is required. Also, if the union contains
2660a pointer type, the corresponding argument can be a null pointer
2661constant or a void pointer expression; and if the union contains a void
2662pointer type, the corresponding argument can be any pointer expression.
2663If the union member type is a pointer, qualifiers like @code{const} on
2664the referenced type must be respected, just as with normal pointer
2665conversions.
2666
2667Second, the argument is passed to the function using the calling
2668conventions of first member of the transparent union, not the calling
2669conventions of the union itself. All members of the union must have the
2670same machine representation; this is necessary for this argument passing
2671to work properly.
2672
2673Transparent unions are designed for library functions that have multiple
2674interfaces for compatibility reasons. For example, suppose the
2675@code{wait} function must accept either a value of type @code{int *} to
2676comply with Posix, or a value of type @code{union wait *} to comply with
2677the 4.1BSD interface. If @code{wait}'s parameter were @code{void *},
2678@code{wait} would accept both kinds of arguments, but it would also
2679accept any other pointer type and this would make argument type checking
2680less useful. Instead, @code{<sys/wait.h>} might define the interface
2681as follows:
2682
2683@smallexample
2684typedef union
2685 @{
2686 int *__ip;
2687 union wait *__up;
2688 @} wait_status_ptr_t __attribute__ ((__transparent_union__));
2689
2690pid_t wait (wait_status_ptr_t);
2691@end smallexample
2692
2693This interface allows either @code{int *} or @code{union wait *}
2694arguments to be passed, using the @code{int *} calling convention.
2695The program can call @code{wait} with arguments of either type:
2696
2697@example
2698int w1 () @{ int w; return wait (&w); @}
2699int w2 () @{ union wait w; return wait (&w); @}
2700@end example
2701
2702With this interface, @code{wait}'s implementation might look like this:
2703
2704@example
2705pid_t wait (wait_status_ptr_t p)
2706@{
2707 return waitpid (-1, p.__ip, 0);
2708@}
2709@end example
d863830b
JL
2710
2711@item unused
2712When attached to a type (including a @code{union} or a @code{struct}),
2713this attribute means that variables of that type are meant to appear
2714possibly unused. GNU CC will not produce a warning for any variables of
2715that type, even if the variable appears to do nothing. This is often
2716the case with lock or thread classes, which are usually defined and then
2717not referenced, but contain constructors and destructors that have
956d6950 2718nontrivial bookkeeping functions.
d863830b 2719
c1f7febf
RK
2720@end table
2721
2722To specify multiple attributes, separate them by commas within the
2723double parentheses: for example, @samp{__attribute__ ((aligned (16),
2724packed))}.
2725
2726@node Inline
2727@section An Inline Function is As Fast As a Macro
2728@cindex inline functions
2729@cindex integrating function code
2730@cindex open coding
2731@cindex macros, inline alternative
2732
2733By declaring a function @code{inline}, you can direct GNU CC to
2734integrate that function's code into the code for its callers. This
2735makes execution faster by eliminating the function-call overhead; in
2736addition, if any of the actual argument values are constant, their known
2737values may permit simplifications at compile time so that not all of the
2738inline function's code needs to be included. The effect on code size is
2739less predictable; object code may be larger or smaller with function
2740inlining, depending on the particular case. Inlining of functions is an
2741optimization and it really ``works'' only in optimizing compilation. If
2742you don't use @samp{-O}, no function is really inline.
2743
2744To declare a function inline, use the @code{inline} keyword in its
2745declaration, like this:
2746
2747@example
2748inline int
2749inc (int *a)
2750@{
2751 (*a)++;
2752@}
2753@end example
2754
5490d604 2755(If you are writing a header file to be included in ISO C programs, write
c1f7febf 2756@code{__inline__} instead of @code{inline}. @xref{Alternate Keywords}.)
c1f7febf 2757You can also make all ``simple enough'' functions inline with the option
247b14bd
RH
2758@samp{-finline-functions}.
2759
2760Note that certain usages in a function definition can make it unsuitable
2761for inline substitution. Among these usages are: use of varargs, use of
2762alloca, use of variable sized data types (@pxref{Variable Length}),
2763use of computed goto (@pxref{Labels as Values}), use of nonlocal goto,
2764and nested functions (@pxref{Nested Functions}). Using @samp{-Winline}
2765will warn when a function marked @code{inline} could not be substituted,
2766and will give the reason for the failure.
c1f7febf
RK
2767
2768Note that in C and Objective C, unlike C++, the @code{inline} keyword
2769does not affect the linkage of the function.
2770
2771@cindex automatic @code{inline} for C++ member fns
2772@cindex @code{inline} automatic for C++ member fns
2773@cindex member fns, automatically @code{inline}
2774@cindex C++ member fns, automatically @code{inline}
2775GNU CC automatically inlines member functions defined within the class
2776body of C++ programs even if they are not explicitly declared
2777@code{inline}. (You can override this with @samp{-fno-default-inline};
2778@pxref{C++ Dialect Options,,Options Controlling C++ Dialect}.)
2779
2780@cindex inline functions, omission of
2781When a function is both inline and @code{static}, if all calls to the
2782function are integrated into the caller, and the function's address is
2783never used, then the function's own assembler code is never referenced.
2784In this case, GNU CC does not actually output assembler code for the
2785function, unless you specify the option @samp{-fkeep-inline-functions}.
2786Some calls cannot be integrated for various reasons (in particular,
2787calls that precede the function's definition cannot be integrated, and
2788neither can recursive calls within the definition). If there is a
2789nonintegrated call, then the function is compiled to assembler code as
2790usual. The function must also be compiled as usual if the program
2791refers to its address, because that can't be inlined.
2792
2793@cindex non-static inline function
2794When an inline function is not @code{static}, then the compiler must assume
2795that there may be calls from other source files; since a global symbol can
2796be defined only once in any program, the function must not be defined in
2797the other source files, so the calls therein cannot be integrated.
2798Therefore, a non-@code{static} inline function is always compiled on its
2799own in the usual fashion.
2800
2801If you specify both @code{inline} and @code{extern} in the function
2802definition, then the definition is used only for inlining. In no case
2803is the function compiled on its own, not even if you refer to its
2804address explicitly. Such an address becomes an external reference, as
2805if you had only declared the function, and had not defined it.
2806
2807This combination of @code{inline} and @code{extern} has almost the
2808effect of a macro. The way to use it is to put a function definition in
2809a header file with these keywords, and put another copy of the
2810definition (lacking @code{inline} and @code{extern}) in a library file.
2811The definition in the header file will cause most calls to the function
2812to be inlined. If any uses of the function remain, they will refer to
2813the single copy in the library.
2814
2815GNU C does not inline any functions when not optimizing. It is not
2816clear whether it is better to inline or not, in this case, but we found
2817that a correct implementation when not optimizing was difficult. So we
2818did the easy thing, and turned it off.
2819
2820@node Extended Asm
2821@section Assembler Instructions with C Expression Operands
2822@cindex extended @code{asm}
2823@cindex @code{asm} expressions
2824@cindex assembler instructions
2825@cindex registers
2826
c85f7c16
JL
2827In an assembler instruction using @code{asm}, you can specify the
2828operands of the instruction using C expressions. This means you need not
2829guess which registers or memory locations will contain the data you want
c1f7febf
RK
2830to use.
2831
c85f7c16
JL
2832You must specify an assembler instruction template much like what
2833appears in a machine description, plus an operand constraint string for
2834each operand.
c1f7febf
RK
2835
2836For example, here is how to use the 68881's @code{fsinx} instruction:
2837
2838@example
2839asm ("fsinx %1,%0" : "=f" (result) : "f" (angle));
2840@end example
2841
2842@noindent
2843Here @code{angle} is the C expression for the input operand while
2844@code{result} is that of the output operand. Each has @samp{"f"} as its
c85f7c16
JL
2845operand constraint, saying that a floating point register is required.
2846The @samp{=} in @samp{=f} indicates that the operand is an output; all
2847output operands' constraints must use @samp{=}. The constraints use the
2848same language used in the machine description (@pxref{Constraints}).
2849
2850Each operand is described by an operand-constraint string followed by
2851the C expression in parentheses. A colon separates the assembler
2852template from the first output operand and another separates the last
2853output operand from the first input, if any. Commas separate the
2854operands within each group. The total number of operands is limited to
2855ten or to the maximum number of operands in any instruction pattern in
2856the machine description, whichever is greater.
2857
2858If there are no output operands but there are input operands, you must
2859place two consecutive colons surrounding the place where the output
c1f7febf
RK
2860operands would go.
2861
2862Output operand expressions must be lvalues; the compiler can check this.
c85f7c16
JL
2863The input operands need not be lvalues. The compiler cannot check
2864whether the operands have data types that are reasonable for the
2865instruction being executed. It does not parse the assembler instruction
2866template and does not know what it means or even whether it is valid
2867assembler input. The extended @code{asm} feature is most often used for
2868machine instructions the compiler itself does not know exist. If
2869the output expression cannot be directly addressed (for example, it is a
2870bit field), your constraint must allow a register. In that case, GNU CC
2871will use the register as the output of the @code{asm}, and then store
2872that register into the output.
2873
2874The ordinary output operands must be write-only; GNU CC will assume that
2875the values in these operands before the instruction are dead and need
2876not be generated. Extended asm supports input-output or read-write
2877operands. Use the constraint character @samp{+} to indicate such an
2878operand and list it with the output operands.
2879
2880When the constraints for the read-write operand (or the operand in which
2881only some of the bits are to be changed) allows a register, you may, as
2882an alternative, logically split its function into two separate operands,
2883one input operand and one write-only output operand. The connection
2884between them is expressed by constraints which say they need to be in
2885the same location when the instruction executes. You can use the same C
2886expression for both operands, or different expressions. For example,
2887here we write the (fictitious) @samp{combine} instruction with
2888@code{bar} as its read-only source operand and @code{foo} as its
2889read-write destination:
c1f7febf
RK
2890
2891@example
2892asm ("combine %2,%0" : "=r" (foo) : "0" (foo), "g" (bar));
2893@end example
2894
2895@noindent
c85f7c16
JL
2896The constraint @samp{"0"} for operand 1 says that it must occupy the
2897same location as operand 0. A digit in constraint is allowed only in an
2898input operand and it must refer to an output operand.
c1f7febf
RK
2899
2900Only a digit in the constraint can guarantee that one operand will be in
c85f7c16
JL
2901the same place as another. The mere fact that @code{foo} is the value
2902of both operands is not enough to guarantee that they will be in the
2903same place in the generated assembler code. The following would not
2904work reliably:
c1f7febf
RK
2905
2906@example
2907asm ("combine %2,%0" : "=r" (foo) : "r" (foo), "g" (bar));
2908@end example
2909
2910Various optimizations or reloading could cause operands 0 and 1 to be in
2911different registers; GNU CC knows no reason not to do so. For example, the
2912compiler might find a copy of the value of @code{foo} in one register and
2913use it for operand 1, but generate the output operand 0 in a different
2914register (copying it afterward to @code{foo}'s own address). Of course,
2915since the register for operand 1 is not even mentioned in the assembler
2916code, the result will not work, but GNU CC can't tell that.
2917
c85f7c16
JL
2918Some instructions clobber specific hard registers. To describe this,
2919write a third colon after the input operands, followed by the names of
2920the clobbered hard registers (given as strings). Here is a realistic
2921example for the VAX:
c1f7febf
RK
2922
2923@example
2924asm volatile ("movc3 %0,%1,%2"
2925 : /* no outputs */
2926 : "g" (from), "g" (to), "g" (count)
2927 : "r0", "r1", "r2", "r3", "r4", "r5");
2928@end example
2929
c5c76735
JL
2930You may not write a clobber description in a way that overlaps with an
2931input or output operand. For example, you may not have an operand
2932describing a register class with one member if you mention that register
2933in the clobber list. There is no way for you to specify that an input
2934operand is modified without also specifying it as an output
2935operand. Note that if all the output operands you specify are for this
2936purpose (and hence unused), you will then also need to specify
2937@code{volatile} for the @code{asm} construct, as described below, to
2938prevent GNU CC from deleting the @code{asm} statement as unused.
8fe1938e 2939
c1f7febf 2940If you refer to a particular hardware register from the assembler code,
c85f7c16
JL
2941you will probably have to list the register after the third colon to
2942tell the compiler the register's value is modified. In some assemblers,
2943the register names begin with @samp{%}; to produce one @samp{%} in the
2944assembler code, you must write @samp{%%} in the input.
2945
2946If your assembler instruction can alter the condition code register, add
2947@samp{cc} to the list of clobbered registers. GNU CC on some machines
2948represents the condition codes as a specific hardware register;
2949@samp{cc} serves to name this register. On other machines, the
2950condition code is handled differently, and specifying @samp{cc} has no
2951effect. But it is valid no matter what the machine.
c1f7febf
RK
2952
2953If your assembler instruction modifies memory in an unpredictable
c85f7c16
JL
2954fashion, add @samp{memory} to the list of clobbered registers. This
2955will cause GNU CC to not keep memory values cached in registers across
dd40655a
GK
2956the assembler instruction. You will also want to add the
2957@code{volatile} keyword if the memory affected is not listed in the
2958inputs or outputs of the @code{asm}, as the @samp{memory} clobber does
2959not count as a side-effect of the @code{asm}.
c1f7febf 2960
c85f7c16 2961You can put multiple assembler instructions together in a single
8720914b
HPN
2962@code{asm} template, separated by the characters normally used in assembly
2963code for the system. A combination that works in most places is a newline
2964to break the line, plus a tab character to move to the instruction field
2965(written as @samp{\n\t}). Sometimes semicolons can be used, if the
2966assembler allows semicolons as a line-breaking character. Note that some
2967assembler dialects use semicolons to start a comment.
2968The input operands are guaranteed not to use any of the clobbered
c85f7c16
JL
2969registers, and neither will the output operands' addresses, so you can
2970read and write the clobbered registers as many times as you like. Here
2971is an example of multiple instructions in a template; it assumes the
2972subroutine @code{_foo} accepts arguments in registers 9 and 10:
c1f7febf
RK
2973
2974@example
8720914b 2975asm ("movl %0,r9\n\tmovl %1,r10\n\tcall _foo"
c1f7febf
RK
2976 : /* no outputs */
2977 : "g" (from), "g" (to)
2978 : "r9", "r10");
2979@end example
2980
c85f7c16
JL
2981Unless an output operand has the @samp{&} constraint modifier, GNU CC
2982may allocate it in the same register as an unrelated input operand, on
2983the assumption the inputs are consumed before the outputs are produced.
c1f7febf
RK
2984This assumption may be false if the assembler code actually consists of
2985more than one instruction. In such a case, use @samp{&} for each output
c85f7c16 2986operand that may not overlap an input. @xref{Modifiers}.
c1f7febf 2987
c85f7c16
JL
2988If you want to test the condition code produced by an assembler
2989instruction, you must include a branch and a label in the @code{asm}
2990construct, as follows:
c1f7febf
RK
2991
2992@example
8720914b 2993asm ("clr %0\n\tfrob %1\n\tbeq 0f\n\tmov #1,%0\n0:"
c1f7febf
RK
2994 : "g" (result)
2995 : "g" (input));
2996@end example
2997
2998@noindent
2999This assumes your assembler supports local labels, as the GNU assembler
3000and most Unix assemblers do.
3001
3002Speaking of labels, jumps from one @code{asm} to another are not
c85f7c16
JL
3003supported. The compiler's optimizers do not know about these jumps, and
3004therefore they cannot take account of them when deciding how to
c1f7febf
RK
3005optimize.
3006
3007@cindex macros containing @code{asm}
3008Usually the most convenient way to use these @code{asm} instructions is to
3009encapsulate them in macros that look like functions. For example,
3010
3011@example
3012#define sin(x) \
3013(@{ double __value, __arg = (x); \
3014 asm ("fsinx %1,%0": "=f" (__value): "f" (__arg)); \
3015 __value; @})
3016@end example
3017
3018@noindent
3019Here the variable @code{__arg} is used to make sure that the instruction
3020operates on a proper @code{double} value, and to accept only those
3021arguments @code{x} which can convert automatically to a @code{double}.
3022
c85f7c16
JL
3023Another way to make sure the instruction operates on the correct data
3024type is to use a cast in the @code{asm}. This is different from using a
c1f7febf
RK
3025variable @code{__arg} in that it converts more different types. For
3026example, if the desired type were @code{int}, casting the argument to
3027@code{int} would accept a pointer with no complaint, while assigning the
3028argument to an @code{int} variable named @code{__arg} would warn about
3029using a pointer unless the caller explicitly casts it.
3030
3031If an @code{asm} has output operands, GNU CC assumes for optimization
c85f7c16
JL
3032purposes the instruction has no side effects except to change the output
3033operands. This does not mean instructions with a side effect cannot be
3034used, but you must be careful, because the compiler may eliminate them
3035if the output operands aren't used, or move them out of loops, or
3036replace two with one if they constitute a common subexpression. Also,
3037if your instruction does have a side effect on a variable that otherwise
3038appears not to change, the old value of the variable may be reused later
3039if it happens to be found in a register.
c1f7febf
RK
3040
3041You can prevent an @code{asm} instruction from being deleted, moved
3042significantly, or combined, by writing the keyword @code{volatile} after
3043the @code{asm}. For example:
3044
3045@example
c85f7c16
JL
3046#define get_and_set_priority(new) \
3047(@{ int __old; \
3048 asm volatile ("get_and_set_priority %0, %1": "=g" (__old) : "g" (new)); \
3049 __old; @})
24f98470 3050@end example
c1f7febf
RK
3051
3052@noindent
c85f7c16
JL
3053If you write an @code{asm} instruction with no outputs, GNU CC will know
3054the instruction has side-effects and will not delete the instruction or
3055move it outside of loops. If the side-effects of your instruction are
3056not purely external, but will affect variables in your program in ways
3057other than reading the inputs and clobbering the specified registers or
3058memory, you should write the @code{volatile} keyword to prevent future
3059versions of GNU CC from moving the instruction around within a core
3060region.
3061
3062An @code{asm} instruction without any operands or clobbers (and ``old
3063style'' @code{asm}) will not be deleted or moved significantly,
3b7a2e58 3064regardless, unless it is unreachable, the same way as if you had
c85f7c16 3065written a @code{volatile} keyword.
c1f7febf
RK
3066
3067Note that even a volatile @code{asm} instruction can be moved in ways
3068that appear insignificant to the compiler, such as across jump
3069instructions. You can't expect a sequence of volatile @code{asm}
3070instructions to remain perfectly consecutive. If you want consecutive
3071output, use a single @code{asm}.
3072
3073It is a natural idea to look for a way to give access to the condition
3074code left by the assembler instruction. However, when we attempted to
3075implement this, we found no way to make it work reliably. The problem
3076is that output operands might need reloading, which would result in
3077additional following ``store'' instructions. On most machines, these
3078instructions would alter the condition code before there was time to
3079test it. This problem doesn't arise for ordinary ``test'' and
3080``compare'' instructions because they don't have any output operands.
3081
eda3fbbe
GB
3082For reasons similar to those described above, it is not possible to give
3083an assembler instruction access to the condition code left by previous
3084instructions.
3085
5490d604 3086If you are writing a header file that should be includable in ISO C
c1f7febf
RK
3087programs, write @code{__asm__} instead of @code{asm}. @xref{Alternate
3088Keywords}.
3089
fe0ce426
JH
3090@subsection i386 floating point asm operands
3091
3092There are several rules on the usage of stack-like regs in
3093asm_operands insns. These rules apply only to the operands that are
3094stack-like regs:
3095
3096@enumerate
3097@item
3098Given a set of input regs that die in an asm_operands, it is
3099necessary to know which are implicitly popped by the asm, and
3100which must be explicitly popped by gcc.
3101
3102An input reg that is implicitly popped by the asm must be
3103explicitly clobbered, unless it is constrained to match an
3104output operand.
3105
3106@item
3107For any input reg that is implicitly popped by an asm, it is
3108necessary to know how to adjust the stack to compensate for the pop.
3109If any non-popped input is closer to the top of the reg-stack than
3110the implicitly popped reg, it would not be possible to know what the
3111stack looked like --- it's not clear how the rest of the stack ``slides
3112up''.
3113
3114All implicitly popped input regs must be closer to the top of
3115the reg-stack than any input that is not implicitly popped.
3116
3117It is possible that if an input dies in an insn, reload might
3118use the input reg for an output reload. Consider this example:
3119
3120@example
3121asm ("foo" : "=t" (a) : "f" (b));
3122@end example
3123
3124This asm says that input B is not popped by the asm, and that
3125the asm pushes a result onto the reg-stack, ie, the stack is one
3126deeper after the asm than it was before. But, it is possible that
3127reload will think that it can use the same reg for both the input and
3128the output, if input B dies in this insn.
3129
3130If any input operand uses the @code{f} constraint, all output reg
3131constraints must use the @code{&} earlyclobber.
3132
3133The asm above would be written as
3134
3135@example
3136asm ("foo" : "=&t" (a) : "f" (b));
3137@end example
3138
3139@item
3140Some operands need to be in particular places on the stack. All
3141output operands fall in this category --- there is no other way to
3142know which regs the outputs appear in unless the user indicates
3143this in the constraints.
3144
3145Output operands must specifically indicate which reg an output
3146appears in after an asm. @code{=f} is not allowed: the operand
3147constraints must select a class with a single reg.
3148
3149@item
3150Output operands may not be ``inserted'' between existing stack regs.
3151Since no 387 opcode uses a read/write operand, all output operands
3152are dead before the asm_operands, and are pushed by the asm_operands.
3153It makes no sense to push anywhere but the top of the reg-stack.
3154
3155Output operands must start at the top of the reg-stack: output
3156operands may not ``skip'' a reg.
3157
3158@item
3159Some asm statements may need extra stack space for internal
3160calculations. This can be guaranteed by clobbering stack registers
3161unrelated to the inputs and outputs.
3162
3163@end enumerate
3164
3165Here are a couple of reasonable asms to want to write. This asm
3166takes one input, which is internally popped, and produces two outputs.
3167
3168@example
3169asm ("fsincos" : "=t" (cos), "=u" (sin) : "0" (inp));
3170@end example
3171
3172This asm takes two inputs, which are popped by the @code{fyl2xp1} opcode,
3173and replaces them with one output. The user must code the @code{st(1)}
3174clobber for reg-stack.c to know that @code{fyl2xp1} pops both inputs.
3175
3176@example
3177asm ("fyl2xp1" : "=t" (result) : "0" (x), "u" (y) : "st(1)");
3178@end example
3179
c1f7febf
RK
3180@ifclear INTERNALS
3181@c Show the details on constraints if they do not appear elsewhere in
3182@c the manual
3183@include md.texi
3184@end ifclear
3185
3186@node Asm Labels
3187@section Controlling Names Used in Assembler Code
3188@cindex assembler names for identifiers
3189@cindex names used in assembler code
3190@cindex identifiers, names in assembler code
3191
3192You can specify the name to be used in the assembler code for a C
3193function or variable by writing the @code{asm} (or @code{__asm__})
3194keyword after the declarator as follows:
3195
3196@example
3197int foo asm ("myfoo") = 2;
3198@end example
3199
3200@noindent
3201This specifies that the name to be used for the variable @code{foo} in
3202the assembler code should be @samp{myfoo} rather than the usual
3203@samp{_foo}.
3204
3205On systems where an underscore is normally prepended to the name of a C
3206function or variable, this feature allows you to define names for the
3207linker that do not start with an underscore.
3208
3209You cannot use @code{asm} in this way in a function @emph{definition}; but
3210you can get the same effect by writing a declaration for the function
3211before its definition and putting @code{asm} there, like this:
3212
3213@example
3214extern func () asm ("FUNC");
3215
3216func (x, y)
3217 int x, y;
3218@dots{}
3219@end example
3220
3221It is up to you to make sure that the assembler names you choose do not
3222conflict with any other assembler symbols. Also, you must not use a
3223register name; that would produce completely invalid assembler code. GNU
3224CC does not as yet have the ability to store static variables in registers.
3225Perhaps that will be added.
3226
3227@node Explicit Reg Vars
3228@section Variables in Specified Registers
3229@cindex explicit register variables
3230@cindex variables in specified registers
3231@cindex specified registers
3232@cindex registers, global allocation
3233
3234GNU C allows you to put a few global variables into specified hardware
3235registers. You can also specify the register in which an ordinary
3236register variable should be allocated.
3237
3238@itemize @bullet
3239@item
3240Global register variables reserve registers throughout the program.
3241This may be useful in programs such as programming language
3242interpreters which have a couple of global variables that are accessed
3243very often.
3244
3245@item
3246Local register variables in specific registers do not reserve the
3247registers. The compiler's data flow analysis is capable of determining
3248where the specified registers contain live values, and where they are
8d344fbc 3249available for other uses. Stores into local register variables may be deleted
0deaf590
JL
3250when they appear to be dead according to dataflow analysis. References
3251to local register variables may be deleted or moved or simplified.
c1f7febf
RK
3252
3253These local variables are sometimes convenient for use with the extended
3254@code{asm} feature (@pxref{Extended Asm}), if you want to write one
3255output of the assembler instruction directly into a particular register.
3256(This will work provided the register you specify fits the constraints
3257specified for that operand in the @code{asm}.)
3258@end itemize
3259
3260@menu
3261* Global Reg Vars::
3262* Local Reg Vars::
3263@end menu
3264
3265@node Global Reg Vars
3266@subsection Defining Global Register Variables
3267@cindex global register variables
3268@cindex registers, global variables in
3269
3270You can define a global register variable in GNU C like this:
3271
3272@example
3273register int *foo asm ("a5");
3274@end example
3275
3276@noindent
3277Here @code{a5} is the name of the register which should be used. Choose a
3278register which is normally saved and restored by function calls on your
3279machine, so that library routines will not clobber it.
3280
3281Naturally the register name is cpu-dependent, so you would need to
3282conditionalize your program according to cpu type. The register
3283@code{a5} would be a good choice on a 68000 for a variable of pointer
3284type. On machines with register windows, be sure to choose a ``global''
3285register that is not affected magically by the function call mechanism.
3286
3287In addition, operating systems on one type of cpu may differ in how they
3288name the registers; then you would need additional conditionals. For
3289example, some 68000 operating systems call this register @code{%a5}.
3290
3291Eventually there may be a way of asking the compiler to choose a register
3292automatically, but first we need to figure out how it should choose and
3293how to enable you to guide the choice. No solution is evident.
3294
3295Defining a global register variable in a certain register reserves that
3296register entirely for this use, at least within the current compilation.
3297The register will not be allocated for any other purpose in the functions
3298in the current compilation. The register will not be saved and restored by
3299these functions. Stores into this register are never deleted even if they
3300would appear to be dead, but references may be deleted or moved or
3301simplified.
3302
3303It is not safe to access the global register variables from signal
3304handlers, or from more than one thread of control, because the system
3305library routines may temporarily use the register for other things (unless
3306you recompile them specially for the task at hand).
3307
3308@cindex @code{qsort}, and global register variables
3309It is not safe for one function that uses a global register variable to
3310call another such function @code{foo} by way of a third function
3311@code{lose} that was compiled without knowledge of this variable (i.e. in a
3312different source file in which the variable wasn't declared). This is
3313because @code{lose} might save the register and put some other value there.
3314For example, you can't expect a global register variable to be available in
3315the comparison-function that you pass to @code{qsort}, since @code{qsort}
3316might have put something else in that register. (If you are prepared to
3317recompile @code{qsort} with the same global register variable, you can
3318solve this problem.)
3319
3320If you want to recompile @code{qsort} or other source files which do not
3321actually use your global register variable, so that they will not use that
3322register for any other purpose, then it suffices to specify the compiler
3323option @samp{-ffixed-@var{reg}}. You need not actually add a global
3324register declaration to their source code.
3325
3326A function which can alter the value of a global register variable cannot
3327safely be called from a function compiled without this variable, because it
3328could clobber the value the caller expects to find there on return.
3329Therefore, the function which is the entry point into the part of the
3330program that uses the global register variable must explicitly save and
3331restore the value which belongs to its caller.
3332
3333@cindex register variable after @code{longjmp}
3334@cindex global register after @code{longjmp}
3335@cindex value after @code{longjmp}
3336@findex longjmp
3337@findex setjmp
3338On most machines, @code{longjmp} will restore to each global register
3339variable the value it had at the time of the @code{setjmp}. On some
3340machines, however, @code{longjmp} will not change the value of global
3341register variables. To be portable, the function that called @code{setjmp}
3342should make other arrangements to save the values of the global register
3343variables, and to restore them in a @code{longjmp}. This way, the same
3344thing will happen regardless of what @code{longjmp} does.
3345
3346All global register variable declarations must precede all function
3347definitions. If such a declaration could appear after function
3348definitions, the declaration would be too late to prevent the register from
3349being used for other purposes in the preceding functions.
3350
3351Global register variables may not have initial values, because an
3352executable file has no means to supply initial contents for a register.
3353
3354On the Sparc, there are reports that g3 @dots{} g7 are suitable
3355registers, but certain library functions, such as @code{getwd}, as well
3356as the subroutines for division and remainder, modify g3 and g4. g1 and
3357g2 are local temporaries.
3358
3359On the 68000, a2 @dots{} a5 should be suitable, as should d2 @dots{} d7.
3360Of course, it will not do to use more than a few of those.
3361
3362@node Local Reg Vars
3363@subsection Specifying Registers for Local Variables
3364@cindex local variables, specifying registers
3365@cindex specifying registers for local variables
3366@cindex registers for local variables
3367
3368You can define a local register variable with a specified register
3369like this:
3370
3371@example
3372register int *foo asm ("a5");
3373@end example
3374
3375@noindent
3376Here @code{a5} is the name of the register which should be used. Note
3377that this is the same syntax used for defining global register
3378variables, but for a local variable it would appear within a function.
3379
3380Naturally the register name is cpu-dependent, but this is not a
3381problem, since specific registers are most often useful with explicit
3382assembler instructions (@pxref{Extended Asm}). Both of these things
3383generally require that you conditionalize your program according to
3384cpu type.
3385
3386In addition, operating systems on one type of cpu may differ in how they
3387name the registers; then you would need additional conditionals. For
3388example, some 68000 operating systems call this register @code{%a5}.
3389
c1f7febf
RK
3390Defining such a register variable does not reserve the register; it
3391remains available for other uses in places where flow control determines
3392the variable's value is not live. However, these registers are made
e5e809f4
JL
3393unavailable for use in the reload pass; excessive use of this feature
3394leaves the compiler too few available registers to compile certain
3395functions.
3396
3397This option does not guarantee that GNU CC will generate code that has
3398this variable in the register you specify at all times. You may not
3399code an explicit reference to this register in an @code{asm} statement
3400and assume it will always refer to this variable.
c1f7febf 3401
8d344fbc 3402Stores into local register variables may be deleted when they appear to be dead
0deaf590
JL
3403according to dataflow analysis. References to local register variables may
3404be deleted or moved or simplified.
3405
c1f7febf
RK
3406@node Alternate Keywords
3407@section Alternate Keywords
3408@cindex alternate keywords
3409@cindex keywords, alternate
3410
5490d604
JM
3411The option @option{-traditional} disables certain keywords;
3412@option{-ansi} and the various @option{-std} options disable certain
3413others. This causes trouble when you want to use GNU C extensions, or
3414ISO C features, in a general-purpose header file that should be usable
3415by all programs, including ISO C programs and traditional ones. The
3416keywords @code{asm}, @code{typeof} and @code{inline} cannot be used
3417since they won't work in a program compiled with @option{-ansi}
3418(although @code{inline} can be used in a program compiled with
3419@option{-std=c99}), while the keywords @code{const}, @code{volatile},
3420@code{signed}, @code{typeof} and @code{inline} won't work in a program
3421compiled with @option{-traditional}. The ISO C99 keyword
3422@code{restrict} is only available when @option{-std=gnu99} (which will
3423eventually be the default) or @option{-std=c99} (or the equivalent
3424@option{-std=iso9899:1999}) is used.@refill
c1f7febf
RK
3425
3426The way to solve these problems is to put @samp{__} at the beginning and
3427end of each problematical keyword. For example, use @code{__asm__}
3428instead of @code{asm}, @code{__const__} instead of @code{const}, and
3429@code{__inline__} instead of @code{inline}.
3430
3431Other C compilers won't accept these alternative keywords; if you want to
3432compile with another compiler, you can define the alternate keywords as
3433macros to replace them with the customary keywords. It looks like this:
3434
3435@example
3436#ifndef __GNUC__
3437#define __asm__ asm
3438#endif
3439@end example
3440
6e6b0525 3441@findex __extension__
f1b5ff21 3442@samp{-pedantic} and other options cause warnings for many GNU C extensions.
dbe519e0 3443You can
c1f7febf
RK
3444prevent such warnings within one expression by writing
3445@code{__extension__} before the expression. @code{__extension__} has no
3446effect aside from this.
3447
3448@node Incomplete Enums
3449@section Incomplete @code{enum} Types
3450
3451You can define an @code{enum} tag without specifying its possible values.
3452This results in an incomplete type, much like what you get if you write
3453@code{struct foo} without describing the elements. A later declaration
3454which does specify the possible values completes the type.
3455
3456You can't allocate variables or storage using the type while it is
3457incomplete. However, you can work with pointers to that type.
3458
3459This extension may not be very useful, but it makes the handling of
3460@code{enum} more consistent with the way @code{struct} and @code{union}
3461are handled.
3462
3463This extension is not supported by GNU C++.
3464
3465@node Function Names
3466@section Function Names as Strings
3467
22acfb79
NM
3468GNU CC predefines two magic identifiers to hold the name of the current
3469function. The identifier @code{__FUNCTION__} holds the name of the function
3470as it appears in the source. The identifier @code{__PRETTY_FUNCTION__}
3471holds the name of the function pretty printed in a language specific
3472fashion.
c1f7febf
RK
3473
3474These names are always the same in a C function, but in a C++ function
3475they may be different. For example, this program:
3476
3477@smallexample
3478extern "C" @{
3479extern int printf (char *, ...);
3480@}
3481
3482class a @{
3483 public:
3484 sub (int i)
3485 @{
3486 printf ("__FUNCTION__ = %s\n", __FUNCTION__);
3487 printf ("__PRETTY_FUNCTION__ = %s\n", __PRETTY_FUNCTION__);
3488 @}
3489@};
3490
3491int
3492main (void)
3493@{
3494 a ax;
3495 ax.sub (0);
3496 return 0;
3497@}
3498@end smallexample
3499
3500@noindent
3501gives this output:
3502
3503@smallexample
3504__FUNCTION__ = sub
3505__PRETTY_FUNCTION__ = int a::sub (int)
3506@end smallexample
3507
22acfb79
NM
3508The compiler automagically replaces the identifiers with a string
3509literal containing the appropriate name. Thus, they are neither
3510preprocessor macros, like @code{__FILE__} and @code{__LINE__}, nor
3511variables. This means that they catenate with other string literals, and
3512that they can be used to initialize char arrays. For example
3513
3514@smallexample
3515char here[] = "Function " __FUNCTION__ " in " __FILE__;
3516@end smallexample
3517
3518On the other hand, @samp{#ifdef __FUNCTION__} does not have any special
c1f7febf
RK
3519meaning inside a function, since the preprocessor does not do anything
3520special with the identifier @code{__FUNCTION__}.
3521
22acfb79 3522GNU CC also supports the magic word @code{__func__}, defined by the
34527c47 3523ISO standard C-99:
22acfb79
NM
3524
3525@display
3526The identifier @code{__func__} is implicitly declared by the translator
3527as if, immediately following the opening brace of each function
3528definition, the declaration
3529
3530@smallexample
3531static const char __func__[] = "function-name";
3532@end smallexample
3533
3534appeared, where function-name is the name of the lexically-enclosing
3535function. This name is the unadorned name of the function.
3536@end display
3537
3538By this definition, @code{__func__} is a variable, not a string literal.
3539In particular, @code{__func__} does not catenate with other string
3540literals.
3541
3542In @code{C++}, @code{__FUNCTION__} and @code{__PRETTY_FUNCTION__} are
3543variables, declared in the same way as @code{__func__}.
3544
c1f7febf
RK
3545@node Return Address
3546@section Getting the Return or Frame Address of a Function
3547
3548These functions may be used to get information about the callers of a
3549function.
3550
3551@table @code
185ebd6c 3552@findex __builtin_return_address
c1f7febf
RK
3553@item __builtin_return_address (@var{level})
3554This function returns the return address of the current function, or of
3555one of its callers. The @var{level} argument is number of frames to
3556scan up the call stack. A value of @code{0} yields the return address
3557of the current function, a value of @code{1} yields the return address
3558of the caller of the current function, and so forth.
3559
3560The @var{level} argument must be a constant integer.
3561
3562On some machines it may be impossible to determine the return address of
3563any function other than the current one; in such cases, or when the top
3564of the stack has been reached, this function will return @code{0}.
3565
3566This function should only be used with a non-zero argument for debugging
3567purposes.
3568
185ebd6c 3569@findex __builtin_frame_address
c1f7febf
RK
3570@item __builtin_frame_address (@var{level})
3571This function is similar to @code{__builtin_return_address}, but it
3572returns the address of the function frame rather than the return address
3573of the function. Calling @code{__builtin_frame_address} with a value of
3574@code{0} yields the frame address of the current function, a value of
3575@code{1} yields the frame address of the caller of the current function,
3576and so forth.
3577
3578The frame is the area on the stack which holds local variables and saved
3579registers. The frame address is normally the address of the first word
3580pushed on to the stack by the function. However, the exact definition
3581depends upon the processor and the calling convention. If the processor
3582has a dedicated frame pointer register, and the function has a frame,
3583then @code{__builtin_frame_address} will return the value of the frame
3584pointer register.
3585
3586The caveats that apply to @code{__builtin_return_address} apply to this
3587function as well.
3588@end table
3589
185ebd6c
RH
3590@node Other Builtins
3591@section Other built-in functions provided by GNU CC
01702459
JM
3592@cindex builtin functions
3593@findex __builtin_isgreater
3594@findex __builtin_isgreaterequal
3595@findex __builtin_isless
3596@findex __builtin_islessequal
3597@findex __builtin_islessgreater
3598@findex __builtin_isunordered
3599@findex abort
3600@findex abs
3601@findex alloca
3602@findex bcmp
3603@findex bzero
341e3d11
JM
3604@findex cimag
3605@findex cimagf
3606@findex cimagl
3607@findex conj
3608@findex conjf
3609@findex conjl
01702459
JM
3610@findex cos
3611@findex cosf
3612@findex cosl
341e3d11
JM
3613@findex creal
3614@findex crealf
3615@findex creall
01702459
JM
3616@findex exit
3617@findex _exit
796cdb65 3618@findex _Exit
01702459
JM
3619@findex fabs
3620@findex fabsf
3621@findex fabsl
3622@findex ffs
18f988a0 3623@findex fprintf
01702459 3624@findex fputs
e78f4a97 3625@findex imaxabs
c7b6c6cd 3626@findex index
01702459
JM
3627@findex labs
3628@findex llabs
3629@findex memcmp
3630@findex memcpy
3631@findex memset
3632@findex printf
c7b6c6cd 3633@findex rindex
01702459
JM
3634@findex sin
3635@findex sinf
3636@findex sinl
3637@findex sqrt
3638@findex sqrtf
3639@findex sqrtl
d118937d 3640@findex strcat
01702459
JM
3641@findex strchr
3642@findex strcmp
3643@findex strcpy
d118937d 3644@findex strcspn
01702459 3645@findex strlen
d118937d 3646@findex strncat
da9e9f08
KG
3647@findex strncmp
3648@findex strncpy
01702459
JM
3649@findex strpbrk
3650@findex strrchr
d118937d 3651@findex strspn
01702459 3652@findex strstr
185ebd6c
RH
3653
3654GNU CC provides a large number of built-in functions other than the ones
3655mentioned above. Some of these are for internal use in the processing
3656of exceptions or variable-length argument lists and will not be
3657documented here because they may change from time to time; we do not
3658recommend general use of these functions.
3659
3660The remaining functions are provided for optimization purposes.
3661
3662GNU CC includes builtin versions of many of the functions in the
01702459
JM
3663standard C library. The versions prefixed with @code{__builtin_} will
3664always be treated as having the same meaning as the C library function
3665even if you specify the @samp{-fno-builtin} (@pxref{C Dialect Options})
3666option. Many of these functions are only optimized in certain cases; if
3667not optimized in a particular case, a call to the library function will
3668be emitted.
3669
796cdb65
JM
3670The functions @code{abort}, @code{exit}, @code{_Exit} and @code{_exit}
3671are recognized and presumed not to return, but otherwise are not built
3672in. @code{_exit} is not recognized in strict ISO C mode (@samp{-ansi},
3673@samp{-std=c89} or @samp{-std=c99}). @code{_Exit} is not recognized in
3674strict C89 mode (@samp{-ansi} or @samp{-std=c89}).
01702459
JM
3675
3676Outside strict ISO C mode, the functions @code{alloca}, @code{bcmp},
c7b6c6cd
KG
3677@code{bzero}, @code{index}, @code{rindex} and @code{ffs} may be handled
3678as builtins. Corresponding versions @code{__builtin_alloca},
3679@code{__builtin_bcmp}, @code{__builtin_bzero}, @code{__builtin_index},
3680@code{__builtin_rindex} and @code{__builtin_ffs} are also recognized in
01702459
JM
3681strict ISO C mode.
3682
341e3d11
JM
3683The ISO C99 functions @code{conj}, @code{conjf}, @code{conjl},
3684@code{creal}, @code{crealf}, @code{creall}, @code{cimag}, @code{cimagf},
3685@code{cimagl}, @code{llabs} and @code{imaxabs} are handled as builtins
3686except in strict ISO C89 mode. There are also builtin versions of the ISO C99
01702459
JM
3687functions @code{cosf}, @code{cosl}, @code{fabsf}, @code{fabsl},
3688@code{sinf}, @code{sinl}, @code{sqrtf}, and @code{sqrtl}, that are
3689recognized in any mode since ISO C89 reserves these names for the
3690purpose to which ISO C99 puts them. All these functions have
3691corresponding versions prefixed with @code{__builtin_}.
3692
3693The following ISO C89 functions are recognized as builtins unless
3694@samp{-fno-builtin} is specified: @code{abs}, @code{cos}, @code{fabs},
18f988a0
KG
3695@code{fprintf}, @code{fputs}, @code{labs}, @code{memcmp}, @code{memcpy},
3696@code{memset}, @code{printf}, @code{sin}, @code{sqrt}, @code{strcat},
3697@code{strchr}, @code{strcmp}, @code{strcpy}, @code{strcspn},
3698@code{strlen}, @code{strncat}, @code{strncmp}, @code{strncpy},
3699@code{strpbrk}, @code{strrchr}, @code{strspn}, and @code{strstr}. All
3700of these functions have corresponding versions prefixed with
3701@code{__builtin_}, except that the version for @code{sqrt} is called
da9e9f08 3702@code{__builtin_fsqrt}.
01702459
JM
3703
3704GNU CC provides builtin versions of the ISO C99 floating point
3705comparison macros (that avoid raising exceptions for unordered
3706operands): @code{__builtin_isgreater}, @code{__builtin_isgreaterequal},
3707@code{__builtin_isless}, @code{__builtin_islessequal},
3708@code{__builtin_islessgreater}, and @code{__builtin_isunordered}.
3709
185ebd6c 3710
994a57cd 3711@table @code
185ebd6c 3712@findex __builtin_constant_p
994a57cd 3713@item __builtin_constant_p (@var{exp})
185ebd6c
RH
3714You can use the builtin function @code{__builtin_constant_p} to
3715determine if a value is known to be constant at compile-time and hence
3716that GNU CC can perform constant-folding on expressions involving that
3717value. The argument of the function is the value to test. The function
3718returns the integer 1 if the argument is known to be a compile-time
3719constant and 0 if it is not known to be a compile-time constant. A
3720return of 0 does not indicate that the value is @emph{not} a constant,
3721but merely that GNU CC cannot prove it is a constant with the specified
3722value of the @samp{-O} option.
3723
3724You would typically use this function in an embedded application where
3725memory was a critical resource. If you have some complex calculation,
3726you may want it to be folded if it involves constants, but need to call
3727a function if it does not. For example:
3728
4d390518 3729@smallexample
185ebd6c
RH
3730#define Scale_Value(X) \
3731 (__builtin_constant_p (X) ? ((X) * SCALE + OFFSET) : Scale (X))
3732@end smallexample
3733
3734You may use this builtin function in either a macro or an inline
3735function. However, if you use it in an inlined function and pass an
3736argument of the function as the argument to the builtin, GNU CC will
3737never return 1 when you call the inline function with a string constant
3738or constructor expression (@pxref{Constructors}) and will not return 1
3739when you pass a constant numeric value to the inline function unless you
3740specify the @samp{-O} option.
3741
994a57cd
RH
3742@findex __builtin_expect
3743@item __builtin_expect(@var{exp}, @var{c})
3744You may use @code{__builtin_expect} to provide the compiler with
3745branch prediction information. In general, you should prefer to
3746use actual profile feedback for this (@samp{-fprofile-arcs}), as
3747programmers are notoriously bad at predicting how their programs
60b6e1f5 3748actually perform. However, there are applications in which this
994a57cd
RH
3749data is hard to collect.
3750
3751The return value is the value of @var{exp}, which should be an
3752integral expression. The value of @var{c} must be a compile-time
3753constant. The semantics of the builtin are that it is expected
3754that @var{exp} == @var{c}. For example:
3755
3756@smallexample
3757if (__builtin_expect (x, 0))
3758 foo ();
3759@end smallexample
3760
3761@noindent
3762would indicate that we do not expect to call @code{foo}, since
3763we expect @code{x} to be zero. Since you are limited to integral
3764expressions for @var{exp}, you should use constructions such as
3765
3766@smallexample
3767if (__builtin_expect (ptr != NULL, 1))
3768 error ();
3769@end smallexample
3770
3771@noindent
3772when testing pointer or floating-point values.
3773@end table
3774
c1f7febf
RK
3775@node C++ Extensions
3776@chapter Extensions to the C++ Language
3777@cindex extensions, C++ language
3778@cindex C++ language extensions
3779
3780The GNU compiler provides these extensions to the C++ language (and you
3781can also use most of the C language extensions in your C++ programs). If you
3782want to write code that checks whether these features are available, you can
3783test for the GNU compiler the same way as for C programs: check for a
3784predefined macro @code{__GNUC__}. You can also use @code{__GNUG__} to
3785test specifically for GNU C++ (@pxref{Standard Predefined,,Standard
3786Predefined Macros,cpp.info,The C Preprocessor}).
3787
3788@menu
c1f7febf 3789* Min and Max:: C++ Minimum and maximum operators.
02cac427 3790* Volatiles:: What constitutes an access to a volatile object.
49419c8f 3791* Restricted Pointers:: C99 restricted pointers and references.
c1f7febf 3792* C++ Interface:: You can use a single C++ header file for both
e6f3b89d 3793 declarations and definitions.
c1f7febf 3794* Template Instantiation:: Methods for ensuring that exactly one copy of
e6f3b89d 3795 each needed template instantiation is emitted.
0ded1f18
JM
3796* Bound member functions:: You can extract a function pointer to the
3797 method denoted by a @samp{->*} or @samp{.*} expression.
e6f3b89d
PE
3798* C++ Attributes:: Variable, function, and type attributes for C++ only.
3799* Deprecated Features:: Things might disappear from g++.
3800* Backwards Compatibility:: Compatibilities with earlier definitions of C++.
c1f7febf
RK
3801@end menu
3802
c1f7febf
RK
3803@node Min and Max
3804@section Minimum and Maximum Operators in C++
3805
3806It is very convenient to have operators which return the ``minimum'' or the
3807``maximum'' of two arguments. In GNU C++ (but not in GNU C),
3808
3809@table @code
3810@item @var{a} <? @var{b}
3811@findex <?
3812@cindex minimum operator
3813is the @dfn{minimum}, returning the smaller of the numeric values
3814@var{a} and @var{b};
3815
3816@item @var{a} >? @var{b}
3817@findex >?
3818@cindex maximum operator
3819is the @dfn{maximum}, returning the larger of the numeric values @var{a}
3820and @var{b}.
3821@end table
3822
3823These operations are not primitive in ordinary C++, since you can
3824use a macro to return the minimum of two things in C++, as in the
3825following example.
3826
3827@example
3828#define MIN(X,Y) ((X) < (Y) ? : (X) : (Y))
3829@end example
3830
3831@noindent
3832You might then use @w{@samp{int min = MIN (i, j);}} to set @var{min} to
3833the minimum value of variables @var{i} and @var{j}.
3834
3835However, side effects in @code{X} or @code{Y} may cause unintended
3836behavior. For example, @code{MIN (i++, j++)} will fail, incrementing
3837the smaller counter twice. A GNU C extension allows you to write safe
3838macros that avoid this kind of problem (@pxref{Naming Types,,Naming an
3839Expression's Type}). However, writing @code{MIN} and @code{MAX} as
3840macros also forces you to use function-call notation for a
3841fundamental arithmetic operation. Using GNU C++ extensions, you can
3842write @w{@samp{int min = i <? j;}} instead.
3843
3844Since @code{<?} and @code{>?} are built into the compiler, they properly
3845handle expressions with side-effects; @w{@samp{int min = i++ <? j++;}}
3846works correctly.
3847
02cac427
NS
3848@node Volatiles
3849@section When is a Volatile Object Accessed?
3850@cindex accessing volatiles
3851@cindex volatile read
3852@cindex volatile write
3853@cindex volatile access
3854
3855Both the C and C++ standard have the concept of volatile objects. These
3856are normally accessed by pointers and used for accessing hardware. The
8117da65 3857standards encourage compilers to refrain from optimizations
02cac427
NS
3858concerning accesses to volatile objects that it might perform on
3859non-volatile objects. The C standard leaves it implementation defined
3860as to what constitutes a volatile access. The C++ standard omits to
3861specify this, except to say that C++ should behave in a similar manner
3862to C with respect to volatiles, where possible. The minimum either
8117da65 3863standard specifies is that at a sequence point all previous accesses to
02cac427
NS
3864volatile objects have stabilized and no subsequent accesses have
3865occurred. Thus an implementation is free to reorder and combine
3866volatile accesses which occur between sequence points, but cannot do so
3867for accesses across a sequence point. The use of volatiles does not
3868allow you to violate the restriction on updating objects multiple times
3869within a sequence point.
3870
3871In most expressions, it is intuitively obvious what is a read and what is
3872a write. For instance
3873
3874@example
3875volatile int *dst = <somevalue>;
3876volatile int *src = <someothervalue>;
3877*dst = *src;
3878@end example
3879
3880@noindent
3881will cause a read of the volatile object pointed to by @var{src} and stores the
3882value into the volatile object pointed to by @var{dst}. There is no
3883guarantee that these reads and writes are atomic, especially for objects
3884larger than @code{int}.
3885
3886Less obvious expressions are where something which looks like an access
3887is used in a void context. An example would be,
3888
3889@example
3890volatile int *src = <somevalue>;
3891*src;
3892@end example
3893
3894With C, such expressions are rvalues, and as rvalues cause a read of
3895the object, gcc interprets this as a read of the volatile being pointed
3896to. The C++ standard specifies that such expressions do not undergo
3897lvalue to rvalue conversion, and that the type of the dereferenced
3898object may be incomplete. The C++ standard does not specify explicitly
3899that it is this lvalue to rvalue conversion which is responsible for
3900causing an access. However, there is reason to believe that it is,
3901because otherwise certain simple expressions become undefined. However,
3902because it would surprise most programmers, g++ treats dereferencing a
3903pointer to volatile object of complete type in a void context as a read
3904of the object. When the object has incomplete type, g++ issues a
3905warning.
3906
3907@example
3908struct S;
3909struct T @{int m;@};
3910volatile S *ptr1 = <somevalue>;
3911volatile T *ptr2 = <somevalue>;
3912*ptr1;
3913*ptr2;
3914@end example
3915
3916In this example, a warning is issued for @code{*ptr1}, and @code{*ptr2}
3917causes a read of the object pointed to. If you wish to force an error on
3918the first case, you must force a conversion to rvalue with, for instance
3919a static cast, @code{static_cast<S>(*ptr1)}.
3920
3921When using a reference to volatile, g++ does not treat equivalent
3922expressions as accesses to volatiles, but instead issues a warning that
3923no volatile is accessed. The rationale for this is that otherwise it
3924becomes difficult to determine where volatile access occur, and not
3925possible to ignore the return value from functions returning volatile
3926references. Again, if you wish to force a read, cast the reference to
3927an rvalue.
3928
535233a8
NS
3929@node Restricted Pointers
3930@section Restricting Pointer Aliasing
3931@cindex restricted pointers
3932@cindex restricted references
3933@cindex restricted this pointer
3934
49419c8f 3935As with gcc, g++ understands the C99 feature of restricted pointers,
535233a8 3936specified with the @code{__restrict__}, or @code{__restrict} type
49419c8f 3937qualifier. Because you cannot compile C++ by specifying the -std=c99
535233a8
NS
3938language flag, @code{restrict} is not a keyword in C++.
3939
3940In addition to allowing restricted pointers, you can specify restricted
3941references, which indicate that the reference is not aliased in the local
3942context.
3943
3944@example
3945void fn (int *__restrict__ rptr, int &__restrict__ rref)
3946@{
3947 @dots{}
3948@}
3949@end example
3950
3951@noindent
3952In the body of @code{fn}, @var{rptr} points to an unaliased integer and
3953@var{rref} refers to a (different) unaliased integer.
3954
3955You may also specify whether a member function's @var{this} pointer is
3956unaliased by using @code{__restrict__} as a member function qualifier.
3957
3958@example
3959void T::fn () __restrict__
3960@{
3961 @dots{}
3962@}
3963@end example
3964
3965@noindent
3966Within the body of @code{T::fn}, @var{this} will have the effective
3967definition @code{T *__restrict__ const this}. Notice that the
3968interpretation of a @code{__restrict__} member function qualifier is
3969different to that of @code{const} or @code{volatile} qualifier, in that it
3970is applied to the pointer rather than the object. This is consistent with
3971other compilers which implement restricted pointers.
3972
3973As with all outermost parameter qualifiers, @code{__restrict__} is
3974ignored in function definition matching. This means you only need to
3975specify @code{__restrict__} in a function definition, rather than
3976in a function prototype as well.
3977
c1f7febf
RK
3978@node C++ Interface
3979@section Declarations and Definitions in One Header
3980
3981@cindex interface and implementation headers, C++
3982@cindex C++ interface and implementation headers
3983C++ object definitions can be quite complex. In principle, your source
3984code will need two kinds of things for each object that you use across
3985more than one source file. First, you need an @dfn{interface}
3986specification, describing its structure with type declarations and
3987function prototypes. Second, you need the @dfn{implementation} itself.
3988It can be tedious to maintain a separate interface description in a
3989header file, in parallel to the actual implementation. It is also
3990dangerous, since separate interface and implementation definitions may
3991not remain parallel.
3992
3993@cindex pragmas, interface and implementation
3994With GNU C++, you can use a single header file for both purposes.
3995
3996@quotation
3997@emph{Warning:} The mechanism to specify this is in transition. For the
3998nonce, you must use one of two @code{#pragma} commands; in a future
3999release of GNU C++, an alternative mechanism will make these
4000@code{#pragma} commands unnecessary.
4001@end quotation
4002
4003The header file contains the full definitions, but is marked with
4004@samp{#pragma interface} in the source code. This allows the compiler
4005to use the header file only as an interface specification when ordinary
4006source files incorporate it with @code{#include}. In the single source
4007file where the full implementation belongs, you can use either a naming
4008convention or @samp{#pragma implementation} to indicate this alternate
4009use of the header file.
4010
4011@table @code
4012@item #pragma interface
4013@itemx #pragma interface "@var{subdir}/@var{objects}.h"
4014@kindex #pragma interface
4015Use this directive in @emph{header files} that define object classes, to save
4016space in most of the object files that use those classes. Normally,
4017local copies of certain information (backup copies of inline member
4018functions, debugging information, and the internal tables that implement
4019virtual functions) must be kept in each object file that includes class
4020definitions. You can use this pragma to avoid such duplication. When a
4021header file containing @samp{#pragma interface} is included in a
4022compilation, this auxiliary information will not be generated (unless
4023the main input source file itself uses @samp{#pragma implementation}).
4024Instead, the object files will contain references to be resolved at link
4025time.
4026
4027The second form of this directive is useful for the case where you have
4028multiple headers with the same name in different directories. If you
4029use this form, you must specify the same string to @samp{#pragma
4030implementation}.
4031
4032@item #pragma implementation
4033@itemx #pragma implementation "@var{objects}.h"
4034@kindex #pragma implementation
4035Use this pragma in a @emph{main input file}, when you want full output from
4036included header files to be generated (and made globally visible). The
4037included header file, in turn, should use @samp{#pragma interface}.
4038Backup copies of inline member functions, debugging information, and the
4039internal tables used to implement virtual functions are all generated in
4040implementation files.
4041
4042@cindex implied @code{#pragma implementation}
4043@cindex @code{#pragma implementation}, implied
4044@cindex naming convention, implementation headers
4045If you use @samp{#pragma implementation} with no argument, it applies to
4046an include file with the same basename@footnote{A file's @dfn{basename}
4047was the name stripped of all leading path information and of trailing
4048suffixes, such as @samp{.h} or @samp{.C} or @samp{.cc}.} as your source
4049file. For example, in @file{allclass.cc}, giving just
4050@samp{#pragma implementation}
4051by itself is equivalent to @samp{#pragma implementation "allclass.h"}.
4052
4053In versions of GNU C++ prior to 2.6.0 @file{allclass.h} was treated as
4054an implementation file whenever you would include it from
4055@file{allclass.cc} even if you never specified @samp{#pragma
4056implementation}. This was deemed to be more trouble than it was worth,
4057however, and disabled.
4058
4059If you use an explicit @samp{#pragma implementation}, it must appear in
4060your source file @emph{before} you include the affected header files.
4061
4062Use the string argument if you want a single implementation file to
4063include code from multiple header files. (You must also use
4064@samp{#include} to include the header file; @samp{#pragma
4065implementation} only specifies how to use the file---it doesn't actually
4066include it.)
4067
4068There is no way to split up the contents of a single header file into
4069multiple implementation files.
4070@end table
4071
4072@cindex inlining and C++ pragmas
4073@cindex C++ pragmas, effect on inlining
4074@cindex pragmas in C++, effect on inlining
4075@samp{#pragma implementation} and @samp{#pragma interface} also have an
4076effect on function inlining.
4077
4078If you define a class in a header file marked with @samp{#pragma
4079interface}, the effect on a function defined in that class is similar to
4080an explicit @code{extern} declaration---the compiler emits no code at
4081all to define an independent version of the function. Its definition
4082is used only for inlining with its callers.
4083
4084Conversely, when you include the same header file in a main source file
4085that declares it as @samp{#pragma implementation}, the compiler emits
4086code for the function itself; this defines a version of the function
4087that can be found via pointers (or by callers compiled without
4088inlining). If all calls to the function can be inlined, you can avoid
4089emitting the function by compiling with @samp{-fno-implement-inlines}.
4090If any calls were not inlined, you will get linker errors.
4091
4092@node Template Instantiation
4093@section Where's the Template?
4094
4095@cindex template instantiation
4096
4097C++ templates are the first language feature to require more
4098intelligence from the environment than one usually finds on a UNIX
4099system. Somehow the compiler and linker have to make sure that each
4100template instance occurs exactly once in the executable if it is needed,
4101and not at all otherwise. There are two basic approaches to this
4102problem, which I will refer to as the Borland model and the Cfront model.
4103
4104@table @asis
4105@item Borland model
4106Borland C++ solved the template instantiation problem by adding the code
469b759e
JM
4107equivalent of common blocks to their linker; the compiler emits template
4108instances in each translation unit that uses them, and the linker
4109collapses them together. The advantage of this model is that the linker
4110only has to consider the object files themselves; there is no external
4111complexity to worry about. This disadvantage is that compilation time
4112is increased because the template code is being compiled repeatedly.
4113Code written for this model tends to include definitions of all
4114templates in the header file, since they must be seen to be
4115instantiated.
c1f7febf
RK
4116
4117@item Cfront model
4118The AT&T C++ translator, Cfront, solved the template instantiation
4119problem by creating the notion of a template repository, an
469b759e
JM
4120automatically maintained place where template instances are stored. A
4121more modern version of the repository works as follows: As individual
4122object files are built, the compiler places any template definitions and
4123instantiations encountered in the repository. At link time, the link
4124wrapper adds in the objects in the repository and compiles any needed
4125instances that were not previously emitted. The advantages of this
4126model are more optimal compilation speed and the ability to use the
4127system linker; to implement the Borland model a compiler vendor also
c1f7febf 4128needs to replace the linker. The disadvantages are vastly increased
469b759e
JM
4129complexity, and thus potential for error; for some code this can be
4130just as transparent, but in practice it can been very difficult to build
c1f7febf 4131multiple programs in one directory and one program in multiple
469b759e
JM
4132directories. Code written for this model tends to separate definitions
4133of non-inline member templates into a separate file, which should be
4134compiled separately.
c1f7febf
RK
4135@end table
4136
469b759e 4137When used with GNU ld version 2.8 or later on an ELF system such as
a4b3b54a
JM
4138Linux/GNU or Solaris 2, or on Microsoft Windows, g++ supports the
4139Borland model. On other systems, g++ implements neither automatic
4140model.
469b759e
JM
4141
4142A future version of g++ will support a hybrid model whereby the compiler
4143will emit any instantiations for which the template definition is
4144included in the compile, and store template definitions and
4145instantiation context information into the object file for the rest.
4146The link wrapper will extract that information as necessary and invoke
4147the compiler to produce the remaining instantiations. The linker will
4148then combine duplicate instantiations.
4149
4150In the mean time, you have the following options for dealing with
4151template instantiations:
c1f7febf
RK
4152
4153@enumerate
d863830b
JL
4154@item
4155Compile your template-using code with @samp{-frepo}. The compiler will
4156generate files with the extension @samp{.rpo} listing all of the
4157template instantiations used in the corresponding object files which
4158could be instantiated there; the link wrapper, @samp{collect2}, will
4159then update the @samp{.rpo} files to tell the compiler where to place
4160those instantiations and rebuild any affected object files. The
4161link-time overhead is negligible after the first pass, as the compiler
4162will continue to place the instantiations in the same files.
4163
4164This is your best option for application code written for the Borland
4165model, as it will just work. Code written for the Cfront model will
4166need to be modified so that the template definitions are available at
4167one or more points of instantiation; usually this is as simple as adding
4168@code{#include <tmethods.cc>} to the end of each template header.
4169
4170For library code, if you want the library to provide all of the template
4171instantiations it needs, just try to link all of its object files
4172together; the link will fail, but cause the instantiations to be
4173generated as a side effect. Be warned, however, that this may cause
4174conflicts if multiple libraries try to provide the same instantiations.
4175For greater control, use explicit instantiation as described in the next
4176option.
4177
c1f7febf
RK
4178@item
4179Compile your code with @samp{-fno-implicit-templates} to disable the
4180implicit generation of template instances, and explicitly instantiate
4181all the ones you use. This approach requires more knowledge of exactly
4182which instances you need than do the others, but it's less
4183mysterious and allows greater control. You can scatter the explicit
4184instantiations throughout your program, perhaps putting them in the
4185translation units where the instances are used or the translation units
4186that define the templates themselves; you can put all of the explicit
4187instantiations you need into one big file; or you can create small files
4188like
4189
4190@example
4191#include "Foo.h"
4192#include "Foo.cc"
4193
4194template class Foo<int>;
4195template ostream& operator <<
4196 (ostream&, const Foo<int>&);
4197@end example
4198
4199for each of the instances you need, and create a template instantiation
4200library from those.
4201
4202If you are using Cfront-model code, you can probably get away with not
4203using @samp{-fno-implicit-templates} when compiling files that don't
4204@samp{#include} the member template definitions.
4205
4206If you use one big file to do the instantiations, you may want to
4207compile it without @samp{-fno-implicit-templates} so you get all of the
4208instances required by your explicit instantiations (but not by any
4209other files) without having to specify them as well.
4210
4211g++ has extended the template instantiation syntax outlined in the
03d0f4af 4212Working Paper to allow forward declaration of explicit instantiations
4003d7f9
JM
4213(with @code{extern}), instantiation of the compiler support data for a
4214template class (i.e. the vtable) without instantiating any of its
4215members (with @code{inline}), and instantiation of only the static data
4216members of a template class, without the support data or member
4217functions (with (@code{static}):
c1f7febf
RK
4218
4219@example
4220extern template int max (int, int);
c1f7febf 4221inline template class Foo<int>;
4003d7f9 4222static template class Foo<int>;
c1f7febf
RK
4223@end example
4224
4225@item
4226Do nothing. Pretend g++ does implement automatic instantiation
4227management. Code written for the Borland model will work fine, but
4228each translation unit will contain instances of each of the templates it
4229uses. In a large program, this can lead to an unacceptable amount of code
4230duplication.
4231
4232@item
4233Add @samp{#pragma interface} to all files containing template
4234definitions. For each of these files, add @samp{#pragma implementation
4235"@var{filename}"} to the top of some @samp{.C} file which
4236@samp{#include}s it. Then compile everything with
4237@samp{-fexternal-templates}. The templates will then only be expanded
4238in the translation unit which implements them (i.e. has a @samp{#pragma
4239implementation} line for the file where they live); all other files will
4240use external references. If you're lucky, everything should work
4241properly. If you get undefined symbol errors, you need to make sure
4242that each template instance which is used in the program is used in the
4243file which implements that template. If you don't have any use for a
4244particular instance in that file, you can just instantiate it
4245explicitly, using the syntax from the latest C++ working paper:
4246
4247@example
4248template class A<int>;
4249template ostream& operator << (ostream&, const A<int>&);
4250@end example
4251
4252This strategy will work with code written for either model. If you are
4253using code written for the Cfront model, the file containing a class
4254template and the file containing its member templates should be
4255implemented in the same translation unit.
4256
4257A slight variation on this approach is to instead use the flag
4258@samp{-falt-external-templates}; this flag causes template
4259instances to be emitted in the translation unit that implements the
4260header where they are first instantiated, rather than the one which
4261implements the file where the templates are defined. This header must
4262be the same in all translation units, or things are likely to break.
4263
4264@xref{C++ Interface,,Declarations and Definitions in One Header}, for
4265more discussion of these pragmas.
4266@end enumerate
4267
0ded1f18
JM
4268@node Bound member functions
4269@section Extracting the function pointer from a bound pointer to member function
4270
4271@cindex pmf
4272@cindex pointer to member function
4273@cindex bound pointer to member function
4274
4275In C++, pointer to member functions (PMFs) are implemented using a wide
4276pointer of sorts to handle all the possible call mechanisms; the PMF
4277needs to store information about how to adjust the @samp{this} pointer,
4278and if the function pointed to is virtual, where to find the vtable, and
4279where in the vtable to look for the member function. If you are using
4280PMFs in an inner loop, you should really reconsider that decision. If
4281that is not an option, you can extract the pointer to the function that
4282would be called for a given object/PMF pair and call it directly inside
4283the inner loop, to save a bit of time.
4284
4285Note that you will still be paying the penalty for the call through a
4286function pointer; on most modern architectures, such a call defeats the
4287branch prediction features of the CPU. This is also true of normal
4288virtual function calls.
4289
4290The syntax for this extension is
4291
4292@example
4293extern A a;
4294extern int (A::*fp)();
4295typedef int (*fptr)(A *);
4296
4297fptr p = (fptr)(a.*fp);
4298@end example
4299
0fb6bbf5
ML
4300For PMF constants (i.e. expressions of the form @samp{&Klasse::Member}),
4301no object is needed to obtain the address of the function. They can be
4302converted to function pointers directly:
4303
4304@example
4305fptr p1 = (fptr)(&A::foo);
4306@end example
4307
0ded1f18
JM
4308You must specify @samp{-Wno-pmf-conversions} to use this extension.
4309
5c25e11d
PE
4310@node C++ Attributes
4311@section C++-Specific Variable, Function, and Type Attributes
4312
4313Some attributes only make sense for C++ programs.
4314
4315@table @code
4316@item init_priority (@var{priority})
4317@cindex init_priority attribute
4318
4319
4320In Standard C++, objects defined at namespace scope are guaranteed to be
4321initialized in an order in strict accordance with that of their definitions
4322@emph{in a given translation unit}. No guarantee is made for initializations
4323across translation units. However, GNU C++ allows users to control the
3844cd2e 4324order of initialization of objects defined at namespace scope with the
5c25e11d
PE
4325@code{init_priority} attribute by specifying a relative @var{priority},
4326a constant integral expression currently bounded between 101 and 65535
4327inclusive. Lower numbers indicate a higher priority.
4328
4329In the following example, @code{A} would normally be created before
4330@code{B}, but the @code{init_priority} attribute has reversed that order:
4331
4332@example
4333Some_Class A __attribute__ ((init_priority (2000)));
4334Some_Class B __attribute__ ((init_priority (543)));
4335@end example
4336
4337@noindent
4338Note that the particular values of @var{priority} do not matter; only their
4339relative ordering.
4340
4341
4342@item com_interface
4343@cindex com_interface attribute
4344
4345@c This is based on: 1) grepping the code,
4346@c 2) http://gcc.gnu.org/ml/gcc-bugs/1999-08n/msg01212.html
4347@c 3) http://gcc.gnu.org/ml/gcc-bugs/1999-08n/msg01215.html
4348@c and 4) a lot of guesswork. You can tell I don't use COM. -pme 21Dec00
4349
4350This type attribute takes no parameters, and marks a class or struct as an
4351interface for communication via COM; the class will support the COM ABI
4352rather than the full C++ ABI. Currently this means that RTTI is not possible
4353with the resulting class heirarchy. The virtual pointer table will be
4354changed to be COM-compliant. Also, all classes and structs derived from one
4355marked with this attribute are implicitly marked with the same attribute;
4356thus, only the base class in a COM hierarchy needs @code{com_interface}.
4357
60c87482
BM
4358@item java_interface
4359@cindex java_interface attribute
4360
4361This type attribute informs C++ that the class is a Java interface. It may
4362only be applied to classes declared within an @code{extern "Java"} block.
4363Calls to methods declared in this interface will be dispatched using GCJ's
4364interface table mechanism, instead of regular virtual table dispatch.
4365
5c25e11d
PE
4366@end table
4367
e6f3b89d
PE
4368@node Deprecated Features
4369@section Deprecated Features
4370
4371In the past, the GNU C++ compiler was extended to experiment with new
4372features, at a time when the C++ language was still evolving. Now that
4373the C++ standard is complete, some of those features are superseded by
4374superior alternatives. Using the old features might cause a warning in
4375some cases that the feature will be dropped in the future. In other
4376cases, the feature might be gone already.
4377
4378While the list below is not exhaustive, it documents some of the options
4379that are now deprecated:
4380
4381@table @code
4382@item -fexternal-templates
4383@itemx -falt-external-templates
4384These are two of the many ways for g++ to implement template
4385instantiation. @xref{Template Instantiation}. The C++ standard clearly
4386defines how template definitions have to be organized across
4387implementation units. g++ has an implicit instantiation mechanism that
4388should work just fine for standard-conforming code.
4389
4390@item -fstrict-prototype
4391@itemx -fno-strict-prototype
4392Previously it was possible to use an empty prototype parameter list to
4393indicate an unspecified number of parameters (like C), rather than no
4394parameters, as C++ demands. This feature has been removed, except where
4395it is required for backwards compatibility @xref{Backwards Compatibility}.
4396@end table
4397
4398The named return value extension has been deprecated, and will be
4399removed from g++ at some point.
4400
82c18d5c
NS
4401The use of initializer lists with new expressions has been deprecated,
4402and will be removed from g++ at some point.
4403
e6f3b89d
PE
4404@node Backwards Compatibility
4405@section Backwards Compatibility
4406@cindex Backwards Compatibility
4407@cindex ARM [Annotated C++ Reference Manual]
4408
4409Now that there is a definitive ISO standard C++, g++ has a specification
4410to adhere to. The C++ language evolved over time, and features that
4411used to be acceptable in previous drafts of the standard, such as the ARM
4412[Annotated C++ Reference Manual], are no longer accepted. In order to allow
4413compilation of C++ written to such drafts, g++ contains some backwards
4414compatibilities. @emph{All such backwards compatibility features are
4415liable to disappear in future versions of g++.} They should be considered
4416deprecated @xref{Deprecated Features}.
4417
4418@table @code
4419@item For scope
4420If a variable is declared at for scope, it used to remain in scope until
4421the end of the scope which contained the for statement (rather than just
4422within the for scope). g++ retains this, but issues a warning, if such a
4423variable is accessed outside the for scope.
4424
4425@item implicit C language
4426Old C system header files did not contain an @code{extern "C" @{...@}}
4427scope to set the language. On such systems, all header files are
4428implicitly scoped inside a C language scope. Also, an empty prototype
4429@code{()} will be treated as an unspecified number of arguments, rather
4430than no arguments, as C++ demands.
4431@end table
4432