home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / language / gcc222.lha / info / gcc.info-5 (.txt) < prev    next >
GNU Info File  |  1992-07-19  |  49KB  |  844 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.47 from the input
  2. file gcc.texi.
  3.    This file documents the use and the internals of the GNU compiler.
  4.    Copyright (C) 1988, 1989, 1992 Free Software Foundation, Inc.
  5.    Permission is granted to make and distribute verbatim copies of this
  6. manual provided the copyright notice and this permission notice are
  7. preserved on all copies.
  8.    Permission is granted to copy and distribute modified versions of
  9. this manual under the conditions for verbatim copying, provided also
  10. that the sections entitled "GNU General Public License" and "Boycott"
  11. are included exactly as in the original, and provided that the entire
  12. resulting derived work is distributed under the terms of a permission
  13. notice identical to this one.
  14.    Permission is granted to copy and distribute translations of this
  15. manual into another language, under the above conditions for modified
  16. versions, except that the sections entitled "GNU General Public
  17. License" and "Boycott", and this permission notice, may be included in
  18. translations approved by the Free Software Foundation instead of in the
  19. original English.
  20. File: gcc.info,  Node: Function Attributes,  Next: Function Prototypes,  Prev: Case Ranges,  Up: Extensions
  21. Declaring Attributes of Functions
  22. =================================
  23.    In GNU C, you declare certain things about functions called in your
  24. program which help the compiler optimize function calls.
  25.    A few standard library functions, such as `abort' and `exit', cannot
  26. return.  GNU CC knows this automatically.  Some programs define their
  27. own functions that never return.  You can declare them `volatile' to
  28. tell the compiler this fact.  For example,
  29.      extern void volatile fatal ();
  30.      
  31.      void
  32.      fatal (...)
  33.      {
  34.        ... /* Print error message. */ ...
  35.        exit (1);
  36.      }
  37.    The `volatile' keyword tells the compiler to assume that `fatal'
  38. cannot return.  This makes slightly better code, but more importantly
  39. it helps avoid spurious warnings of uninitialized variables.
  40.    It does not make sense for a `volatile' function to have a return
  41. type other than `void'.
  42.    Many functions do not examine any values except their arguments, and
  43. have no effects except the return value.  Such a function can be subject
  44. to common subexpression elimination and loop optimization just as an
  45. arithmetic operator would be.  These functions should be declared
  46. `const'.  For example,
  47.      extern int const square ();
  48. says that the hypothetical function `square' is safe to call fewer
  49. times than the program says.
  50.    Note that a function that has pointer arguments and examines the data
  51. pointed to must *not* be declared `const'.  Likewise, a function that
  52. calls a non-`const' function usually must not be `const'.  It does not
  53. make sense for a `const' function to return `void'.
  54.    We recommend placing the keyword `const' after the function's return
  55. type.  It makes no difference in the example above, but when the return
  56. type is a pointer, it is the only way to make the function itself
  57. const.  For example,
  58.      const char *mincp (int);
  59. says that `mincp' returns `const char *'--a pointer to a const object. 
  60. To declare `mincp' const, you must write this:
  61.      char * const mincp (int);
  62.    Some people object to this feature, suggesting that ANSI C's
  63. `#pragma' should be used instead.  There are two reasons for not doing
  64. this.
  65.   1. It is impossible to generate `#pragma' commands from a macro.
  66.   2. The `#pragma' command is just as likely as these keywords to mean
  67.      something else in another compiler.
  68.    These two reasons apply to almost any application that might be
  69. proposed for `#pragma'.  It is basically a mistake to use `#pragma' for
  70. *anything*.
  71. File: gcc.info,  Node: Function Prototypes,  Next: Dollar Signs,  Prev: Function Attributes,  Up: Extensions
  72. Prototypes and Old-Style Function Definitions
  73. =============================================
  74.    GNU C extends ANSI C to allow a function prototype to override a
  75. later old-style non-prototype definition.  Consider the following
  76. example:
  77.      /* Use prototypes unless the compiler is old-fashioned.  */
  78.      #if __STDC__
  79.      #define P((x)) (x)
  80.      #else
  81.      #define P((x)) ()
  82.      #endif
  83.      
  84.      /* Prototype function declaration.  */
  85.      int isroot P((uid_t));
  86.      
  87.      /* Old-style function definition.  */
  88.      int
  89.      isroot (x)   /* ??? lossage here ??? */
  90.           uid_t x;
  91.      {
  92.        return x == 0;
  93.      }
  94.    Suppose the type `uid_t' happens to be `short'.  ANSI C does not
  95. allow this example, because subword arguments in old-style
  96. non-prototype definitions are promoted.  Therefore in this example the
  97. function definition's argument is really an `int', which does not match
  98. the prototype argument type of `short'.
  99.    This restriction of ANSI C makes it hard to write code that is
  100. portable to traditional C compilers, because the programmer does not
  101. know whether the `uid_t' type is `short', `int', or `long'.  Therefore,
  102. in cases like these GNU C allows a prototype to override a later
  103. old-style definition.  More precisely, in GNU C, a function prototype
  104. argument type overrides the argument type specified by a later
  105. old-style definition if the former type is the same as the latter type
  106. before promotion.  Thus in GNU C the above example is equivalent to the
  107. following:
  108.      int isroot (uid_t);
  109.      
  110.      int
  111.      isroot (uid_t x)
  112.      {
  113.        return x == 0;
  114.      }
  115. File: gcc.info,  Node: Dollar Signs,  Next: Character Escapes,  Prev: Function Prototypes,  Up: Extensions
  116. Dollar Signs in Identifier Names
  117. ================================
  118.    In GNU C, you may use dollar signs in identifier names.  This is
  119. because many traditional C implementations allow such identifiers.
  120.    Dollar signs are allowed on certain machines if you specify
  121. `-traditional'.  On a few systems they are allowed by default, even if
  122. `-traditional' is not used.  But they are never allowed if you specify
  123. `-ansi'.
  124.    There are certain ANSI C programs (obscure, to be sure) that would
  125. compile incorrectly if dollar signs were permitted in identifiers.  For
  126. example:
  127.      #define foo(a) #a
  128.      #define lose(b) foo (b)
  129.      #define test$
  130.      lose (test)
  131. File: gcc.info,  Node: Character Escapes,  Next: Variable Attributes,  Prev: Dollar Signs,  Up: Extensions
  132. The Character ESC in Constants
  133. ==============================
  134.    You can use the sequence `\e' in a string or character constant to
  135. stand for the ASCII character ESC.
  136. File: gcc.info,  Node: Alignment,  Next: Inline,  Prev: Variable Attributes,  Up: Extensions
  137. Inquiring on Alignment of Types or Variables
  138. ============================================
  139.    The keyword `__alignof__' allows you to inquire about how an object
  140. is aligned, or the minimum alignment usually required by a type.  Its
  141. syntax is just like `sizeof'.
  142.    For example, if the target machine requires a `double' value to be
  143. aligned on an 8-byte boundary, then `__alignof__ (double)' is 8. This
  144. is true on many RISC machines.  On more traditional machine designs,
  145. `__alignof__ (double)' is 4 or even 2.
  146.    Some machines never actually require alignment; they allow reference
  147. to any data type even at an odd addresses.  For these machines,
  148. `__alignof__' reports the *recommended* alignment of a type.
  149.    When the operand of `__alignof__' is an lvalue rather than a type,
  150. the value is the largest alignment that the lvalue is known to have. 
  151. It may have this alignment as a result of its data type, or because it
  152. is part of a structure and inherits alignment from that structure. For
  153. example, after this declaration:
  154.      struct foo { int x; char y; } foo1;
  155. the value of `__alignof__ (foo1.y)' is probably 2 or 4, the same as
  156. `__alignof__ (int)', even though the data type of `foo1.y' does not
  157. itself demand any alignment.
  158. File: gcc.info,  Node: Variable Attributes,  Next: Alignment,  Prev: Character Escapes,  Up: Extensions
  159. Specifying Attributes of Variables
  160. ==================================
  161.    The keyword `__attribute__' allows you to specify special attributes
  162. of variables or structure fields.  The only attributes currently
  163. defined are the `aligned' and `format' attributes.
  164.    The `aligned' attribute specifies the alignment of the variable or
  165. structure field.  For example, the declaration:
  166.      int x __attribute__ ((aligned (16))) = 0;
  167. causes the compiler to allocate the global variable `x' on a 16-byte
  168. boundary.  On a 68000, this could be used in conjunction with an `asm'
  169. expression to access the `move16' instruction which requires 16-byte
  170. aligned operands.
  171.    You can also specify the alignment of structure fields.  For
  172. example, to create a double-word aligned `int' pair, you could write:
  173.      struct foo { int x[2] __attribute__ ((aligned (8))); };
  174. This is an alternative to creating a union with a `double' member that
  175. forces the union to be double-word aligned.
  176.    It is not possible to specify the alignment of functions; the
  177. alignment of functions is determined by the machine's requirements and
  178. cannot be changed.  You cannot specify alignment for a typedef name
  179. because such a name is just an alias, not a distinct type.
  180.    The `format' attribute specifies that a function takes `printf' or
  181. `scanf' style arguments which should be type-checked against a format
  182. string.  For example, the declaration:
  183.      extern int
  184.      my_printf (void *my_object, const char *my_format, ...)
  185.            __attribute__ ((format (printf, 2, 3)));
  186. causes the compiler to check the arguments in calls to `my_printf' for
  187. consistency with the `printf' style format string argument `my_format'.
  188.    The first parameter of the `format' attribute determines how the
  189. format string is interpreted, and should be either `printf' or `scanf'.
  190.  The second parameter specifies the number of the format string
  191. argument (starting from 1).  The third parameter specifies the number
  192. of the first argument which should be checked against the format
  193. string.  For functions where the arguments are not available to be
  194. checked (such as `vprintf'), specify the third parameter as zero.  In
  195. this case the compiler only checks the format string for consistency.
  196.    In the example above, the format string (`my_format') is the second
  197. argument to `my_print' and the arguments to check start with the third
  198. argument, so the correct parameters for the format attribute are 2 and
  199.    The `format' attribute allows you to identify your own functions
  200. which take format strings as arguments, so that GNU CC can check the
  201. calls to these functions for errors.  The compiler always checks
  202. formats for the ANSI library functions `printf', `fprintf', `sprintf',
  203. `scanf', `fscanf', `sscanf', `vprintf', `vfprintf' and `vsprintf'
  204. whenever such warnings are requested (using `-Wformat'), so there is no
  205. need to modify the header file `stdio.h'.
  206. File: gcc.info,  Node: Inline,  Next: Extended Asm,  Prev: Alignment,  Up: Extensions
  207. An Inline Function is As Fast As a Macro
  208. ========================================
  209.    By declaring a function `inline', you can direct GNU CC to integrate
  210. that function's code into the code for its callers.  This makes
  211. execution faster by eliminating the function-call overhead; in
  212. addition, if any of the actual argument values are constant, their
  213. known values may permit simplifications at compile time so that not all
  214. of the inline function's code needs to be included.
  215.    To declare a function inline, use the `inline' keyword in its
  216. declaration, like this:
  217.      inline int
  218.      inc (int *a)
  219.      {
  220.        (*a)++;
  221.      }
  222.    (If you are writing a header file to be included in ANSI C programs,
  223. write `__inline__' instead of `inline'.  *Note Alternate Keywords::.)
  224.    You can also make all "simple enough" functions inline with the
  225. option `-finline-functions'.  Note that certain usages in a function
  226. definition can make it unsuitable for inline substitution.
  227.    When a function is both inline and `static', if all calls to the
  228. function are integrated into the caller, and the function's address is
  229. never used, then the function's own assembler code is never referenced.
  230. In this case, GNU CC does not actually output assembler code for the
  231. function, unless you specify the option `-fkeep-inline-functions'. Some
  232. calls cannot be integrated for various reasons (in particular, calls
  233. that precede the function's definition cannot be integrated, and
  234. neither can recursive calls within the definition).  If there is a
  235. nonintegrated call, then the function is compiled to assembler code as
  236. usual.  The function must also be compiled as usual if the program
  237. refers to its address, because that can't be inlined.
  238.    When an inline function is not `static', then the compiler must
  239. assume that there may be calls from other source files; since a global
  240. symbol can be defined only once in any program, the function must not
  241. be defined in the other source files, so the calls therein cannot be
  242. integrated. Therefore, a non-`static' inline function is always
  243. compiled on its own in the usual fashion.
  244.    If you specify both `inline' and `extern' in the function
  245. definition, then the definition is used only for inlining.  In no case
  246. is the function compiled on its own, not even if you refer to its
  247. address explicitly.  Such an address becomes an external reference, as
  248. if you had only declared the function, and had not defined it.
  249.    This combination of `inline' and `extern' has almost the effect of a
  250. macro.  The way to use it is to put a function definition in a header
  251. file with these keywords, and put another copy of the definition
  252. (lacking `inline' and `extern') in a library file. The definition in
  253. the header file will cause most calls to the function to be inlined. 
  254. If any uses of the function remain, they will refer to the single copy
  255. in the library.
  256. File: gcc.info,  Node: Extended Asm,  Next: Asm Labels,  Prev: Inline,  Up: Extensions
  257. Assembler Instructions with C Expression Operands
  258. =================================================
  259.    In an assembler instruction using `asm', you can now specify the
  260. operands of the instruction using C expressions.  This means no more
  261. guessing which registers or memory locations will contain the data you
  262. want to use.
  263.    You must specify an assembler instruction template much like what
  264. appears in a machine description, plus an operand constraint string for
  265. each operand.
  266.    For example, here is how to use the 68881's `fsinx' instruction:
  267.      asm ("fsinx %1,%0" : "=f" (result) : "f" (angle));
  268. Here `angle' is the C expression for the input operand while `result'
  269. is that of the output operand.  Each has `"f"' as its operand
  270. constraint, saying that a floating point register is required.  The `='
  271. in `=f' indicates that the operand is an output; all output operands'
  272. constraints must use `='.  The constraints use the same language used
  273. in the machine description (*note Constraints::.).
  274. Each operand is described by an operand-constraint string followed by
  275. the C expression in parentheses.  A colon separates the assembler
  276. template from the first output operand, and another separates the last
  277. output operand from the first input, if any.  Commas separate output
  278. operands and separate inputs.  The total number of operands is limited
  279. to ten or to the maximum number of operands in any instruction pattern
  280. in the machine description, whichever is greater.
  281.    If there are no output operands, and there are input operands, then
  282. there must be two consecutive colons surrounding the place where the
  283. output operands would go.
  284.    Output operand expressions must be lvalues; the compiler can check
  285. this. The input operands need not be lvalues.  The compiler cannot
  286. check whether the operands have data types that are reasonable for the
  287. instruction being executed.  It does not parse the assembler
  288. instruction template and does not know what it means, or whether it is
  289. valid assembler input.  The extended `asm' feature is most often used
  290. for machine instructions that the compiler itself does not know exist.
  291.    The output operands must be write-only; GNU CC will assume that the
  292. values in these operands before the instruction are dead and need not be
  293. generated.  Extended asm does not support input-output or read-write
  294. operands.  For this reason, the constraint character `+', which
  295. indicates such an operand, may not be used.
  296.    When the assembler instruction has a read-write operand, or an
  297. operand in which only some of the bits are to be changed, you must
  298. logically split its function into two separate operands, one input
  299. operand and one write-only output operand.  The connection between them
  300. is expressed by constraints which say they need to be in the same
  301. location when the instruction executes.  You can use the same C
  302. expression for both operands, or different expressions.  For example,
  303. here we write the (fictitious) `combine' instruction with `bar' as its
  304. read-only source operand and `foo' as its read-write destination:
  305.      asm ("combine %2,%0" : "=r" (foo) : "0" (foo), "g" (bar));
  306. The constraint `"0"' for operand 1 says that it must occupy the same
  307. location as operand 0.  A digit in constraint is allowed only in an
  308. input operand, and it must refer to an output operand.
  309.    Only a digit in the constraint can guarantee that one operand will
  310. be in the same place as another.  The mere fact that `foo' is the value
  311. of both operands is not enough to guarantee that they will be in the
  312. same place in the generated assembler code.  The following would not
  313. work:
  314.      asm ("combine %2,%0" : "=r" (foo) : "r" (foo), "g" (bar));
  315.    Various optimizations or reloading could cause operands 0 and 1 to
  316. be in different registers; GNU CC knows no reason not to do so.  For
  317. example, the compiler might find a copy of the value of `foo' in one
  318. register and use it for operand 1, but generate the output operand 0 in
  319. a different register (copying it afterward to `foo''s own address).  Of
  320. course, since the register for operand 1 is not even mentioned in the
  321. assembler code, the result will not work, but GNU CC can't tell that.
  322.    Some instructions clobber specific hard registers.  To describe
  323. this, write a third colon after the input operands, followed by the
  324. names of the clobbered hard registers (given as strings).  Here is a
  325. realistic example for the Vax:
  326.      asm volatile ("movc3 %0,%1,%2"
  327.                    : /* no outputs */
  328.                    : "g" (from), "g" (to), "g" (count)
  329.                    : "r0", "r1", "r2", "r3", "r4", "r5");
  330.    If you refer to a particular hardware register from the assembler
  331. code, then you will probably have to list the register after the third
  332. colon to tell the compiler that the register's value is modified.  In
  333. many assemblers, the register names begin with `%'; to produce one `%'
  334. in the assembler code, you must write `%%' in the input.
  335.    If your assembler instruction can alter the condition code register,
  336. add `cc' to the list of clobbered registers.  GNU CC on some machines
  337. represents the condition codes as a specific hardware register; `cc'
  338. serves to name this register.  On other machines, the condition code is
  339. handled differently, and specifying `cc' has no effect.  But it is
  340. valid no matter what the machine.
  341.    You can put multiple assembler instructions together in a single
  342. `asm' template, separated either with newlines (written as `\n') or with
  343. semicolons if the assembler allows such semicolons.  The GNU assembler
  344. allows semicolons and all Unix assemblers seem to do so.  The input
  345. operands are guaranteed not to use any of the clobbered registers, and
  346. neither will the output operands' addresses, so you can read and write
  347. the clobbered registers as many times as you like.  Here is an example
  348. of multiple instructions in a template; it assumes that the subroutine
  349. `_foo' accepts arguments in registers 9 and 10:
  350.      asm ("movl %0,r9;movl %1,r10;call _foo"
  351.           : /* no outputs */
  352.           : "g" (from), "g" (to)
  353.           : "r9", "r10");
  354.    Unless an output operand has the `&' constraint modifier, GNU CC may
  355. allocate it in the same register as an unrelated input operand, on the
  356. assumption that the inputs are consumed before the outputs are produced.
  357. This assumption may be false if the assembler code actually consists of
  358. more than one instruction.  In such a case, use `&' for each output
  359. operand that may not overlap an input. *Note Modifiers::.
  360.    If you want to test the condition code produced by an assembler
  361. instruction, you must include a branch and a label in the `asm'
  362. construct, as follows:
  363.      asm ("clr %0;frob %1;beq 0f;mov #1,%0;0:"
  364.           : "g" (result)
  365.           : "g" (input));
  366. This assumes your assembler supports local labels, as the GNU assembler
  367. and most Unix assemblers do.
  368.    Usually the most convenient way to use these `asm' instructions is to
  369. encapsulate them in macros that look like functions.  For example,
  370.      #define sin(x)       \
  371.      ({ double __value, __arg = (x);   \
  372.         asm ("fsinx %1,%0": "=f" (__value): "f" (__arg));  \
  373.         __value; })
  374. Here the variable `__arg' is used to make sure that the instruction
  375. operates on a proper `double' value, and to accept only those arguments
  376. `x' which can convert automatically to a `double'.
  377.    Another way to make sure the instruction operates on the correct
  378. data type is to use a cast in the `asm'.  This is different from using a
  379. variable `__arg' in that it converts more different types.  For
  380. example, if the desired type were `int', casting the argument to `int'
  381. would accept a pointer with no complaint, while assigning the argument
  382. to an `int' variable named `__arg' would warn about using a pointer
  383. unless the caller explicitly casts it.
  384.    If an `asm' has output operands, GNU CC assumes for optimization
  385. purposes that the instruction has no side effects except to change the
  386. output operands.  This does not mean that instructions with a side
  387. effect cannot be used, but you must be careful, because the compiler
  388. may eliminate them if the output operands aren't used, or move them out
  389. of loops, or replace two with one if they constitute a common
  390. subexpression.  Also, if your instruction does have a side effect on a
  391. variable that otherwise appears not to change, the old value of the
  392. variable may be reused later if it happens to be found in a register.
  393.    You can prevent an `asm' instruction from being deleted, moved
  394. significantly, or combined, by writing the keyword `volatile' after the
  395. `asm'.  For example:
  396.      #define set_priority(x)  \
  397.      asm volatile ("set_priority %0": /* no outputs */ : "g" (x))
  398. An instruction without output operands will not be deleted or moved
  399. significantly, regardless, unless it is unreachable.
  400.    Note that even a volatile `asm' instruction can be moved in ways
  401. that appear insignificant to the compiler, such as across jump
  402. instructions.  You can't expect a sequence of volatile `asm'
  403. instructions to remain perfectly consecutive.  If you want consecutive
  404. output, use a single `asm'.
  405.    It is a natural idea to look for a way to give access to the
  406. condition code left by the assembler instruction.  However, when we
  407. attempted to implement this, we found no way to make it work reliably. 
  408. The problem is that output operands might need reloading, which would
  409. result in additional following "store" instructions.  On most machines,
  410. these instructions would alter the condition code before there was time
  411. to test it.  This problem doesn't arise for ordinary "test" and
  412. "compare" instructions because they don't have any output operands.
  413.    If you are writing a header file that should be includable in ANSI C
  414. programs, write `__asm__' instead of `asm'.  *Note Alternate Keywords::.
  415. File: gcc.info,  Node: Asm Labels,  Next: Explicit Reg Vars,  Prev: Extended Asm,  Up: Extensions
  416. Controlling Names Used in Assembler Code
  417. ========================================
  418.    You can specify the name to be used in the assembler code for a C
  419. function or variable by writing the `asm' (or `__asm__') keyword after
  420. the declarator as follows:
  421.      int foo asm ("myfoo") = 2;
  422. This specifies that the name to be used for the variable `foo' in the
  423. assembler code should be `myfoo' rather than the usual `_foo'.
  424.    On systems where an underscore is normally prepended to the name of
  425. a C function or variable, this feature allows you to define names for
  426. the linker that do not start with an underscore.
  427.    You cannot use `asm' in this way in a function *definition*; but you
  428. can get the same effect by writing a declaration for the function
  429. before its definition and putting `asm' there, like this:
  430.      extern func () asm ("FUNC");
  431.      
  432.      func (x, y)
  433.           int x, y;
  434.      ...
  435.    It is up to you to make sure that the assembler names you choose do
  436. not conflict with any other assembler symbols.  Also, you must not use a
  437. register name; that would produce completely invalid assembler code. 
  438. GNU CC does not as yet have the ability to store static variables in
  439. registers. Perhaps that will be added.
  440. File: gcc.info,  Node: Explicit Reg Vars,  Next: Alternate Keywords,  Prev: Asm Labels,  Up: Extensions
  441. Variables in Specified Registers
  442. ================================
  443.    GNU C allows you to put a few global variables into specified
  444. hardware registers.  You can also specify the register in which an
  445. ordinary register variable should be allocated.
  446.    * Global register variables reserve registers throughout the program.
  447.      This may be useful in programs such as programming language
  448.      interpreters which have a couple of global variables that are
  449.      accessed very often.
  450.    * Local register variables in specific registers do not reserve the
  451.      registers.  The compiler's data flow analysis is capable of
  452.      determining where the specified registers contain live values, and
  453.      where they are available for other uses.
  454.      These local variables are sometimes convenient for use with the
  455.      extended `asm' feature (*note Extended Asm::.), if you want to
  456.      write one output of the assembler instruction directly into a
  457.      particular register. (This will work provided the register you
  458.      specify fits the constraints specified for that operand in the
  459.      `asm'.)
  460. * Menu:
  461. * Global Reg Vars::
  462. * Local Reg Vars::
  463. File: gcc.info,  Node: Global Reg Vars,  Next: Local Reg Vars,  Up: Explicit Reg Vars
  464. Defining Global Register Variables
  465. ----------------------------------
  466.    You can define a global register variable in GNU C like this:
  467.      register int *foo asm ("a5");
  468. Here `a5' is the name of the register which should be used.  Choose a
  469. register which is normally saved and restored by function calls on your
  470. machine, so that library routines will not clobber it.
  471.    Naturally the register name is cpu-dependent, so you would need to
  472. conditionalize your program according to cpu type.  The register `a5'
  473. would be a good choice on a 68000 for a variable of pointer type.  On
  474. machines with register windows, be sure to choose a "global" register
  475. that is not affected magically by the function call mechanism.
  476.    In addition, operating systems on one type of cpu may differ in how
  477. they name the registers; then you would need additional conditionals. 
  478. For example, some 68000 operating systems call this register `%a5'.
  479.    Eventually there may be a way of asking the compiler to choose a
  480. register automatically, but first we need to figure out how it should
  481. choose and how to enable you to guide the choice.  No solution is
  482. evident.
  483.    Defining a global register variable in a certain register reserves
  484. that register entirely for this use, at least within the current
  485. compilation. The register will not be allocated for any other purpose
  486. in the functions in the current compilation.  The register will not be
  487. saved and restored by these functions.  Stores into this register are
  488. never deleted even if they would appear to be dead, but references may
  489. be deleted or moved or simplified.
  490.    It is not safe to access the global register variables from signal
  491. handlers, or from more than one thread of control, because the system
  492. library routines may temporarily use the register for other things
  493. (unless you recompile them specially for the task at hand).
  494.    It is not safe for one function that uses a global register variable
  495. to call another such function `foo' by way of a third function `lose'
  496. that was compiled without knowledge of this variable (i.e. in a
  497. different source file in which the variable wasn't declared).  This is
  498. because `lose' might save the register and put some other value there.
  499. For example, you can't expect a global register variable to be
  500. available in the comparison-function that you pass to `qsort', since
  501. `qsort' might have put something else in that register.  (If you are
  502. prepared to recompile `qsort' with the same global register variable,
  503. you can solve this problem.)
  504.    If you want to recompile `qsort' or other source files which do not
  505. actually use your global register variable, so that they will not use
  506. that register for any other purpose, then it suffices to specify the
  507. compiler option `-ffixed-REG'.  You need not actually add a global
  508. register declaration to their source code.
  509.    A function which can alter the value of a global register variable
  510. cannot safely be called from a function compiled without this variable,
  511. because it could clobber the value the caller expects to find there on
  512. return. Therefore, the function which is the entry point into the part
  513. of the program that uses the global register variable must explicitly
  514. save and restore the value which belongs to its caller.
  515.    On most machines, `longjmp' will restore to each global register
  516. variable the value it had at the time of the `setjmp'.  On some
  517. machines, however, `longjmp' will not change the value of global
  518. register variables.  To be portable, the function that called `setjmp'
  519. should make other arrangements to save the values of the global register
  520. variables, and to restore them in a `longjmp'.  This way, the same
  521. thing will happen regardless of what `longjmp' does.
  522.    All global register variable declarations must precede all function
  523. definitions.  If such a declaration could appear after function
  524. definitions, the declaration would be too late to prevent the register
  525. from being used for other purposes in the preceding functions.
  526.    Global register variables may not have initial values, because an
  527. executable file has no means to supply initial contents for a register.
  528.    On the Sparc, there are reports that g3 ... g7 are suitable
  529. registers, but certain library functions, such as `getwd', as well as
  530. the subroutines for division and remainder, modify g3 and g4.  g1 and
  531. g2 are local temporaries.
  532.    On the 68000, a2 ... a5 should be suitable, as should d2 ... d7. Of
  533. course, it will not do to use more than a few of those.
  534. File: gcc.info,  Node: Local Reg Vars,  Prev: Global Reg Vars,  Up: Explicit Reg Vars
  535. Specifying Registers for Local Variables
  536. ----------------------------------------
  537.    You can define a local register variable with a specified register
  538. like this:
  539.      register int *foo asm ("a5");
  540. Here `a5' is the name of the register which should be used.  Note that
  541. this is the same syntax used for defining global register variables,
  542. but for a local variable it would appear within a function.
  543.    Naturally the register name is cpu-dependent, but this is not a
  544. problem, since specific registers are most often useful with explicit
  545. assembler instructions (*note Extended Asm::.).  Both of these things
  546. generally require that you conditionalize your program according to cpu
  547. type.
  548.    In addition, operating systems on one type of cpu may differ in how
  549. they name the registers; then you would need additional conditionals. 
  550. For example, some 68000 operating systems call this register `%a5'.
  551.    Eventually there may be a way of asking the compiler to choose a
  552. register automatically, but first we need to figure out how it should
  553. choose and how to enable you to guide the choice.  No solution is
  554. evident.
  555.    Defining such a register variable does not reserve the register; it
  556. remains available for other uses in places where flow control determines
  557. the variable's value is not live.  However, these registers are made
  558. unavailable for use in the reload pass.  I would not be surprised if
  559. excessive use of this feature leaves the compiler too few available
  560. registers to compile certain functions.
  561. File: gcc.info,  Node: Alternate Keywords,  Next: Incomplete Enums,  Prev: Explicit Reg Vars,  Up: Extensions
  562. Alternate Keywords
  563. ==================
  564.    The option `-traditional' disables certain keywords; `-ansi'
  565. disables certain others.  This causes trouble when you want to use GNU C
  566. extensions, or ANSI C features, in a general-purpose header file that
  567. should be usable by all programs, including ANSI C programs and
  568. traditional ones.  The keywords `asm', `typeof' and `inline' cannot be
  569. used since they won't work in a program compiled with `-ansi', while
  570. the keywords `const', `volatile', `signed', `typeof' and `inline' won't
  571. work in a program compiled with `-traditional'.
  572.    The way to solve these problems is to put `__' at the beginning and
  573. end of each problematical keyword.  For example, use `__asm__' instead
  574. of `asm', `__const__' instead of `const', and `__inline__' instead of
  575. `inline'.
  576.    Other C compilers won't accept these alternative keywords; if you
  577. want to compile with another compiler, you can define the alternate
  578. keywords as macros to replace them with the customary keywords.  It
  579. looks like this:
  580.      #ifndef __GNUC__
  581.      #define __asm__ asm
  582.      #endif
  583.    `-pedantic' causes warnings for many GNU C extensions.  You can
  584. prevent such warnings within one expression by writing `__extension__'
  585. before the expression.  `__extension__' has no effect aside from this.
  586. File: gcc.info,  Node: Incomplete Enums,  Prev: Alternate Keywords,  Up: Extensions
  587. Incomplete `enum' Types
  588. =======================
  589.    You can define an `enum' tag without specifying its possible values.
  590. This results in an incomplete type, much like what you get if you write
  591. `struct foo' without describing the elements.  A later declaration
  592. which does specify the possible values completes the type.
  593.    You can't allocate variables or storage using the type while it is
  594. incomplete.  However, you can work with pointers to that type.
  595.    This extension may not be very useful, but it makes the handling of
  596. `enum' more consistent with the way `struct' and `union' are handled.
  597. File: gcc.info,  Node: Trouble,  Next: Bugs,  Prev: Extensions,  Up: Top
  598. Known Causes of Trouble with GNU CC
  599. ***********************************
  600.    This section describes known problems that affect users of GNU CC. 
  601. Most of these are not GNU CC bugs per se--if they were, we would fix
  602. them. But the result for a user may be like the result of a bug.
  603.    Some of these problems are due to bugs in other software, some are
  604. missing features that are too much work to add, and some are places
  605. where people's opinions differ as to what is best.
  606. * Menu:
  607. * Actual Bugs::              Bugs we will fix later.
  608. * Installation Problems::     Problems that manifest when you install GNU CC.
  609. * Cross-Compiler Problems::   Common problems of cross compiling with GNU CC.
  610. * Interoperation::      Problems using GNU CC with other compilers,
  611.                and with certain linkers, assemblers and debuggers.
  612. * Incompatibilities::   GNU CC is incompatible with traditional C.
  613. * Disappointments::     Regrettable things we can't change, but not quite bugs.
  614. * Non-bugs::        Things we think are right, but some others disagree.
  615. File: gcc.info,  Node: Actual Bugs,  Next: Installation Problems,  Up: Trouble
  616. Actual Bugs We Haven't Fixed Yet
  617. ================================
  618.    * Loop unrolling doesn't work properly for certain programs.  This is
  619.      because of difficulty in updating the debugging information within
  620.      the loop being unrolled.  We plan to revamp the representation of
  621.      debugging information so that this will work properly, but we have
  622.      not done this in version 2.2 because we don't want to delay it any
  623.      further.
  624.    * There is a bug in producing DBX output which outputs a structure
  625.      tag even when a structure doesn't have a tag.  The reason we
  626.      aren't fixing this now is that a clean fix requires
  627.      reorganizations that seem risky. We will do them after 2.2 is
  628.      released.
  629. File: gcc.info,  Node: Installation Problems,  Next: Cross-Compiler Problems,  Prev: Actual Bugs,  Up: Trouble
  630. Installation Problems
  631. =====================
  632.    This is a list of problems (and some apparent problems which don't
  633. really mean anything is wrong) that show up during installation of GNU
  634.    * On certain systems, defining certain environment variables such as
  635.      `CC' can interfere with the functioning of `make'.
  636.    * If you encounter seemingly strange errors when trying to build the
  637.      compiler in a directory other than the source directory, it could
  638.      be because you have previously configured the compiler in the
  639.      source directory.  Make sure you have done all the necessary
  640.      preparations. *Note Other Dir::.
  641.    * In previous versions of GNU CC, the `gcc' driver program looked for
  642.      `as' and `ld' in various places such as files beginning with
  643.      `/usr/local/lib/gcc-'.  GNU CC version 2 looks for them in the
  644.      directory `/usr/local/lib/gcc-lib/TARGET/VERSION'.
  645.      Thus, to use a version of `as' or `ld' that is not the system
  646.      default, for example `gas' or GNU `ld', you must put them in that
  647.      directory (or make links to them from that directory).
  648.    * Some commands executed when making the compiler may fail (return a
  649.      non-zero status) and be ignored by `make'.  These failures, which
  650.      are often due to files that were not found, are expected, and can
  651.      safely be ignored.
  652.    * It is normal to have warnings in compiling certain files about
  653.      unreachable code and about enumeration type clashes.  These files'
  654.      names begin with `insn-'.
  655.    * Sometimes `make' recompiles parts of the compiler when installing
  656.      the compiler.  In one case, this was traced down to a bug in
  657.      `make'.  Either ignore the problem or switch to GNU Make.
  658.    * Sometimes on a Sun 4 you may observe a crash in the program
  659.      `genflags' or `genoutput' while building GCC.  This is said to be
  660.      due to a bug in `sh'.  You can probably get around it by running
  661.      `genflags' or `genoutput' manually and then retrying the `make'.
  662.    * On some versions of Ultrix, the system supplied compiler cannot
  663.      compile `cp-parse.c' because it cannot handle so many cases in a
  664.      `switch' statement.  You can avoid this problem by specifying
  665.      `LANGUAGES=c' when you compile GNU CC with the Ultrix compiler.
  666.      Then you can compile the entire GNU compiler with GNU CC.
  667.    * If you use the 1.31 version of the MIPS assembler (such as was
  668.      shipped with Ultrix 3.1), you will need to use the
  669.      -fno-delayed-branch switch when optimizing floating point code. 
  670.      Otherwise, the assembler will complain when the GCC compiler fills
  671.      a branch delay slot with a floating point instruction, such as
  672.      add.d.
  673.    * Users have reported some problems with version 2.0 of the MIPS
  674.      compiler tools that were shipped with Ultrix 4.1.  Version 2.10
  675.      which came with Ultrix 4.2 seems to work fine.
  676.    * On HP 9000 series 300 or 400 running HP-UX release 8.0, there is a
  677.      bug in the assembler that must be fixed before GNU CC can be
  678.      built.  This bug manifests itself during the first stage of
  679.      compilation, while building `libgcc2.a':
  680.           _floatdisf
  681.           cc1: warning: `-g' option not supported on this version of GCC
  682.           cc1: warning: `-g1' option not supported on this version of GCC
  683.           ./gcc: Internal compiler error: program as got fatal signal 11
  684.      A patched version of the assembler is available by anonymous ftp
  685.      from `altdorf.ai.mit.edu' as the file
  686.      `archive/cph/hpux-8.0-assembler'.  If you have HP software support,
  687.      the patch can also be obtained directly from HP, as described in
  688.      the following note:
  689.           This is the patched assembler, to patch SR#1653-010439, where
  690.           the assembler aborts on floating point constants.
  691.           The bug is not really in the assembler, but in the shared
  692.           library version of the function "cvtnum(3c)".  The bug on
  693.           "cvtnum(3c)" is SR#4701-078451.  Anyway, the attached
  694.           assembler uses the archive library version of "cvtnum(3c)"
  695.           and thus does not exhibit the bug.
  696.      This patch is also known as PHCO_0800.
  697.    * Another assembler problem on the HP PA results in an error message
  698.      like this while compiling part of `libgcc2.a':
  699.           as: /usr/tmp/cca08196.s @line#30 [err#1060]
  700.             Argument 1 or 3 in FARG upper
  701.                    - lookahead = RTNVAL=GR
  702.      This happens because HP changed the assembler syntax after system
  703.      release 8.02.  GNU CC assumes the newer syntax; if your assembler
  704.      wants the older syntax, comment out this line in the file
  705.      `pa1-hpux.h':
  706.           #define HP_FP_ARG_DESCRIPTOR_REVERSED
  707.    * Some versions of the Pyramid C compiler are reported to be unable
  708.      to compile GNU CC.  You must use an older version of GNU CC for
  709.      bootstrapping.  One indication of this problem is if you get a
  710.      crash when GNU CC compiles the function `muldi3' in file
  711.      `libgcc2.c'.
  712.      You may be able to succeed by getting GNU CC version 1, installing
  713.      it, and using it to compile GNU CC version 2.  The bug in the
  714.      Pyramid C compiler does not seem to affect GNU CC version 1.
  715.    * On the Tower models 4N0 and 6N0, by default a process is not
  716.      allowed to have more than one megabyte of memory.  GNU CC cannot
  717.      compile itself (or many other programs) with `-O' in that much
  718.      memory.
  719.      To solve this problem, reconfigure the kernel adding the following
  720.      line to the configuration file:
  721.           MAXUMEM = 4096
  722.    * On the Altos 3068, programs compiled with GNU CC won't work unless
  723.      you fix a kernel bug.  This happens using system versions V.2.2
  724.      1.0gT1 and V.2.2 1.0e and perhaps later versions as well.  See the
  725.      file `README.ALTOS'.
  726. File: gcc.info,  Node: Cross-Compiler Problems,  Next: Interoperation,  Prev: Installation Problems,  Up: Trouble
  727. Cross-Compiler Problems
  728. =======================
  729.    * Cross compilation can run into trouble for certain machines because
  730.      some target machines' assemblers require floating point numbers to
  731.      be written as *integer* constants in certain contexts.
  732.      The compiler writes these integer constants by examining the
  733.      floating point value as an integer and printing that integer,
  734.      because this is simple to write and independent of the details of
  735.      the floating point representation.  But this does not work if the
  736.      compiler is running on a different machine with an incompatible
  737.      floating point format, or even a different byte-ordering.
  738.      In addition, correct constant folding of floating point values
  739.      requires representing them in the target machine's format. (The C
  740.      standard does not quite require this, but in practice it is the
  741.      only way to win.)
  742.      It is now possible to overcome these problems by defining macros
  743.      such as `REAL_VALUE_TYPE'.  But doing so is a substantial amount of
  744.      work for each target machine.  *Note Cross-compilation::.
  745.    * At present, the program `mips-tfile' which adds debug support to
  746.      object files on MIPS systems does not work in a cross compile
  747.      environment.
  748. File: gcc.info,  Node: Interoperation,  Next: Incompatibilities,  Prev: Cross-Compiler Problems,  Up: Trouble
  749. Interoperation
  750. ==============
  751.    This section lists various difficulties encountered in using GNU C or
  752. GNU C++ together with other compilers or with the assemblers, linkers
  753. and debuggers on certain systems.
  754.    * GNU C normally compiles functions to return small structures and
  755.      unions in registers.  Most other compilers arrange to return them
  756.      just like larger structures and unions.  This can lead to trouble
  757.      when you link together code compiled by different compilers. To
  758.      avoid the problem, you can use the option `-fpcc-struct-value'
  759.      when compiling with GNU CC.
  760.    * GNU C++ does not do name mangling in the same way as other C++
  761.      compilers.  This means that object files compiled with one compiler
  762.      cannot be used with another.
  763.      GNU C++ also uses different techniques for arranging virtual
  764.      function tables and the layout of class instances.  In general,
  765.      therefore, linking code compiled with different C++ compilers does
  766.      not work.
  767.    * Older GDB versions sometimes fail to read the output of GNU CC
  768.      version 2.  If you have trouble, get GDB version 4.4 or later.
  769.    * DBX rejects some files produced by GNU CC, though it accepts
  770.      similar constructs in output from PCC.  Until someone can supply a
  771.      coherent description of what is valid DBX input and what is not,
  772.      there is nothing I can do about these problems.  You are on your
  773.      own.
  774.    * The GNU assembler (GAS) does not support PIC.  To generate PIC
  775.      code, you must use some other assembler, such as `/bin/as'.
  776.    * On some BSD systems including some versions of Ultrix, use of
  777.      profiling causes static variable destructors (currently used only
  778.      in C++) not to be run.
  779.    * On a Sun, linking using GNU CC fails to find a shared library and
  780.      reports that the library doesn't exist at all.
  781.      This happens if you are using the GNU linker, because it does only
  782.      static linking and looks only for unshared libraries.  If you have
  783.      a shared library with no unshared counterpart, the GNU linker
  784.      won't find anything.
  785.      We hope to make a linker which supports Sun shared libraries, but
  786.      please don't ask when it will be finished--we don't know.
  787.    * Sun forgot to include a static version of `libdl.a' with some
  788.      versions of SunOS (mainly 4.1).  This results in undefined symbols
  789.      when linking static binaries (that is, if you use `-static').  If
  790.      you see undefined symbols `_dlclose', `_dlsym' or `_dlopen' when
  791.      linking, compile and link against the file `mit/util/misc/dlsym.c'
  792.      from the MIT version of X windows.
  793.    * On the HP PA machine, ADB sometimes fails to work on functions
  794.      compiled with GNU CC.  Specifically, it fails to work on functions
  795.      that use `alloca' or variable-size arrays.  This is because GNU CC
  796.      doesn't generate HPUX unwind descriptors for such functions.  It
  797.      may even be impossible to generate them.
  798.    * Profiling is not supported on the HP PA machine.  Neither is
  799.      debugging (`-g'), unless you use the preliminary GNU tools (*note
  800.      Installation::.).
  801.    * GNU CC on the HP PA handles variadic function arguments using a
  802.      calling convention incompatible with the HP compiler.  This is
  803.      only a problem for routines that take `va_list' as parameters,
  804.      such as `vprintf'.  This may be fixed eventually.
  805.    * The current version of the assembler (`/bin/as') for the RS/6000
  806.      has certain problems that prevent the `-g' option in GCC from
  807.      working.
  808.      IBM has produced a fixed version of the assembler.  The replacement
  809.      assembler is not a standard component of either AIX 3.1.5 or AIX
  810.      3.2, but is expected to become standard in a future distribution. 
  811.      This assembler is available from IBM as APAR IX22829.  Yet more
  812.      bugs have been fixed in a newer assembler, which will shortly be
  813.      available as APAR IX26107.  See the file `README.RS6000' for more
  814.      details on these assemblers.
  815.    * On the IBM RS/6000, compiling code of the form
  816.           extern int foo;
  817.           
  818.           ... foo ...
  819.           
  820.           static int foo;
  821.      will cause the linker to report an undefined symbol `foo'.
  822.      Although this behavior differs from most other systems, it is not a
  823.      bug because redefining an `extern' variable as `static' is
  824.      undefined in ANSI C.
  825.    * On VMS, GAS versions 1.38.1 and earlier may cause spurious warning
  826.      messages from the linker.  These warning messages complain of
  827.      mismatched psect attributes.  You can ignore them.  *Note VMS
  828.      Install::.
  829.    * On the Alliant, the system's own convention for returning
  830.      structures and unions is unusual, and is not compatible with GNU
  831.      CC no matter what options are used.
  832.    * On the IBM RT PC, the MetaWare HighC compiler (hc) uses yet another
  833.      convention for structure and union returning.  Use
  834.      `-mhc-struct-return' to tell GNU CC to use a convention compatible
  835.      with it.
  836.    * On Ultrix, the Fortran compiler expects registers 2 through 5 to
  837.      be saved by function calls.  However, the C compiler uses
  838.      conventions compatible with BSD Unix: registers 2 through 5 may be
  839.      clobbered by function calls.
  840.      GNU CC uses the same convention as the Ultrix C compiler.  You can
  841.      use these options to produce code compatible with the Fortran
  842.      compiler:
  843.           -fcall-saved-r2 -fcall-saved-r3 -fcall-saved-r4 -fcall-saved-r5
  844.