home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / gcc / gcc258s.zoo / gcc.info-7 < prev    next >
Encoding:
GNU Info File  |  1993-11-30  |  48.8 KB  |  1,218 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.54 from the input
  2. file gcc.texi.
  3.  
  4.    This file documents the use and the internals of the GNU compiler.
  5.  
  6.    Published by the Free Software Foundation 675 Massachusetts Avenue
  7. Cambridge, MA 02139 USA
  8.  
  9.    Copyright (C) 1988, 1989, 1992, 1993 Free Software Foundation, Inc.
  10.  
  11.    Permission is granted to make and distribute verbatim copies of this
  12. manual provided the copyright notice and this permission notice are
  13. preserved on all copies.
  14.  
  15.    Permission is granted to copy and distribute modified versions of
  16. this manual under the conditions for verbatim copying, provided also
  17. that the sections entitled "GNU General Public License" and "Protect
  18. Your Freedom--Fight `Look And Feel'" are included exactly as in the
  19. original, and provided that the entire resulting derived work is
  20. distributed under the terms of a permission notice identical to this
  21. one.
  22.  
  23.    Permission is granted to copy and distribute translations of this
  24. manual into another language, under the above conditions for modified
  25. versions, except that the sections entitled "GNU General Public
  26. License" and "Protect Your Freedom--Fight `Look And Feel'", and this
  27. permission notice, may be included in translations approved by the Free
  28. Software Foundation instead of in the original English.
  29.  
  30. File: gcc.info,  Node: Complex,  Next: Zero Length,  Prev: Long Long,  Up: C Extensions
  31.  
  32. Complex Numbers
  33. ===============
  34.  
  35.    GNU C supports complex data types.  You can declare both complex
  36. integer types and complex floating types, using the keyword
  37. `__complex__'.
  38.  
  39.    For example, `__complex__ double x;' declares `x' as a variable
  40. whose real part and imaginary part are both of type `double'.
  41. `__complex__ short int y;' declares `y' to have real and imaginary
  42. parts of type `short int'; this is not likely to be useful, but it
  43. shows that the set of complex types is complete.
  44.  
  45.    To write a constant with a complex data type, use the suffix `i' or
  46. `j' (either one; they are equivalent).  For example, `2.5fi' has type
  47. `__complex__ float' and `3i' has type `__complex__ int'.  Such a
  48. constant always has a pure imaginary value, but you can form any
  49. complex value you like by adding one to a real constant.
  50.  
  51.    To extract the real part of a complex-valued expression EXP, write
  52. `__real__ EXP'.  Likewise, use `__imag__' to extract the imaginary part.
  53.  
  54.    The operator `~' performs complex conjugation when used on a value
  55. with a complex type.
  56.  
  57.    GNU CC can allocate complex automatic variables in a noncontiguous
  58. fashion; it's even possible for the real part to be in a register while
  59. the imaginary part is on the stack (or vice-versa).  None of the
  60. supported debugging info formats has a way to represent noncontiguous
  61. allocation like this, so GNU CC describes a noncontiguous complex
  62. variable as if it were two separate variables of noncomplex type.  If
  63. the variable's actual name is `foo', the two fictitious variables are
  64. named `foo$real' and `foo$imag'.  You can examine and set these two
  65. fictitious variables with your debugger.
  66.  
  67.    A future version of GDB will know how to recognize such pairs and
  68. treat them as a single variable with a complex type.
  69.  
  70. File: gcc.info,  Node: Zero Length,  Next: Variable Length,  Prev: Complex,  Up: C Extensions
  71.  
  72. Arrays of Length Zero
  73. =====================
  74.  
  75.    Zero-length arrays are allowed in GNU C.  They are very useful as
  76. the last element of a structure which is really a header for a
  77. variable-length object:
  78.  
  79.      struct line {
  80.        int length;
  81.        char contents[0];
  82.      };
  83.      
  84.      {
  85.        struct line *thisline = (struct line *)
  86.          malloc (sizeof (struct line) + this_length);
  87.        thisline->length = this_length;
  88.      }
  89.  
  90.    In standard C, you would have to give `contents' a length of 1, which
  91. means either you waste space or complicate the argument to `malloc'.
  92.  
  93. File: gcc.info,  Node: Variable Length,  Next: Macro Varargs,  Prev: Zero Length,  Up: C Extensions
  94.  
  95. Arrays of Variable Length
  96. =========================
  97.  
  98.    Variable-length automatic arrays are allowed in GNU C.  These arrays
  99. are declared like any other automatic arrays, but with a length that is
  100. not a constant expression.  The storage is allocated at the point of
  101. declaration and deallocated when the brace-level is exited.  For
  102. example:
  103.  
  104.      FILE *
  105.      concat_fopen (char *s1, char *s2, char *mode)
  106.      {
  107.        char str[strlen (s1) + strlen (s2) + 1];
  108.        strcpy (str, s1);
  109.        strcat (str, s2);
  110.        return fopen (str, mode);
  111.      }
  112.  
  113.    Jumping or breaking out of the scope of the array name deallocates
  114. the storage.  Jumping into the scope is not allowed; you get an error
  115. message for it.
  116.  
  117.    You can use the function `alloca' to get an effect much like
  118. variable-length arrays.  The function `alloca' is available in many
  119. other C implementations (but not in all).  On the other hand,
  120. variable-length arrays are more elegant.
  121.  
  122.    There are other differences between these two methods.  Space
  123. allocated with `alloca' exists until the containing *function* returns.
  124. The space for a variable-length array is deallocated as soon as the
  125. array name's scope ends.  (If you use both variable-length arrays and
  126. `alloca' in the same function, deallocation of a variable-length array
  127. will also deallocate anything more recently allocated with `alloca'.)
  128.  
  129.    You can also use variable-length arrays as arguments to functions:
  130.  
  131.      struct entry
  132.      tester (int len, char data[len][len])
  133.      {
  134.        ...
  135.      }
  136.  
  137.    The length of an array is computed once when the storage is allocated
  138. and is remembered for the scope of the array in case you access it with
  139. `sizeof'.
  140.  
  141.    If you want to pass the array first and the length afterward, you can
  142. use a forward declaration in the parameter list--another GNU extension.
  143.  
  144.      struct entry
  145.      tester (int len; char data[len][len], int len)
  146.      {
  147.        ...
  148.      }
  149.  
  150.    The `int len' before the semicolon is a "parameter forward
  151. declaration", and it serves the purpose of making the name `len' known
  152. when the declaration of `data' is parsed.
  153.  
  154.    You can write any number of such parameter forward declarations in
  155. the parameter list.  They can be separated by commas or semicolons, but
  156. the last one must end with a semicolon, which is followed by the "real"
  157. parameter declarations.  Each forward declaration must match a "real"
  158. declaration in parameter name and data type.
  159.  
  160. File: gcc.info,  Node: Macro Varargs,  Next: Subscripting,  Prev: Variable Length,  Up: C Extensions
  161.  
  162. Macros with Variable Numbers of Arguments
  163. =========================================
  164.  
  165.    In GNU C, a macro can accept a variable number of arguments, much as
  166. a function can.  The syntax for defining the macro looks much like that
  167. used for a function.  Here is an example:
  168.  
  169.      #define eprintf(format, args...)  \
  170.       fprintf (stderr, format , ## args)
  171.  
  172.    Here `args' is a "rest argument": it takes in zero or more
  173. arguments, as many as the call contains.  All of them plus the commas
  174. between them form the value of `args', which is substituted into the
  175. macro body where `args' is used.  Thus, we have this expansion:
  176.  
  177.      eprintf ("%s:%d: ", input_file_name, line_number)
  178.      ==>
  179.      fprintf (stderr, "%s:%d: " , input_file_name, line_number)
  180.  
  181. Note that the comma after the string constant comes from the definition
  182. of `eprintf', whereas the last comma comes from the value of `args'.
  183.  
  184.    The reason for using `##' is to handle the case when `args' matches
  185. no arguments at all.  In this case, `args' has an empty value.  In this
  186. case, the second comma in the definition becomes an embarrassment: if
  187. it got through to the expansion of the macro, we would get something
  188. like this:
  189.  
  190.      fprintf (stderr, "success!\n" , )
  191.  
  192. which is invalid C syntax.  `##' gets rid of the comma, so we get the
  193. following instead:
  194.  
  195.      fprintf (stderr, "success!\n")
  196.  
  197.    This is a special feature of the GNU C preprocessor: `##' before a
  198. rest argument that is empty discards the preceding sequence of
  199. non-whitespace characters from the macro definition.  (If another macro
  200. argument precedes, none of it is discarded.)
  201.  
  202.    It might be better to discard the last preprocessor token instead of
  203. the last preceding sequence of non-whitespace characters; in fact, we
  204. may someday change this feature to do so.  We advise you to write the
  205. macro definition so that the preceding sequence of non-whitespace
  206. characters is just a single token, so that the meaning will not change
  207. if we change the definition of this feature.
  208.  
  209. File: gcc.info,  Node: Subscripting,  Next: Pointer Arith,  Prev: Macro Varargs,  Up: C Extensions
  210.  
  211. Non-Lvalue Arrays May Have Subscripts
  212. =====================================
  213.  
  214.    Subscripting is allowed on arrays that are not lvalues, even though
  215. the unary `&' operator is not.  For example, this is valid in GNU C
  216. though not valid in other C dialects:
  217.  
  218.      struct foo {int a[4];};
  219.      
  220.      struct foo f();
  221.      
  222.      bar (int index)
  223.      {
  224.        return f().a[index];
  225.      }
  226.  
  227. File: gcc.info,  Node: Pointer Arith,  Next: Initializers,  Prev: Subscripting,  Up: C Extensions
  228.  
  229. Arithmetic on `void'- and Function-Pointers
  230. ===========================================
  231.  
  232.    In GNU C, addition and subtraction operations are supported on
  233. pointers to `void' and on pointers to functions.  This is done by
  234. treating the size of a `void' or of a function as 1.
  235.  
  236.    A consequence of this is that `sizeof' is also allowed on `void' and
  237. on function types, and returns 1.
  238.  
  239.    The option `-Wpointer-arith' requests a warning if these extensions
  240. are used.
  241.  
  242. File: gcc.info,  Node: Initializers,  Next: Constructors,  Prev: Pointer Arith,  Up: C Extensions
  243.  
  244. Non-Constant Initializers
  245. =========================
  246.  
  247.    The elements of an aggregate initializer for an automatic variable
  248. are not required to be constant expressions in GNU C.  Here is an
  249. example of an initializer with run-time varying elements:
  250.  
  251.      foo (float f, float g)
  252.      {
  253.        float beat_freqs[2] = { f-g, f+g };
  254.        ...
  255.      }
  256.  
  257. File: gcc.info,  Node: Constructors,  Next: Labeled Elements,  Prev: Initializers,  Up: C Extensions
  258.  
  259. Constructor Expressions
  260. =======================
  261.  
  262.    GNU C supports constructor expressions.  A constructor looks like a
  263. cast containing an initializer.  Its value is an object of the type
  264. specified in the cast, containing the elements specified in the
  265. initializer.
  266.  
  267.    Usually, the specified type is a structure.  Assume that `struct
  268. foo' and `structure' are declared as shown:
  269.  
  270.      struct foo {int a; char b[2];} structure;
  271.  
  272. Here is an example of constructing a `struct foo' with a constructor:
  273.  
  274.      structure = ((struct foo) {x + y, 'a', 0});
  275.  
  276. This is equivalent to writing the following:
  277.  
  278.      {
  279.        struct foo temp = {x + y, 'a', 0};
  280.        structure = temp;
  281.      }
  282.  
  283.    You can also construct an array.  If all the elements of the
  284. constructor are (made up of) simple constant expressions, suitable for
  285. use in initializers, then the constructor is an lvalue and can be
  286. coerced to a pointer to its first element, as shown here:
  287.  
  288.      char **foo = (char *[]) { "x", "y", "z" };
  289.  
  290.    Array constructors whose elements are not simple constants are not
  291. very useful, because the constructor is not an lvalue.  There are only
  292. two valid ways to use it: to subscript it, or initialize an array
  293. variable with it.  The former is probably slower than a `switch'
  294. statement, while the latter does the same thing an ordinary C
  295. initializer would do.  Here is an example of subscripting an array
  296. constructor:
  297.  
  298.      output = ((int[]) { 2, x, 28 }) [input];
  299.  
  300.    Constructor expressions for scalar types and union types are is also
  301. allowed, but then the constructor expression is equivalent to a cast.
  302.  
  303. File: gcc.info,  Node: Labeled Elements,  Next: Cast to Union,  Prev: Constructors,  Up: C Extensions
  304.  
  305. Labeled Elements in Initializers
  306. ================================
  307.  
  308.    Standard C requires the elements of an initializer to appear in a
  309. fixed order, the same as the order of the elements in the array or
  310. structure being initialized.
  311.  
  312.    In GNU C you can give the elements in any order, specifying the array
  313. indices or structure field names they apply to.
  314.  
  315.    To specify an array index, write `[INDEX] =' before the element
  316. value.  For example,
  317.  
  318.      int a[6] = { [4] = 29, [2] = 15 };
  319.  
  320. is equivalent to
  321.  
  322.      int a[6] = { 0, 0, 15, 0, 29, 0 };
  323.  
  324. The index values must be constant expressions, even if the array being
  325. initialized is automatic.
  326.  
  327.    In a structure initializer, specify the name of a field to initialize
  328. with `FIELDNAME:' before the element value.  For example, given the
  329. following structure,
  330.  
  331.      struct point { int x, y; };
  332.  
  333. the following initialization
  334.  
  335.      struct point p = { y: yvalue, x: xvalue };
  336.  
  337. is equivalent to
  338.  
  339.      struct point p = { xvalue, yvalue };
  340.  
  341.    Another syntax which has the same meaning is `.FIELDNAME ='., as
  342. shown here:
  343.  
  344.      struct point p = { .y = yvalue, .x = xvalue };
  345.  
  346.    You can also use an element label (with either the colon syntax or
  347. the period-equal syntax) when initializing a union, to specify which
  348. element of the union should be used.  For example,
  349.  
  350.      union foo { int i; double d; };
  351.      
  352.      union foo f = { d: 4 };
  353.  
  354. will convert 4 to a `double' to store it in the union using the second
  355. element.  By contrast, casting 4 to type `union foo' would store it
  356. into the union as the integer `i', since it is an integer.  (*Note Cast
  357. to Union::.)
  358.  
  359.    You can combine this technique of naming elements with ordinary C
  360. initialization of successive elements.  Each initializer element that
  361. does not have a label applies to the next consecutive element of the
  362. array or structure.  For example,
  363.  
  364.      int a[6] = { [1] = v1, v2, [4] = v4 };
  365.  
  366. is equivalent to
  367.  
  368.      int a[6] = { 0, v1, v2, 0, v4, 0 };
  369.  
  370.    Labeling the elements of an array initializer is especially useful
  371. when the indices are characters or belong to an `enum' type.  For
  372. example:
  373.  
  374.      int whitespace[256]
  375.        = { [' '] = 1, ['\t'] = 1, ['\h'] = 1,
  376.            ['\f'] = 1, ['\n'] = 1, ['\r'] = 1 };
  377.  
  378. File: gcc.info,  Node: Case Ranges,  Next: Function Attributes,  Prev: Cast to Union,  Up: C Extensions
  379.  
  380. Case Ranges
  381. ===========
  382.  
  383.    You can specify a range of consecutive values in a single `case'
  384. label, like this:
  385.  
  386.      case LOW ... HIGH:
  387.  
  388. This has the same effect as the proper number of individual `case'
  389. labels, one for each integer value from LOW to HIGH, inclusive.
  390.  
  391.    This feature is especially useful for ranges of ASCII character
  392. codes:
  393.  
  394.      case 'A' ... 'Z':
  395.  
  396.    *Be careful:* Write spaces around the `...', for otherwise it may be
  397. parsed wrong when you use it with integer values.  For example, write
  398. this:
  399.  
  400.      case 1 ... 5:
  401.  
  402. rather than this:
  403.  
  404.      case 1...5:
  405.  
  406.      *Warning to C++ users:* When compiling C++, you must write two dots
  407.      `..' rather than three to specify a range in case statements, thus:
  408.  
  409.           case 'A' .. 'Z':
  410.  
  411.      This is an anachronism in the GNU C++ front end, and will be
  412.      rectified in a future release.
  413.  
  414. File: gcc.info,  Node: Cast to Union,  Next: Case Ranges,  Prev: Labeled Elements,  Up: C Extensions
  415.  
  416. Cast to a Union Type
  417. ====================
  418.  
  419.    A cast to union type is similar to other casts, except that the type
  420. specified is a union type.  You can specify the type either with `union
  421. TAG' or with a typedef name.  A cast to union is actually a constructor
  422. though, not a cast, and hence does not yield an lvalue like normal
  423. casts.  (*Note Constructors::.)
  424.  
  425.    The types that may be cast to the union type are those of the members
  426. of the union.  Thus, given the following union and variables:
  427.  
  428.      union foo { int i; double d; };
  429.      int x;
  430.      double y;
  431.  
  432. both `x' and `y' can be cast to type `union' foo.
  433.  
  434.    Using the cast as the right-hand side of an assignment to a variable
  435. of union type is equivalent to storing in a member of the union:
  436.  
  437.      union foo u;
  438.      ...
  439.      u = (union foo) x  ==  u.i = x
  440.      u = (union foo) y  ==  u.d = y
  441.  
  442.    You can also use the union cast as a function argument:
  443.  
  444.      void hack (union foo);
  445.      ...
  446.      hack ((union foo) x);
  447.  
  448. File: gcc.info,  Node: Function Attributes,  Next: Function Prototypes,  Prev: Case Ranges,  Up: C Extensions
  449.  
  450. Declaring Attributes of Functions
  451. =================================
  452.  
  453.    In GNU C, you declare certain things about functions called in your
  454. program which help the compiler optimize function calls and check your
  455. code more carefully.
  456.  
  457.    The keyword `__attribute__' allows you to specify special attributes
  458. when making a declaration.  This keyword is followed by an attribute
  459. specification inside double parentheses.  Three attributes, `noreturn',
  460. `const' and `format', are currently defined for functions.  Others are
  461. implemented for variables and structure fields (*note Variable
  462. Attributes::.).
  463.  
  464. `noreturn'
  465.      A few standard library functions, such as `abort' and `exit',
  466.      cannot return.  GNU CC knows this automatically.  Some programs
  467.      define their own functions that never return.  You can declare them
  468.      `noreturn' to tell the compiler this fact.  For example,
  469.  
  470.           void fatal () __attribute__ ((noreturn));
  471.           
  472.           void
  473.           fatal (...)
  474.           {
  475.             ... /* Print error message. */ ...
  476.             exit (1);
  477.           }
  478.  
  479.      The `noreturn' keyword tells the compiler to assume that `fatal'
  480.      cannot return.  It can then optimize without regard to what would
  481.      happen if `fatal' ever did return.  This makes slightly better
  482.      code.  More importantly, it helps avoid spurious warnings of
  483.      uninitialized variables.
  484.  
  485.      Do not assume that registers saved by the calling function are
  486.      restored before calling the `noreturn' function.
  487.  
  488.      It does not make sense for a `noreturn' function to have a return
  489.      type other than `void'.
  490.  
  491.      The attribute `noreturn' is not implemented in GNU C versions
  492.      earlier than 2.5.  An alternative way to declare that a function
  493.      does not return, which works in the current version and in some
  494.      older versions, is as follows:
  495.  
  496.           typedef void voidfn ();
  497.           
  498.           volatile voidfn fatal;
  499.  
  500. `const'
  501.      Many functions do not examine any values except their arguments,
  502.      and have no effects except the return value.  Such a function can
  503.      be subject to common subexpression elimination and loop
  504.      optimization just as an arithmetic operator would be.  These
  505.      functions should be declared with the attribute `const'.  For
  506.      example,
  507.  
  508.           int square (int) __attribute__ ((const));
  509.  
  510.      says that the hypothetical function `square' is safe to call fewer
  511.      times than the program says.
  512.  
  513.      The attribute `const' is not implemented in GNU C versions earlier
  514.      than 2.5.  An alternative way to declare that a function has no
  515.      side effects, which works in the current version and in some older
  516.      versions, is as follows:
  517.  
  518.           typedef int intfn ();
  519.           
  520.           extern const intfn square;
  521.  
  522.      Note that a function that has pointer arguments and examines the
  523.      data pointed to must *not* be declared `const'.  Likewise, a
  524.      function that calls a non-`const' function usually must not be
  525.      `const'.  It does not make sense for a `const' function to return
  526.      `void'.
  527.  
  528. `format (ARCHETYPE, STRING-INDEX, FIRST-TO-CHECK)'
  529.      The `format' attribute specifies that a function takes `printf' or
  530.      `scanf' style arguments which should be type-checked against a
  531.      format string.  For example, the declaration:
  532.  
  533.           extern int
  534.           my_printf (void *my_object, const char *my_format, ...)
  535.                 __attribute__ ((format (printf, 2, 3)));
  536.  
  537.      causes the compiler to check the arguments in calls to `my_printf'
  538.      for consistency with the `printf' style format string argument
  539.      `my_format'.
  540.  
  541.      The parameter ARCHETYPE determines how the format string is
  542.      interpreted, and should be either `printf' or `scanf'.  The
  543.      parameter STRING-INDEX specifies which argument is the format
  544.      string argument (starting from 1), while FIRST-TO-CHECK is the
  545.      number of the first argument to check against the format string.
  546.      For functions where the arguments are not available to be checked
  547.      (such as `vprintf'), specify the third parameter as zero.  In this
  548.      case the compiler only checks the format string for consistency.
  549.  
  550.      In the example above, the format string (`my_format') is the second
  551.      argument of the function `my_print', and the arguments to check
  552.      start with the third argument, so the correct parameters for the
  553.      format attribute are 2 and 3.
  554.  
  555.      The `format' attribute allows you to identify your own functions
  556.      which take format strings as arguments, so that GNU CC can check
  557.      the calls to these functions for errors.  The compiler always
  558.      checks formats for the ANSI library functions `printf', `fprintf',
  559.      `sprintf', `scanf', `fscanf', `sscanf', `vprintf', `vfprintf' and
  560.      `vsprintf' whenever such warnings are requested (using
  561.      `-Wformat'), so there is no need to modify the header file
  562.      `stdio.h'.
  563.  
  564.    You can specify multiple attributes in a declaration by separating
  565. them by commas within the double parentheses.  Currently it is never
  566. useful to do this for a function, but it can be useful for a variable.
  567.  
  568.    Some people object to the `__attribute__' feature, suggesting that
  569. ANSI C's `#pragma' should be used instead.  There are two reasons for
  570. not doing this.
  571.  
  572.   1. It is impossible to generate `#pragma' commands from a macro.
  573.  
  574.   2. There is no telling what the same `#pragma' might mean in another
  575.      compiler.
  576.  
  577.    These two reasons apply to almost any application that might be
  578. proposed for `#pragma'.  It is basically a mistake to use `#pragma' for
  579. *anything*.
  580.  
  581. File: gcc.info,  Node: Function Prototypes,  Next: Dollar Signs,  Prev: Function Attributes,  Up: C Extensions
  582.  
  583. Prototypes and Old-Style Function Definitions
  584. =============================================
  585.  
  586.    GNU C extends ANSI C to allow a function prototype to override a
  587. later old-style non-prototype definition.  Consider the following
  588. example:
  589.  
  590.      /* Use prototypes unless the compiler is old-fashioned.  */
  591.      #if __STDC__
  592.      #define P(x) x
  593.      #else
  594.      #define P(x) ()
  595.      #endif
  596.      
  597.      /* Prototype function declaration.  */
  598.      int isroot P((uid_t));
  599.      
  600.      /* Old-style function definition.  */
  601.      int
  602.      isroot (x)   /* ??? lossage here ??? */
  603.           uid_t x;
  604.      {
  605.        return x == 0;
  606.      }
  607.  
  608.    Suppose the type `uid_t' happens to be `short'.  ANSI C does not
  609. allow this example, because subword arguments in old-style
  610. non-prototype definitions are promoted.  Therefore in this example the
  611. function definition's argument is really an `int', which does not match
  612. the prototype argument type of `short'.
  613.  
  614.    This restriction of ANSI C makes it hard to write code that is
  615. portable to traditional C compilers, because the programmer does not
  616. know whether the `uid_t' type is `short', `int', or `long'.  Therefore,
  617. in cases like these GNU C allows a prototype to override a later
  618. old-style definition.  More precisely, in GNU C, a function prototype
  619. argument type overrides the argument type specified by a later
  620. old-style definition if the former type is the same as the latter type
  621. before promotion.  Thus in GNU C the above example is equivalent to the
  622. following:
  623.  
  624.      int isroot (uid_t);
  625.      
  626.      int
  627.      isroot (uid_t x)
  628.      {
  629.        return x == 0;
  630.      }
  631.  
  632. File: gcc.info,  Node: Dollar Signs,  Next: Character Escapes,  Prev: Function Prototypes,  Up: C Extensions
  633.  
  634. Dollar Signs in Identifier Names
  635. ================================
  636.  
  637.    In GNU C, you may use dollar signs in identifier names.  This is
  638. because many traditional C implementations allow such identifiers.
  639.  
  640.    On some machines, dollar signs are allowed in identifiers if you
  641. specify `-traditional'.  On a few systems they are allowed by default,
  642. even if you do not use `-traditional'.  But they are never allowed if
  643. you specify `-ansi'.
  644.  
  645.    There are certain ANSI C programs (obscure, to be sure) that would
  646. compile incorrectly if dollar signs were permitted in identifiers.  For
  647. example:
  648.  
  649.      #define foo(a) #a
  650.      #define lose(b) foo (b)
  651.      #define test$
  652.      lose (test)
  653.  
  654. File: gcc.info,  Node: Character Escapes,  Next: Variable Attributes,  Prev: Dollar Signs,  Up: C Extensions
  655.  
  656. The Character ESC in Constants
  657. ==============================
  658.  
  659.    You can use the sequence `\e' in a string or character constant to
  660. stand for the ASCII character ESC.
  661.  
  662. File: gcc.info,  Node: Alignment,  Next: Inline,  Prev: Variable Attributes,  Up: C Extensions
  663.  
  664. Inquiring on Alignment of Types or Variables
  665. ============================================
  666.  
  667.    The keyword `__alignof__' allows you to inquire about how an object
  668. is aligned, or the minimum alignment usually required by a type.  Its
  669. syntax is just like `sizeof'.
  670.  
  671.    For example, if the target machine requires a `double' value to be
  672. aligned on an 8-byte boundary, then `__alignof__ (double)' is 8.  This
  673. is true on many RISC machines.  On more traditional machine designs,
  674. `__alignof__ (double)' is 4 or even 2.
  675.  
  676.    Some machines never actually require alignment; they allow reference
  677. to any data type even at an odd addresses.  For these machines,
  678. `__alignof__' reports the *recommended* alignment of a type.
  679.  
  680.    When the operand of `__alignof__' is an lvalue rather than a type,
  681. the value is the largest alignment that the lvalue is known to have.
  682. It may have this alignment as a result of its data type, or because it
  683. is part of a structure and inherits alignment from that structure.  For
  684. example, after this declaration:
  685.  
  686.      struct foo { int x; char y; } foo1;
  687.  
  688. the value of `__alignof__ (foo1.y)' is probably 2 or 4, the same as
  689. `__alignof__ (int)', even though the data type of `foo1.y' does not
  690. itself demand any alignment.
  691.  
  692.    A related feature which lets you specify the alignment of an object
  693. is `__attribute__ ((aligned (ALIGNMENT)))'; see the following section.
  694.  
  695. File: gcc.info,  Node: Variable Attributes,  Next: Alignment,  Prev: Character Escapes,  Up: C Extensions
  696.  
  697. Specifying Attributes of Variables
  698. ==================================
  699.  
  700.    The keyword `__attribute__' allows you to specify special attributes
  701. of variables or structure fields.  This keyword is followed by an
  702. attribute specification inside double parentheses.  Four attributes are
  703. currently defined: `aligned', `format', `mode' and `packed'.  `format'
  704. is used for functions, and thus not documented here; see *Note Function
  705. Attributes::.
  706.  
  707. `aligned (ALIGNMENT)'
  708.      This attribute specifies a minimum alignment for the variable or
  709.      structure field, measured in bytes.  For example, the declaration:
  710.  
  711.           int x __attribute__ ((aligned (16))) = 0;
  712.  
  713.      causes the compiler to allocate the global variable `x' on a
  714.      16-byte boundary.  On a 68040, this could be used in conjunction
  715.      with an `asm' expression to access the `move16' instruction which
  716.      requires 16-byte aligned operands.
  717.  
  718.      You can also specify the alignment of structure fields.  For
  719.      example, to create a double-word aligned `int' pair, you could
  720.      write:
  721.  
  722.           struct foo { int x[2] __attribute__ ((aligned (8))); };
  723.  
  724.      This is an alternative to creating a union with a `double' member
  725.      that forces the union to be double-word aligned.
  726.  
  727.      It is not possible to specify the alignment of functions; the
  728.      alignment of functions is determined by the machine's requirements
  729.      and cannot be changed.  You cannot specify alignment for a typedef
  730.      name because such a name is just an alias, not a distinct type.
  731.  
  732.      The `aligned' attribute can only increase the alignment; but you
  733.      can decrease it by specifying `packed' as well.  See below.
  734.  
  735.      The linker of your operating system imposes a maximum alignment.
  736.      If the linker aligns each object file on a four byte boundary,
  737.      then it is beyond the compiler's power to cause anything to be
  738.      aligned to a larger boundary than that.  For example, if  the
  739.      linker happens to put this object file at address 136 (eight more
  740.      than a multiple of 64), then the compiler cannot guarantee an
  741.      alignment of more than 8 just by aligning variables in the object
  742.      file.
  743.  
  744. `mode (MODE)'
  745.      This attribute specifies the data type for the
  746.      declaration--whichever type corresponds to the mode MODE.  This in
  747.      effect lets you request an integer or floating point type
  748.      according to its width.
  749.  
  750. `packed'
  751.      The `packed' attribute specifies that a variable or structure field
  752.      should have the smallest possible alignment--one byte for a
  753.      variable, and one bit for a field, unless you specify a larger
  754.      value with the `aligned' attribute.
  755.  
  756.    To specify multiple attributes, separate them by commas within the
  757. double parentheses: for example, `__attribute__ ((aligned (16),
  758. packed))'.
  759.  
  760. File: gcc.info,  Node: Inline,  Next: Extended Asm,  Prev: Alignment,  Up: C Extensions
  761.  
  762. An Inline Function is As Fast As a Macro
  763. ========================================
  764.  
  765.    By declaring a function `inline', you can direct GNU CC to integrate
  766. that function's code into the code for its callers.  This makes
  767. execution faster by eliminating the function-call overhead; in
  768. addition, if any of the actual argument values are constant, their known
  769. values may permit simplifications at compile time so that not all of the
  770. inline function's code needs to be included.  The effect on code size is
  771. less predictable; object code may be larger or smaller with function
  772. inlining, depending on the particular case.  Inlining of functions is an
  773. optimization and it really "works" only in optimizing compilation.  If
  774. you don't use `-O', no function is really inline.
  775.  
  776.    To declare a function inline, use the `inline' keyword in its
  777. declaration, like this:
  778.  
  779.      inline int
  780.      inc (int *a)
  781.      {
  782.        (*a)++;
  783.      }
  784.  
  785.    (If you are writing a header file to be included in ANSI C programs,
  786. write `__inline__' instead of `inline'.  *Note Alternate Keywords::.)
  787.  
  788.    You can also make all "simple enough" functions inline with the
  789. option `-finline-functions'.  Note that certain usages in a function
  790. definition can make it unsuitable for inline substitution.
  791.  
  792.    For C++ programs, GNU CC automatically inlines member functions even
  793. if they are not explicitly declared `inline'.  (You can override this
  794. with `-fno-default-inline'; *note Options Controlling C++ Dialect: C++
  795. Dialect Options..)
  796.  
  797.    When a function is both inline and `static', if all calls to the
  798. function are integrated into the caller, and the function's address is
  799. never used, then the function's own assembler code is never referenced.
  800. In this case, GNU CC does not actually output assembler code for the
  801. function, unless you specify the option `-fkeep-inline-functions'.
  802. Some calls cannot be integrated for various reasons (in particular,
  803. calls that precede the function's definition cannot be integrated, and
  804. neither can recursive calls within the definition).  If there is a
  805. nonintegrated call, then the function is compiled to assembler code as
  806. usual.  The function must also be compiled as usual if the program
  807. refers to its address, because that can't be inlined.
  808.  
  809.    When an inline function is not `static', then the compiler must
  810. assume that there may be calls from other source files; since a global
  811. symbol can be defined only once in any program, the function must not
  812. be defined in the other source files, so the calls therein cannot be
  813. integrated.  Therefore, a non-`static' inline function is always
  814. compiled on its own in the usual fashion.
  815.  
  816.    If you specify both `inline' and `extern' in the function
  817. definition, then the definition is used only for inlining.  In no case
  818. is the function compiled on its own, not even if you refer to its
  819. address explicitly.  Such an address becomes an external reference, as
  820. if you had only declared the function, and had not defined it.
  821.  
  822.    This combination of `inline' and `extern' has almost the effect of a
  823. macro.  The way to use it is to put a function definition in a header
  824. file with these keywords, and put another copy of the definition
  825. (lacking `inline' and `extern') in a library file.  The definition in
  826. the header file will cause most calls to the function to be inlined.
  827. If any uses of the function remain, they will refer to the single copy
  828. in the library.
  829.  
  830.    GNU C does not inline any functions when not optimizing.  It is not
  831. clear whether it is better to inline or not, in this case, but we found
  832. that a correct implementation when not optimizing was difficult.  So we
  833. did the easy thing, and turned it off.
  834.  
  835. File: gcc.info,  Node: Extended Asm,  Next: Asm Labels,  Prev: Inline,  Up: C Extensions
  836.  
  837. Assembler Instructions with C Expression Operands
  838. =================================================
  839.  
  840.    In an assembler instruction using `asm', you can now specify the
  841. operands of the instruction using C expressions.  This means no more
  842. guessing which registers or memory locations will contain the data you
  843. want to use.
  844.  
  845.    You must specify an assembler instruction template much like what
  846. appears in a machine description, plus an operand constraint string for
  847. each operand.
  848.  
  849.    For example, here is how to use the 68881's `fsinx' instruction:
  850.  
  851.      asm ("fsinx %1,%0" : "=f" (result) : "f" (angle));
  852.  
  853. Here `angle' is the C expression for the input operand while `result'
  854. is that of the output operand.  Each has `"f"' as its operand
  855. constraint, saying that a floating point register is required.  The `='
  856. in `=f' indicates that the operand is an output; all output operands'
  857. constraints must use `='.  The constraints use the same language used
  858. in the machine description (*note Constraints::.).
  859.  
  860.    Each operand is described by an operand-constraint string followed
  861. by the C expression in parentheses.  A colon separates the assembler
  862. template from the first output operand, and another separates the last
  863. output operand from the first input, if any.  Commas separate output
  864. operands and separate inputs.  The total number of operands is limited
  865. to ten or to the maximum number of operands in any instruction pattern
  866. in the machine description, whichever is greater.
  867.  
  868.    If there are no output operands, and there are input operands, then
  869. there must be two consecutive colons surrounding the place where the
  870. output operands would go.
  871.  
  872.    Output operand expressions must be lvalues; the compiler can check
  873. this.  The input operands need not be lvalues.  The compiler cannot
  874. check whether the operands have data types that are reasonable for the
  875. instruction being executed.  It does not parse the assembler
  876. instruction template and does not know what it means, or whether it is
  877. valid assembler input.  The extended `asm' feature is most often used
  878. for machine instructions that the compiler itself does not know exist.
  879.  
  880.    The output operands must be write-only; GNU CC will assume that the
  881. values in these operands before the instruction are dead and need not be
  882. generated.  Extended asm does not support input-output or read-write
  883. operands.  For this reason, the constraint character `+', which
  884. indicates such an operand, may not be used.
  885.  
  886.    When the assembler instruction has a read-write operand, or an
  887. operand in which only some of the bits are to be changed, you must
  888. logically split its function into two separate operands, one input
  889. operand and one write-only output operand.  The connection between them
  890. is expressed by constraints which say they need to be in the same
  891. location when the instruction executes.  You can use the same C
  892. expression for both operands, or different expressions.  For example,
  893. here we write the (fictitious) `combine' instruction with `bar' as its
  894. read-only source operand and `foo' as its read-write destination:
  895.  
  896.      asm ("combine %2,%0" : "=r" (foo) : "0" (foo), "g" (bar));
  897.  
  898. The constraint `"0"' for operand 1 says that it must occupy the same
  899. location as operand 0.  A digit in constraint is allowed only in an
  900. input operand, and it must refer to an output operand.
  901.  
  902.    Only a digit in the constraint can guarantee that one operand will
  903. be in the same place as another.  The mere fact that `foo' is the value
  904. of both operands is not enough to guarantee that they will be in the
  905. same place in the generated assembler code.  The following would not
  906. work:
  907.  
  908.      asm ("combine %2,%0" : "=r" (foo) : "r" (foo), "g" (bar));
  909.  
  910.    Various optimizations or reloading could cause operands 0 and 1 to
  911. be in different registers; GNU CC knows no reason not to do so.  For
  912. example, the compiler might find a copy of the value of `foo' in one
  913. register and use it for operand 1, but generate the output operand 0 in
  914. a different register (copying it afterward to `foo''s own address).  Of
  915. course, since the register for operand 1 is not even mentioned in the
  916. assembler code, the result will not work, but GNU CC can't tell that.
  917.  
  918.    Some instructions clobber specific hard registers.  To describe
  919. this, write a third colon after the input operands, followed by the
  920. names of the clobbered hard registers (given as strings).  Here is a
  921. realistic example for the Vax:
  922.  
  923.      asm volatile ("movc3 %0,%1,%2"
  924.                    : /* no outputs */
  925.                    : "g" (from), "g" (to), "g" (count)
  926.                    : "r0", "r1", "r2", "r3", "r4", "r5");
  927.  
  928.    If you refer to a particular hardware register from the assembler
  929. code, then you will probably have to list the register after the third
  930. colon to tell the compiler that the register's value is modified.  In
  931. many assemblers, the register names begin with `%'; to produce one `%'
  932. in the assembler code, you must write `%%' in the input.
  933.  
  934.    If your assembler instruction can alter the condition code register,
  935. add `cc' to the list of clobbered registers.  GNU CC on some machines
  936. represents the condition codes as a specific hardware register; `cc'
  937. serves to name this register.  On other machines, the condition code is
  938. handled differently, and specifying `cc' has no effect.  But it is
  939. valid no matter what the machine.
  940.  
  941.    If your assembler instruction modifies memory in an unpredictable
  942. fashion, add `memory' to the list of clobbered registers.  This will
  943. cause GNU CC to not keep memory values cached in registers across the
  944. assembler instruction.
  945.  
  946.    You can put multiple assembler instructions together in a single
  947. `asm' template, separated either with newlines (written as `\n') or with
  948. semicolons if the assembler allows such semicolons.  The GNU assembler
  949. allows semicolons and all Unix assemblers seem to do so.  The input
  950. operands are guaranteed not to use any of the clobbered registers, and
  951. neither will the output operands' addresses, so you can read and write
  952. the clobbered registers as many times as you like.  Here is an example
  953. of multiple instructions in a template; it assumes that the subroutine
  954. `_foo' accepts arguments in registers 9 and 10:
  955.  
  956.      asm ("movl %0,r9;movl %1,r10;call _foo"
  957.           : /* no outputs */
  958.           : "g" (from), "g" (to)
  959.           : "r9", "r10");
  960.  
  961.    Unless an output operand has the `&' constraint modifier, GNU CC may
  962. allocate it in the same register as an unrelated input operand, on the
  963. assumption that the inputs are consumed before the outputs are produced.
  964. This assumption may be false if the assembler code actually consists of
  965. more than one instruction.  In such a case, use `&' for each output
  966. operand that may not overlap an input.  *Note Modifiers::.
  967.  
  968.    If you want to test the condition code produced by an assembler
  969. instruction, you must include a branch and a label in the `asm'
  970. construct, as follows:
  971.  
  972.      asm ("clr %0;frob %1;beq 0f;mov #1,%0;0:"
  973.           : "g" (result)
  974.           : "g" (input));
  975.  
  976. This assumes your assembler supports local labels, as the GNU assembler
  977. and most Unix assemblers do.
  978.  
  979.    Speaking of labels, jumps from one `asm' to another are not
  980. supported.  The compiler's optimizers do not know about these jumps,
  981. and therefore they cannot take account of them when deciding how to
  982. optimize.
  983.  
  984.    Usually the most convenient way to use these `asm' instructions is to
  985. encapsulate them in macros that look like functions.  For example,
  986.  
  987.      #define sin(x)       \
  988.      ({ double __value, __arg = (x);   \
  989.         asm ("fsinx %1,%0": "=f" (__value): "f" (__arg));  \
  990.         __value; })
  991.  
  992. Here the variable `__arg' is used to make sure that the instruction
  993. operates on a proper `double' value, and to accept only those arguments
  994. `x' which can convert automatically to a `double'.
  995.  
  996.    Another way to make sure the instruction operates on the correct
  997. data type is to use a cast in the `asm'.  This is different from using a
  998. variable `__arg' in that it converts more different types.  For
  999. example, if the desired type were `int', casting the argument to `int'
  1000. would accept a pointer with no complaint, while assigning the argument
  1001. to an `int' variable named `__arg' would warn about using a pointer
  1002. unless the caller explicitly casts it.
  1003.  
  1004.    If an `asm' has output operands, GNU CC assumes for optimization
  1005. purposes that the instruction has no side effects except to change the
  1006. output operands.  This does not mean that instructions with a side
  1007. effect cannot be used, but you must be careful, because the compiler
  1008. may eliminate them if the output operands aren't used, or move them out
  1009. of loops, or replace two with one if they constitute a common
  1010. subexpression.  Also, if your instruction does have a side effect on a
  1011. variable that otherwise appears not to change, the old value of the
  1012. variable may be reused later if it happens to be found in a register.
  1013.  
  1014.    You can prevent an `asm' instruction from being deleted, moved
  1015. significantly, or combined, by writing the keyword `volatile' after the
  1016. `asm'.  For example:
  1017.  
  1018.      #define set_priority(x)  \
  1019.      asm volatile ("set_priority %0": /* no outputs */ : "g" (x))
  1020.  
  1021. An instruction without output operands will not be deleted or moved
  1022. significantly, regardless, unless it is unreachable.
  1023.  
  1024.    Note that even a volatile `asm' instruction can be moved in ways
  1025. that appear insignificant to the compiler, such as across jump
  1026. instructions.  You can't expect a sequence of volatile `asm'
  1027. instructions to remain perfectly consecutive.  If you want consecutive
  1028. output, use a single `asm'.
  1029.  
  1030.    It is a natural idea to look for a way to give access to the
  1031. condition code left by the assembler instruction.  However, when we
  1032. attempted to implement this, we found no way to make it work reliably.
  1033. The problem is that output operands might need reloading, which would
  1034. result in additional following "store" instructions.  On most machines,
  1035. these instructions would alter the condition code before there was time
  1036. to test it.  This problem doesn't arise for ordinary "test" and
  1037. "compare" instructions because they don't have any output operands.
  1038.  
  1039.    If you are writing a header file that should be includable in ANSI C
  1040. programs, write `__asm__' instead of `asm'.  *Note Alternate Keywords::.
  1041.  
  1042. File: gcc.info,  Node: Asm Labels,  Next: Explicit Reg Vars,  Prev: Extended Asm,  Up: C Extensions
  1043.  
  1044. Controlling Names Used in Assembler Code
  1045. ========================================
  1046.  
  1047.    You can specify the name to be used in the assembler code for a C
  1048. function or variable by writing the `asm' (or `__asm__') keyword after
  1049. the declarator as follows:
  1050.  
  1051.      int foo asm ("myfoo") = 2;
  1052.  
  1053. This specifies that the name to be used for the variable `foo' in the
  1054. assembler code should be `myfoo' rather than the usual `_foo'.
  1055.  
  1056.    On systems where an underscore is normally prepended to the name of
  1057. a C function or variable, this feature allows you to define names for
  1058. the linker that do not start with an underscore.
  1059.  
  1060.    You cannot use `asm' in this way in a function *definition*; but you
  1061. can get the same effect by writing a declaration for the function
  1062. before its definition and putting `asm' there, like this:
  1063.  
  1064.      extern func () asm ("FUNC");
  1065.      
  1066.      func (x, y)
  1067.           int x, y;
  1068.      ...
  1069.  
  1070.    It is up to you to make sure that the assembler names you choose do
  1071. not conflict with any other assembler symbols.  Also, you must not use a
  1072. register name; that would produce completely invalid assembler code.
  1073. GNU CC does not as yet have the ability to store static variables in
  1074. registers.  Perhaps that will be added.
  1075.  
  1076. File: gcc.info,  Node: Explicit Reg Vars,  Next: Alternate Keywords,  Prev: Asm Labels,  Up: C Extensions
  1077.  
  1078. Variables in Specified Registers
  1079. ================================
  1080.  
  1081.    GNU C allows you to put a few global variables into specified
  1082. hardware registers.  You can also specify the register in which an
  1083. ordinary register variable should be allocated.
  1084.  
  1085.    * Global register variables reserve registers throughout the program.
  1086.      This may be useful in programs such as programming language
  1087.      interpreters which have a couple of global variables that are
  1088.      accessed very often.
  1089.  
  1090.    * Local register variables in specific registers do not reserve the
  1091.      registers.  The compiler's data flow analysis is capable of
  1092.      determining where the specified registers contain live values, and
  1093.      where they are available for other uses.
  1094.  
  1095.      These local variables are sometimes convenient for use with the
  1096.      extended `asm' feature (*note Extended Asm::.), if you want to
  1097.      write one output of the assembler instruction directly into a
  1098.      particular register.  (This will work provided the register you
  1099.      specify fits the constraints specified for that operand in the
  1100.      `asm'.)
  1101.  
  1102. * Menu:
  1103.  
  1104. * Global Reg Vars::
  1105. * Local Reg Vars::
  1106.  
  1107. File: gcc.info,  Node: Global Reg Vars,  Next: Local Reg Vars,  Up: Explicit Reg Vars
  1108.  
  1109. Defining Global Register Variables
  1110. ----------------------------------
  1111.  
  1112.    You can define a global register variable in GNU C like this:
  1113.  
  1114.      register int *foo asm ("a5");
  1115.  
  1116. Here `a5' is the name of the register which should be used.  Choose a
  1117. register which is normally saved and restored by function calls on your
  1118. machine, so that library routines will not clobber it.
  1119.  
  1120.    Naturally the register name is cpu-dependent, so you would need to
  1121. conditionalize your program according to cpu type.  The register `a5'
  1122. would be a good choice on a 68000 for a variable of pointer type.  On
  1123. machines with register windows, be sure to choose a "global" register
  1124. that is not affected magically by the function call mechanism.
  1125.  
  1126.    In addition, operating systems on one type of cpu may differ in how
  1127. they name the registers; then you would need additional conditionals.
  1128. For example, some 68000 operating systems call this register `%a5'.
  1129.  
  1130.    Eventually there may be a way of asking the compiler to choose a
  1131. register automatically, but first we need to figure out how it should
  1132. choose and how to enable you to guide the choice.  No solution is
  1133. evident.
  1134.  
  1135.    Defining a global register variable in a certain register reserves
  1136. that register entirely for this use, at least within the current
  1137. compilation.  The register will not be allocated for any other purpose
  1138. in the functions in the current compilation.  The register will not be
  1139. saved and restored by these functions.  Stores into this register are
  1140. never deleted even if they would appear to be dead, but references may
  1141. be deleted or moved or simplified.
  1142.  
  1143.    It is not safe to access the global register variables from signal
  1144. handlers, or from more than one thread of control, because the system
  1145. library routines may temporarily use the register for other things
  1146. (unless you recompile them specially for the task at hand).
  1147.  
  1148.    It is not safe for one function that uses a global register variable
  1149. to call another such function `foo' by way of a third function `lose'
  1150. that was compiled without knowledge of this variable (i.e. in a
  1151. different source file in which the variable wasn't declared).  This is
  1152. because `lose' might save the register and put some other value there.
  1153. For example, you can't expect a global register variable to be
  1154. available in the comparison-function that you pass to `qsort', since
  1155. `qsort' might have put something else in that register.  (If you are
  1156. prepared to recompile `qsort' with the same global register variable,
  1157. you can solve this problem.)
  1158.  
  1159.    If you want to recompile `qsort' or other source files which do not
  1160. actually use your global register variable, so that they will not use
  1161. that register for any other purpose, then it suffices to specify the
  1162. compiler option `-ffixed-REG'.  You need not actually add a global
  1163. register declaration to their source code.
  1164.  
  1165.    A function which can alter the value of a global register variable
  1166. cannot safely be called from a function compiled without this variable,
  1167. because it could clobber the value the caller expects to find there on
  1168. return.  Therefore, the function which is the entry point into the part
  1169. of the program that uses the global register variable must explicitly
  1170. save and restore the value which belongs to its caller.
  1171.  
  1172.    On most machines, `longjmp' will restore to each global register
  1173. variable the value it had at the time of the `setjmp'.  On some
  1174. machines, however, `longjmp' will not change the value of global
  1175. register variables.  To be portable, the function that called `setjmp'
  1176. should make other arrangements to save the values of the global register
  1177. variables, and to restore them in a `longjmp'.  This way, the same
  1178. thing will happen regardless of what `longjmp' does.
  1179.  
  1180.    All global register variable declarations must precede all function
  1181. definitions.  If such a declaration could appear after function
  1182. definitions, the declaration would be too late to prevent the register
  1183. from being used for other purposes in the preceding functions.
  1184.  
  1185.    Global register variables may not have initial values, because an
  1186. executable file has no means to supply initial contents for a register.
  1187.  
  1188.    On the Sparc, there are reports that g3 ... g7 are suitable
  1189. registers, but certain library functions, such as `getwd', as well as
  1190. the subroutines for division and remainder, modify g3 and g4.  g1 and
  1191. g2 are local temporaries.
  1192.  
  1193.    On the 68000, a2 ... a5 should be suitable, as should d2 ... d7.  Of
  1194. course, it will not do to use more than a few of those.
  1195.  
  1196.