home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / language / gcc222.lha / info / gcc.info-2 (.txt) < prev    next >
GNU Info File  |  1992-07-19  |  51KB  |  987 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: Warning Options,  Next: Debugging Options,  Prev: Dialect Options,  Up: Invoking GCC
  21. Options to Request or Suppress Warnings
  22. =======================================
  23.    Warnings are diagnostic messages that report constructions which are
  24. not inherently erroneous but which are risky or suggest there may have
  25. been an error.
  26.    You can request many specific warnings with options beginning `-W',
  27. for example `-Wimplicit' to request warnings on implicit declarations. 
  28. Each of these specific warning options also has a negative form
  29. beginning `-Wno-' to turn off warnings; for example, `-Wno-implicit'. 
  30. This manual lists only one of the two forms, whichever is not the
  31. default.
  32.    These options control the amount and kinds of warnings produced by
  33. GNU CC:
  34. `-fsyntax-only'
  35.      Check the code for syntax errors, but don't emit any output.
  36.      Inhibit all warning messages.
  37. `-Wno_import'
  38.      Inhibit warning messages about the use of `#import'.
  39. `-pedantic'
  40.      Issue all the warnings demanded by strict ANSI standard C; reject
  41.      all programs that use forbidden extensions.
  42.      Valid ANSI standard C programs should compile properly with or
  43.      without this option (though a rare few will require `-ansi'). 
  44.      However, without this option, certain GNU extensions and
  45.      traditional C features are supported as well.  With this option,
  46.      they are rejected.
  47.      `-pedantic' does not cause warning messages for use of the
  48.      alternate keywords whose names begin and end with `__'.  Pedantic
  49.      warnings are also disabled in the expression that follows
  50.      `__extension__'.  However, only system header files should use
  51.      these escape routes; application programs should avoid them. *Note
  52.      Alternate Keywords::.
  53.      This option is not intended to be useful; it exists only to satisfy
  54.      pedants who would otherwise claim that GNU CC fails to support the
  55.      ANSI standard.
  56.      Some users try to use `-pedantic' to check programs for strict ANSI
  57.      C conformance.  They soon find that it does not do quite what they
  58.      want: it finds some non-ANSI practices, but not all--only those
  59.      for which ANSI C *requires* a diagnostic.
  60.      A feature to report any failure to conform to ANSI C might be
  61.      useful in some instances, but would require considerable
  62.      additional work and would be quite different from `-pedantic'.  We
  63.      recommend, rather, that users take advantage of the extensions of
  64.      GNU C and disregard the limitations of other compilers.  Aside
  65.      from certain supercomputers and obsolete small machines, there is
  66.      less and less reason ever to use any other C compiler other than
  67.      for bootstrapping GNU CC.
  68. `-pedantic-errors'
  69.      Like `-pedantic', except that errors are produced rather than
  70.      warnings.
  71.      Print extra warning messages for these events:
  72.         * A nonvolatile automatic variable might be changed by a call to
  73.           `longjmp'.  These warnings as well are possible only in
  74.           optimizing compilation.
  75.           The compiler sees only the calls to `setjmp'.  It cannot know
  76.           where `longjmp' will be called; in fact, a signal handler
  77.           could call it at any point in the code.  As a result, you may
  78.           get a warning even when there is in fact no problem because
  79.           `longjmp' cannot in fact be called at the place which would
  80.           cause a problem.
  81.         * A function can return either with or without a value. 
  82.           (Falling off the end of the function body is considered
  83.           returning without a value.)  For example, this function would
  84.           evoke such a warning:
  85.                foo (a)
  86.                {
  87.                  if (a > 0)
  88.                    return a;
  89.                }
  90.         * An expression-statement contains no side effects.
  91.         * An unsigned value is compared against zero with `>' or `<='.
  92. `-Wimplicit'
  93.      Warn whenever a function or parameter is implicitly declared.
  94. `-Wreturn-type'
  95.      Warn whenever a function is defined with a return-type that
  96.      defaults to `int'.  Also warn about any `return' statement with no
  97.      return-value in a function whose return-type is not `void'.
  98. `-Wunused'
  99.      Warn whenever a local variable is unused aside from its
  100.      declaration, whenever a function is declared static but never
  101.      defined, and whenever a statement computes a result that is
  102.      explicitly not used.
  103. `-Wswitch'
  104.      Warn whenever a `switch' statement has an index of enumeral type
  105.      and lacks a `case' for one or more of the named codes of that
  106.      enumeration.  (The presence of a `default' label prevents this
  107.      warning.)  `case' labels outside the enumeration range also
  108.      provoke warnings when this option is used.
  109. `-Wcomment'
  110.      Warn whenever a comment-start sequence `/*' appears in a comment.
  111. `-Wtrigraphs'
  112.      Warn if any trigraphs are encountered (assuming they are enabled).
  113. `-Wformat'
  114.      Check calls to `printf' and `scanf', etc., to make sure that the
  115.      arguments supplied have types appropriate to the format string
  116.      specified.
  117. `-Wchar-subscripts'
  118.      Warn if an array subscript has type `char'.  This is a common cause
  119.      of error, as programmers often forget that this type is signed on
  120.      some machines.
  121. `-Wuninitialized'
  122.      An automatic variable is used without first being initialized.
  123.      These warnings are possible only in optimizing compilation,
  124.      because they require data flow information that is computed only
  125.      when optimizing.  If you don't specify `-O', you simply won't get
  126.      these warnings.
  127.      These warnings occur only for variables that are candidates for
  128.      register allocation.  Therefore, they do not occur for a variable
  129.      that is declared `volatile', or whose address is taken, or whose
  130.      size is other than 1, 2, 4 or 8 bytes.  Also, they do not occur for
  131.      structures, unions or arrays, even when they are in registers.
  132.      Note that there may be no warning about a variable that is used
  133.      only to compute a value that itself is never used, because such
  134.      computations may be deleted by data flow analysis before the
  135.      warnings are printed.
  136.      These warnings are made optional because GNU CC is not smart
  137.      enough to see all the reasons why the code might be correct
  138.      despite appearing to have an error.  Here is one example of how
  139.      this can happen:
  140.           {
  141.             int x;
  142.             switch (y)
  143.               {
  144.               case 1: x = 1;
  145.                 break;
  146.               case 2: x = 4;
  147.                 break;
  148.               case 3: x = 5;
  149.               }
  150.             foo (x);
  151.           }
  152.      If the value of `y' is always 1, 2 or 3, then `x' is always
  153.      initialized, but GNU CC doesn't know this.  Here is another common
  154.      case:
  155.           {
  156.             int save_y;
  157.             if (change_y) save_y = y, y = new_y;
  158.             ...
  159.             if (change_y) y = save_y;
  160.           }
  161.      This has no bug because `save_y' is used only if it is set.
  162.      Some spurious warnings can be avoided if you declare as `volatile'
  163.      all the functions you use that never return. *Note Function
  164.      Attributes::.
  165. `-Wparentheses'
  166.      Warn if parentheses are omitted in certain contexts.
  167. `-Wall'
  168.      All of the above `-W' options combined.  These are all the options
  169.      which pertain to usage that we recommend avoiding and that we
  170.      believe is easy to avoid, even in conjunction with macros.
  171.    The remaining `-W...' options are not implied by `-Wall' because
  172. they warn about constructions that we consider reasonable to use, on
  173. occasion, in clean programs.
  174. `-Wtraditional'
  175.      Warn about certain constructs that behave differently in
  176.      traditional and ANSI C.
  177.         * Macro arguments occurring within string constants in the
  178.           macro body. These would substitute the argument in
  179.           traditional C, but are part of the constant in ANSI C.
  180.         * A function declared external in one block and then used after
  181.           the end of the block.
  182.         * A `switch' statement has an operand of type `long'.
  183. `-Wshadow'
  184.      Warn whenever a local variable shadows another local variable.
  185. `-Wid-clash-LEN'
  186.      Warn whenever two distinct identifiers match in the first LEN
  187.      characters.  This may help you prepare a program that will compile
  188.      with certain obsolete, brain-damaged compilers.
  189. `-Wpointer-arith'
  190.      Warn about anything that depends on the "size of" a function type
  191.      or of `void'.  GNU C assigns these types a size of 1, for
  192.      convenience in calculations with `void *' pointers and pointers to
  193.      functions.
  194. `-Wcast-qual'
  195.      Warn whenever a pointer is cast so as to remove a type qualifier
  196.      from the target type.  For example, warn if a `const char *' is
  197.      cast to an ordinary `char *'.
  198. `-Wcast-align'
  199.      Warn whenever a pointer is cast such that the required alignment
  200.      of the target is increased.  For example, warn if a `char *' is
  201.      cast to an `int *' on machines where integers can only be accessed
  202.      at two- or four-byte boundaries.
  203. `-Wwrite-strings'
  204.      Give string constants the type `const char[LENGTH]' so that
  205.      copying the address of one into a non-`const' `char *' pointer
  206.      will get a warning.  These warnings will help you find at compile
  207.      time code that can try to write into a string constant, but only
  208.      if you have been very careful about using `const' in declarations
  209.      and prototypes.  Otherwise, it will just be a nuisance; this is
  210.      why we did not make `-Wall' request these warnings.
  211. `-Wconversion'
  212.      Warn if a prototype causes a type conversion that is different
  213.      from what would happen to the same argument in the absence of a
  214.      prototype.  This includes conversions of fixed point to floating
  215.      and vice versa, and conversions changing the width or signedness
  216.      of a fixed point argument except when the same as the default
  217.      promotion.
  218. `-Waggregate-return'
  219.      Warn if any functions that return structures or unions are defined
  220.      or called.  (In languages where you can return an array, this also
  221.      elicits a warning.)
  222. `-Wstrict-prototypes'
  223.      Warn if a function is declared or defined without specifying the
  224.      argument types.  (An old-style function definition is permitted
  225.      without a warning if preceded by a declaration which specifies the
  226.      argument types.)
  227. `-Wmissing-prototypes'
  228.      Warn if a global function is defined without a previous prototype
  229.      declaration.  This warning is issued even if the definition itself
  230.      provides a prototype.  The aim is to detect global functions that
  231.      fail to be declared in header files.
  232. `-Wredundant-decls'
  233.      Warn if anything is declared more than once in the same scope,
  234.      even in cases where multiple declaration is valid and changes
  235.      nothing.
  236. `-Wnested-externs'
  237.      Warn if an `extern' declaration is encountered within an function.
  238. `-Winline'
  239.      Warn if a function can not be inlined, and either it was declared
  240.      as inline, or else the `-finline-functions' option was given.
  241. `-Werror'
  242.      Make all warnings into errors.
  243. File: gcc.info,  Node: Debugging Options,  Next: Optimize Options,  Prev: Warning Options,  Up: Invoking GCC
  244. Options for Debugging Your Program or GNU CC
  245. ============================================
  246.    GNU CC has various special options that are used for debugging
  247. either your program or GCC:
  248.      Produce debugging information in the operating system's native
  249.      format (stabs, COFF, XCOFF, or DWARF).  GDB can work with this
  250.      debugging information.
  251.      On most systems that use stabs format, `-g' enables use of extra
  252.      debugging information that only GDB can use; this extra information
  253.      makes debugging work better in GDB but will probably make DBX
  254.      crash or refuse to read the program.  If you want to control for
  255.      certain whether to generate the extra information, use `-gstabs+'
  256.      or `-gstabs' (see below).
  257.      Unlike most other C compilers, GNU CC allows you to use `-g' with
  258.      `-O'.  The shortcuts taken by optimized code may occasionally
  259.      produce surprising results: some variables you declared may not
  260.      exist at all; flow of control may briefly move where you did not
  261.      expect it; some statements may not be executed because they
  262.      compute constant results or their values were already at hand;
  263.      some statements may execute in different places because they were
  264.      moved out of loops.
  265.      Nevertheless it proves possible to debug optimized output.  This
  266.      makes it reasonable to use the optimizer for programs that might
  267.      have bugs.
  268.      The following options are useful when GNU CC is generated with the
  269.      capability for more than one debugging format.
  270. `-ggdb'
  271.      Produce debugging information in the native format (if that is
  272.      supported), including GDB extensions if at all possible.
  273. `-gstabs'
  274.      Produce debugging information in stabs format (if that is
  275.      supported), without GDB extensions.  This is the format used by
  276.      DBX on most BSD systems.
  277. `-gstabs+'
  278.      Produce debugging information in stabs format (if that is
  279.      supported), using GDB extensions.  The use of these extensions is
  280.      likely to make DBX crash or refuse to read the program.
  281. `-gcoff'
  282.      Produce debugging information in COFF format (if that is
  283.      supported). This is the format used by SDB on COFF systems.
  284. `-gxcoff'
  285.      Produce debugging information in XCOFF format (if that is
  286.      supported). This is the format used on IBM RS/6000 systems.
  287. `-gdwarf'
  288.      Produce debugging information in DWARF format (if that is
  289.      supported). This is the format used by SDB on systems that use
  290.      DWARF.
  291. `-gLEVEL'
  292. `-ggdbLEVEL'
  293. `-gstabsLEVEL'
  294. `-gcoffLEVEL'
  295. `-gxcoffLEVEL'
  296. `-gdwarfLEVEL'
  297.      Request debugging information and also use LEVEL to specify how
  298.      much information.  The default level is 2.
  299.      Level 1 produces minimal information, enough for making backtraces
  300.      in parts of the program that you don't plan to debug.  This
  301.      includes descriptions of functions and external variables, but no
  302.      information about local variables and no line numbers.
  303.      Level 3 includes extra information, such as all the macro
  304.      definitions present in the program.  Some debuggers support macro
  305.      expansion when you use `-g3'.
  306.      Generate extra code to write profile information suitable for the
  307.      analysis program `prof'.
  308. `-pg'
  309.      Generate extra code to write profile information suitable for the
  310.      analysis program `gprof'.
  311.      Generate extra code to write profile information for basic blocks,
  312.      which will record the number of times each basic block is executed.
  313.      This data could be analyzed by a program like `tcov'.  Note,
  314.      however, that the format of the data is not what `tcov' expects.
  315.      Eventually GNU `gprof' should be extended to process this data.
  316. `-dLETTERS'
  317.      Says to make debugging dumps during compilation at times specified
  318.      by LETTERS.  This is used for debugging the compiler.  The file
  319.      names for most of the dumps are made by appending a word to the
  320.      source file name (e.g.  `foo.c.rtl' or `foo.c.jump').  Here are the
  321.      possible letters for use in LETTERS, and their meanings:
  322.     `M'
  323.           Dump all macro definitions, at the end of preprocessing, and
  324.           write no output.
  325.     `N'
  326.           Dump all macro names, at the end of preprocessing.
  327.     `D'
  328.           Dump all macro definitions, at the end of preprocessing, in
  329.           addition to normal output.
  330.     `y'
  331.           Dump debugging information during parsing, to standard error.
  332.     `r'
  333.           Dump after RTL generation, to `FILE.rtl'.
  334.     `x'
  335.           Just generate RTL for a function instead of compiling it. 
  336.           Usually used with `r'.
  337.     `j'
  338.           Dump after first jump optimization, to `FILE.jump'.
  339.     `s'
  340.           Dump after CSE (including the jump optimization that sometimes
  341.           follows CSE), to `FILE.cse'.
  342.     `L'
  343.           Dump after loop optimization, to `FILE.loop'.
  344.     `t'
  345.           Dump after the second CSE pass (including the jump
  346.           optimization that sometimes follows CSE), to `FILE.cse2'.
  347.     `f'
  348.           Dump after flow analysis, to `FILE.flow'.
  349.     `c'
  350.           Dump after instruction combination, to `FILE.combine'.
  351.     `S'
  352.           Dump after the first instruction scheduling pass, to
  353.           `FILE.sched'.
  354.     `l'
  355.           Dump after local register allocation, to `FILE.lreg'.
  356.     `g'
  357.           Dump after global register allocation, to `FILE.greg'.
  358.     `R'
  359.           Dump after the second instruction scheduling pass, to
  360.           `FILE.sched2'.
  361.     `J'
  362.           Dump after last jump optimization, to `FILE.jump2'.
  363.     `d'
  364.           Dump after delayed branch scheduling, to `FILE.dbr'.
  365.     `k'
  366.           Dump after conversion from registers to stack, to
  367.           `FILE.stack'.
  368.     `a'
  369.           Produce all the dumps listed above.
  370.     `m'
  371.           Print statistics on memory usage, at the end of the run, to
  372.           standard error.
  373.     `p'
  374.           Annotate the assembler output with a comment indicating which
  375.           pattern and alternative was used.
  376. `-fpretend-float'
  377.      When running a cross-compiler, pretend that the target machine
  378.      uses the same floating point format as the host machine.  This
  379.      causes incorrect output of the actual floating constants, but the
  380.      actual instruction sequence will probably be the same as GNU CC
  381.      would make when running on the target machine.
  382. `-save-temps'
  383.      Store the usual "temporary" intermediate files permanently; place
  384.      them in the current directory and name them based on the source
  385.      file.  Thus, compiling `foo.c' with `-c -save-temps' would produce
  386.      files `foo.i' and `foo.s', as well as `foo.o'.
  387. File: gcc.info,  Node: Optimize Options,  Next: Preprocessor Options,  Prev: Debugging Options,  Up: Invoking GCC
  388. Options That Control Optimization
  389. =================================
  390.    These options control various sorts of optimizations:
  391.      Optimize.  Optimizing compilation takes somewhat more time, and a
  392.      lot more memory for a large function.
  393.      Without `-O', the compiler's goal is to reduce the cost of
  394.      compilation and to make debugging produce the expected results.
  395.      Statements are independent: if you stop the program with a
  396.      breakpoint between statements, you can then assign a new value to
  397.      any variable or change the program counter to any other statement
  398.      in the function and get exactly the results you would expect from
  399.      the source code.
  400.      Without `-O', only variables declared `register' are allocated in
  401.      registers.  The resulting compiled code is a little worse than
  402.      produced by PCC without `-O'.
  403.      With `-O', the compiler tries to reduce code size and execution
  404.      time.
  405.      When `-O' is specified, `-fthread-jumps' and `-fdelayed-branch'
  406.      are turned on.  On some machines other flags may also be turned on.
  407. `-O2'
  408.      Optimize even more.  Nearly all supported optimizations that do not
  409.      involve a space-speed tradeoff are performed.  As compared to `-O',
  410.      this option increases both compilation time and the performance of
  411.      the generated code.
  412.      `-O2' turns on all `-fFLAG' options that enable more optimization,
  413.      except for `-funroll-loops', `-funroll-all-loops' and
  414.      `-fomit-frame-pointer'.
  415.    Options of the form `-fFLAG' specify machine-independent flags. 
  416. Most flags have both positive and negative forms; the negative form of
  417. `-ffoo' would be `-fno-foo'.  In the table below, only one of the forms
  418. is listed--the one which is not the default. You can figure out the
  419. other form by either removing `no-' or adding it.
  420. `-ffloat-store'
  421.      Do not store floating point variables in registers.  This prevents
  422.      undesirable excess precision on machines such as the 68000 where
  423.      the floating registers (of the 68881) keep more precision than a
  424.      `double' is supposed to have.
  425.      For most programs, the excess precision does only good, but a few
  426.      programs rely on the precise definition of IEEE floating point.
  427.      Use `-ffloat-store' for such programs.
  428. `-fno-defer-pop'
  429.      Always pop the arguments to each function call as soon as that
  430.      function returns.  For machines which must pop arguments after a
  431.      function call, the compiler normally lets arguments accumulate on
  432.      the stack for several function calls and pops them all at once.
  433. `-fforce-mem'
  434.      Force memory operands to be copied into registers before doing
  435.      arithmetic on them.  This may produce better code by making all
  436.      memory references potential common subexpressions.  When they are
  437.      not common subexpressions, instruction combination should
  438.      eliminate the separate register-load.  I am interested in hearing
  439.      about the difference this makes.
  440. `-fforce-addr'
  441.      Force memory address constants to be copied into registers before
  442.      doing arithmetic on them.  This may produce better code just as
  443.      `-fforce-mem' may.  I am interested in hearing about the
  444.      difference this makes.
  445. `-fomit-frame-pointer'
  446.      Don't keep the frame pointer in a register for functions that
  447.      don't need one.  This avoids the instructions to save, set up and
  448.      restore frame pointers; it also makes an extra register available
  449.      in many functions.  *It also makes debugging impossible on some
  450.      machines.*
  451.      On some machines, such as the Vax, this flag has no effect, because
  452.      the standard calling sequence automatically handles the frame
  453.      pointer and nothing is saved by pretending it doesn't exist.  The
  454.      machine-description macro `FRAME_POINTER_REQUIRED' controls
  455.      whether a target machine supports this flag.  *Note Registers::.
  456. `-fno-inline'
  457.      Don't pay attention to the `inline' keyword.  Normally this option
  458.      is used to keep the compiler from expanding any functions inline.
  459. `-finline-functions'
  460.      Integrate all simple functions into their callers.  The compiler
  461.      heuristically decides which functions are simple enough to be worth
  462.      integrating in this way.
  463.      If all calls to a given function are integrated, and the function
  464.      is declared `static', then the function is normally not output as
  465.      assembler code in its own right.
  466. `-fkeep-inline-functions'
  467.      Even if all calls to a given function are integrated, and the
  468.      function is declared `static', nevertheless output a separate
  469.      run-time callable version of the function.
  470. `-fno-function-cse'
  471.      Do not put function addresses in registers; make each instruction
  472.      that calls a constant function contain the function's address
  473.      explicitly.
  474.      This option results in less efficient code, but some strange hacks
  475.      that alter the assembler output may be confused by the
  476.      optimizations performed when this option is not used.
  477. `-ffast-math'
  478.      This option allows GCC to violate some ANSI or IEEE
  479.      rules/specifications in the interest of optimizing code for speed.
  480.       For example, it allows the compiler to assume arguments to the
  481.      `sqrt' function are non-negative numbers.
  482.      This option should never be turned on by any `-O' option since it
  483.      can result in incorrect output for programs which depend on an
  484.      exact implementation of IEEE or ANSI rules/specifications for math
  485.      functions.
  486.    The following options control specific optimizations.  The `-O2'
  487. option turns on all of these optimizations except `-funroll-loops' and
  488. `-funroll-all-loops'.  The `-O' option usually turns on the
  489. `-fthread-jumps' and `-fdelayed-branch' options, but specific machines
  490. may change the default optimizations.
  491.    You can use the following flags in the rare cases when "fine-tuning"
  492. of optimizations to be performed is desired.
  493. `-fstrength-reduce'
  494.      Perform the optimizations of loop strength reduction and
  495.      elimination of iteration variables.
  496. `-fthread-jumps'
  497.      Perform optimizations where we check to see if a jump branches to a
  498.      location where another comparison subsumed by the first is found. 
  499.      If so, the first branch is redirected to either the destination of
  500.      the second branch or a point immediately following it, depending
  501.      on whether the condition is known to be true or false.
  502. `-fcse-follow-jumps'
  503.      In common subexpression elimination, scan through jump instructions
  504.      when the target of the jump is not reached by any other path.  For
  505.      example, when CSE encounters an `if' statement with an `else'
  506.      clause, CSE will follow the jump when the condition tested is
  507.      false.
  508. `-fcse-skip-blocks'
  509.      This is similar to `-fcse-follow-jumps', but causes CSE to follow
  510.      jumps which conditionally skip over blocks.  When CSE encounters a
  511.      simple `if' statement with no else clause, `-fcse-skip-blocks'
  512.      causes CSE to follow the jump around the body of the `if'.
  513. `-frerun-cse-after-loop'
  514.      Re-run common subexpression elimination after loop optimizations
  515.      has been performed.
  516. `-fexpensive-optimizations'
  517.      Perform a number of minor optimizations that are relatively
  518.      expensive.
  519. `-fdelayed-branch'
  520.      If supported for the target machine, attempt to reorder
  521.      instructions to exploit instruction slots available after delayed
  522.      branch instructions.
  523. `-fschedule-insns'
  524.      If supported for the target machine, attempt to reorder
  525.      instructions to eliminate execution stalls due to required data
  526.      being unavailable.  This helps machines that have slow floating
  527.      point or memory load instructions by allowing other instructions
  528.      to be issued until the result of the load or floating point
  529.      instruction is required.
  530. `-fschedule-insns2'
  531.      Similar to `-fschedule-insns', but requests an additional pass of
  532.      instruction scheduling after register allocation has been done. 
  533.      This is especially useful on machines with a relatively small
  534.      number of registers and where memory load instructions take more
  535.      than one cycle.
  536. `-fcaller-saves'
  537.      Enable values to be allocated in registers that will be clobbered
  538.      by function calls, by emitting extra instructions to save and
  539.      restore the registers around such calls.  Such allocation is done
  540.      only when it seems to result in better code than would otherwise
  541.      be produced.
  542.      This option is enabled by default on certain machines, usually
  543.      those which have no call-preserved registers to use instead.
  544. `-funroll-loops'
  545.      Perform the optimization of loop unrolling.  This is only done for
  546.      loops whose number of iterations can be determined at compile time
  547.      or run time. `-funroll-loop' implies `-fstrength-reduce' and
  548.      `-frerun-cse-after-loop'.
  549. `-funroll-all-loops'
  550.      Perform the optimization of loop unrolling.  This is done for all
  551.      loops and usually makes programs run more slowly. 
  552.      `-funroll-all-loops' implies `-fstrength-reduce' and
  553.      `-frerun-cse-after-loop'.
  554. `-fno-peephole'
  555.      Disable any machine-specific peephole optimizations.
  556. File: gcc.info,  Node: Preprocessor Options,  Next: Link Options,  Prev: Optimize Options,  Up: Invoking GCC
  557. Options Controlling the Preprocessor
  558. ====================================
  559.    These options control the C preprocessor, which is run on each C
  560. source file before actual compilation.
  561.    If you use the `-E' option, nothing is done except preprocessing.
  562. Some of these options make sense only together with `-E' because they
  563. cause the preprocessor output to be unsuitable for actual compilation.
  564. `-include FILE'
  565.      Process FILE as input before processing the regular input file. In
  566.      effect, the contents of FILE are compiled first.  Any `-D' and
  567.      `-U' options on the command line are always processed before
  568.      `-include FILE', regardless of the order in which they are
  569.      written.  All the `-include' and `-imacros' options are processed
  570.      in the order in which they are written.
  571. `-imacros FILE'
  572.      Process FILE as input, discarding the resulting output, before
  573.      processing the regular input file.  Because the output generated
  574.      from FILE is discarded, the only effect of `-imacros FILE' is to
  575.      make the macros defined in FILE available for use in the main
  576.      input.
  577.      Any `-D' and `-U' options on the command line are always processed
  578.      before `-imacros FILE', regardless of the order in which they are
  579.      written.  All the `-include' and `-imacros' options are processed
  580.      in the order in which they are written.
  581. `-nostdinc'
  582.      Do not search the standard system directories for header files. 
  583.      Only the directories you have specified with `-I' options (and the
  584.      current directory, if appropriate) are searched.  *Note Directory
  585.      Options::, for information on `-I'.
  586.      By using both `-nostdinc' and `-I-', you can limit the include-file
  587.      search path to only those directories you specify explicitly.
  588. `-nostdinc++'
  589.      Do not search for header files in the C++-specific standard
  590.      directories, but do still search the other standard directories.
  591.      (This option is used when building `libg++'.)
  592. `-undef'
  593.      Do not predefine any nonstandard macros.  (Including architecture
  594.      flags).
  595.      Run only the C preprocessor.  Preprocess all the C source files
  596.      specified and output the results to standard output or to the
  597.      specified output file.
  598.      Tell the preprocessor not to discard comments.  Used with the `-E'
  599.      option.
  600.      Tell the preprocessor not to generate `#line' commands. Used with
  601.      the `-E' option.
  602.      Tell the preprocessor to output a rule suitable for `make'
  603.      describing the dependencies of each object file.  For each source
  604.      file, the preprocessor outputs one `make'-rule whose target is the
  605.      object file name for that source file and whose dependencies are
  606.      all the files `#include'd in it.  This rule may be a single line
  607.      or may be continued with `\'-newline if it is long.  The list of
  608.      rules is printed on standard output instead of the preprocessed C
  609.      program.
  610.      `-M' implies `-E'.
  611.      Another way to specify output of a `make' rule is by setting the
  612.      environment variable `DEPENDENCIES_OUTPUT' (*note Environment
  613.      Variables::.).
  614. `-MM'
  615.      Like `-M' but the output mentions only the user header files
  616.      included with `#include "FILE"'.  System header files included
  617.      with `#include <FILE>' are omitted.
  618. `-MD'
  619.      Like `-M' but the dependency information is written to files with
  620.      names made by replacing `.c' with `.d' at the end of the input
  621.      file names.  This is in addition to compiling the file as
  622.      specified--`-MD' does not inhibit ordinary compilation the way
  623.      `-M' does.
  624.      The Mach utility `md' can be used to merge the `.d' files into a
  625.      single dependency file suitable for using with the `make' command.
  626. `-MMD'
  627.      Like `-MD' except mention only user header files, not system
  628.      header files.
  629.      Print the name of each header file used, in addition to other
  630.      normal activities.
  631. `-DMACRO'
  632.      Define macro MACRO with the string `1' as its definition.
  633. `-DMACRO=DEFN'
  634.      Define macro MACRO as DEFN.  All instances of `-D' on the command
  635.      line are processed before any `-U' options.
  636. `-UMACRO'
  637.      Undefine macro MACRO.  `-U' options are evaluated after all `-D'
  638.      options, but before any `-include' and `-imacros' options.
  639. `-dM'
  640.      Tell the preprocessor to output only a list of the macro
  641.      definitions that are in effect at the end of preprocessing.  Used
  642.      with the `-E' option.
  643. `-dD'
  644.      Tell the preprocessing to pass all macro definitions into the
  645.      output, in their proper sequence in the rest of the output.
  646. `-dN'
  647.      Like `-dD' except that the macro arguments and contents are
  648.      omitted. Only `#define NAME' is included in the output.
  649. `-trigraphs'
  650.      Support ANSI C trigraphs.  You don't want to know about this
  651.      brain-damage.  The `-ansi' option also has this effect.
  652. File: gcc.info,  Node: Link Options,  Next: Directory Options,  Prev: Preprocessor Options,  Up: Invoking GCC
  653. Options for Linking
  654. ===================
  655.    These options come into play when the compiler links object files
  656. into an executable output file.  They are meaningless if the compiler is
  657. not doing a link step.
  658. `OBJECT-FILE-NAME'
  659.      A file name that does not end in a special recognized suffix is
  660.      considered to name an object file or library.  (Object files are
  661.      distinguished from libraries by the linker according to the file
  662.      contents.)  If linking is done, these object files are used as
  663.      input to the linker.
  664.      If any of these options is used, then the linker is not run, and
  665.      object file names should not be used as arguments.  *Note Overall
  666.      Options::.
  667. `-lLIBRARY'
  668.      Search the library named LIBRARY when linking.
  669.      It makes a difference where in the command you write this option;
  670.      the linker searches processes libraries and object files in the
  671.      order they are specified.  Thus, `foo.o -lz bar.o' searches
  672.      library `z' after file `foo.o' but before `bar.o'.  If `bar.o'
  673.      refers to functions in `z', those functions may not be loaded.
  674.      The linker searches a standard list of directories for the library,
  675.      which is actually a file named `libLIBRARY.a'.  The linker then
  676.      uses this file as if it had been specified precisely by name.
  677.      The directories searched include several standard system
  678.      directories plus any that you specify with `-L'.
  679.      Normally the files found this way are library files--archive files
  680.      whose members are object files.  The linker handles an archive
  681.      file by scanning through it for members which define symbols that
  682.      have so far been referenced but not defined.  But if the file that
  683.      is found is an ordinary object file, it is linked in the usual
  684.      fashion.  The only difference between using an `-l' option and
  685.      specifying a file name is that `-l' surrounds LIBRARY with `lib'
  686.      and `.a' and searches several directories.
  687. `-nostdlib'
  688.      Don't use the standard system libraries and startup files when
  689.      linking. Only the files you specify will be passed to the linker.
  690. `-static'
  691.      On systems that support dynamic linking, this prevents linking
  692.      with the shared libraries.  On other systems, this option has no
  693.      effect.
  694. `-shared'
  695.      Produce a shared object which can then be linked with other
  696.      objects to form an executable.  Only a few systems support this
  697.      option.
  698. `-symbolic'
  699.      Bind references to global symbols when building a shared object. 
  700.      Warn about any unresolved references (unless overridden by the
  701.      link editor option `-Xlinker -z -Xlinker defs').  Only a few
  702.      systems support this option.
  703. `-Xlinker OPTION'
  704.      Pass OPTION as an option to the linker.  You can use this to
  705.      supply system-specific linker options which GNU CC does not know
  706.      how to recognize.
  707.      If you want to pass an option that takes an argument, you must use
  708.      `-Xlinker' twice, once for the option and once for the argument.
  709.      For example, to pass `-assert definitions', you must write
  710.      `-Xlinker -assert -Xlinker definitions'.  It does not work to write
  711.      `-Xlinker "-assert definitions"', because this passes the entire
  712.      string as a single argument, which is not what the linker expects.
  713. File: gcc.info,  Node: Directory Options,  Next: Target Options,  Prev: Link Options,  Up: Invoking GCC
  714. Options for Directory Search
  715. ============================
  716.    These options specify directories to search for header files, for
  717. libraries and for parts of the compiler:
  718. `-IDIR'
  719.      Append directory DIR to the list of directories searched for
  720.      include files.
  721. `-I-'
  722.      Any directories you specify with `-I' options before the `-I-'
  723.      option are searched only for the case of `#include "FILE"'; they
  724.      are not searched for `#include <FILE>'.
  725.      If additional directories are specified with `-I' options after
  726.      the `-I-', these directories are searched for all `#include'
  727.      directives.  (Ordinarily *all* `-I' directories are used this way.)
  728.      In addition, the `-I-' option inhibits the use of the current
  729.      directory (where the current input file came from) as the first
  730.      search directory for `#include "FILE"'.  There is no way to
  731.      override this effect of `-I-'.  With `-I.' you can specify
  732.      searching the directory which was current when the compiler was
  733.      invoked.  That is not exactly the same as what the preprocessor
  734.      does by default, but it is often satisfactory.
  735.      `-I-' does not inhibit the use of the standard system directories
  736.      for header files.  Thus, `-I-' and `-nostdinc' are independent.
  737. `-LDIR'
  738.      Add directory DIR to the list of directories to be searched for
  739.      `-l'.
  740. `-BPREFIX'
  741.      This option specifies where to find the executables, libraries and
  742.      data files of the compiler itself.
  743.      The compiler driver program runs one or more of the subprograms
  744.      `cpp', `cc1', `as' and `ld'.  It tries PREFIX as a prefix for each
  745.      program it tries to run, both with and without `MACHINE/VERSION/'
  746.      (*note Target Options::.).
  747.      For each subprogram to be run, the compiler driver first tries the
  748.      `-B' prefix, if any.  If that name is not found, or if `-B' was
  749.      not specified, the driver tries two standard prefixes, which are
  750.      `/usr/lib/gcc/' and `/usr/local/lib/gcc-lib/'.  If neither of
  751.      those results in a file name that is found, the unmodified program
  752.      name is searched for using the directories specified in your
  753.      `PATH' environment variable.
  754.      `-B' prefixes that effectively specify directory names also apply
  755.      to libraries in the linker, because the compiler translates these
  756.      options into `-L' options for the linker.
  757.      The run-time support file `libgcc.a' can also be searched for using
  758.      the `-B' prefix, if needed.  If it is not found there, the two
  759.      standard prefixes above are tried, and that is all.  The file is
  760.      left out of the link if it is not found by those means.
  761.      Another way to specify a prefix much like the `-B' prefix is to use
  762.      the environment variable `GCC_EXEC_PREFIX'.  *Note Environment
  763.      Variables::.
  764. File: gcc.info,  Node: Target Options,  Next: Submodel Options,  Prev: Directory Options,  Up: Invoking GCC
  765. Specifying Target Machine and Compiler Version
  766. ==============================================
  767.    By default, GNU CC compiles code for the same type of machine that
  768. you are using.  However, it can also be installed as a cross-compiler,
  769. to compile for some other type of machine.  In fact, several different
  770. configurations of GNU CC, for different target machines, can be
  771. installed side by side.  Then you specify which one to use with the
  772. `-b' option.
  773.    In addition, older and newer versions of GNU CC can be installed side
  774. by side.  One of them (probably the newest) will be the default, but
  775. you may sometimes wish to use another.
  776. `-b MACHINE'
  777.      The argument MACHINE specifies the target machine for compilation.
  778.      This is useful when you have installed GNU CC as a cross-compiler.
  779.      The value to use for MACHINE is the same as was specified as the
  780.      machine type when configuring GNU CC as a cross-compiler.  For
  781.      example, if a cross-compiler was configured with `configure
  782.      i386v', meaning to compile for an 80386 running System V, then you
  783.      would specify `-b i386v' to run that cross compiler.
  784.      When you do not specify `-b', it normally means to compile for the
  785.      same type of machine that you are using.
  786. `-V VERSION'
  787.      The argument VERSION specifies which version of GNU CC to run.
  788.      This is useful when multiple versions are installed.  For example,
  789.      VERSION might be `2.0', meaning to run GNU CC version 2.0.
  790.      The default version, when you do not specify `-V', is controlled
  791.      by the way GNU CC is installed.  Normally, it will be a version
  792.      that is recommended for general use.
  793.    The `-b' and `-V' options actually work by controlling part of the
  794. file name used for the executable files and libraries used for
  795. compilation.  A given version of GNU CC, for a given target machine, is
  796. normally kept in the directory `/usr/local/lib/gcc-lib/MACHINE/VERSION'.
  797.    It follows that sites can customize the effect of `-b' or `-V'
  798. either by changing the names of these directories or adding alternate
  799. names (or symbolic links).  Thus, if `/usr/local/lib/gcc-lib/80386' is
  800. a link to `/usr/local/lib/gcc-lib/i386v', then `-b 80386' will be an
  801. alias for `-b i386v'.
  802.    In one respect, the `-b' or `-V' do not completely change to a
  803. different compiler: the top-level driver program `gcc' that you
  804. originally invoked continues to run and invoke the other executables
  805. (preprocessor, compiler per se, assembler and linker) that do the real
  806. work.  However, since no real work is done in the driver program, it
  807. usually does not matter that the driver program in use is not the one
  808. for the specified target and version.
  809.    The only way that the driver program depends on the target machine is
  810. in the parsing and handling of special machine-specific options.
  811. However, this is controlled by a file which is found, along with the
  812. other executables, in the directory for the specified version and
  813. target machine.  As a result, a single installed driver program adapts
  814. to any specified target machine and compiler version.
  815.    The driver program executable does control one significant thing,
  816. however: the default version and target machine.  Therefore, you can
  817. install different instances of the driver program, compiled for
  818. different targets or versions, under different names.
  819.    For example, if the driver for version 2.0 is installed as `ogcc'
  820. and that for version 2.1 is installed as `gcc', then the command `gcc'
  821. will use version 2.1 by default, while `ogcc' will use 2.0 by default. 
  822. However, you can choose either version with either command with the
  823. `-V' option.
  824. File: gcc.info,  Node: Submodel Options,  Next: Code Gen Options,  Prev: Target Options,  Up: Invoking GCC
  825. Specifying Hardware Models and Configurations
  826. =============================================
  827.    Earlier we discussed the standard option `-b' which chooses among
  828. different installed compilers for completely different target machines,
  829. such as Vax vs. 68000 vs. 80386.
  830.    In addition, each of these target machine types can have its own
  831. special options, starting with `-m', to choose among various hardware
  832. models or configurations--for example, 68010 vs 68020, floating
  833. coprocessor or none.  A single installed version of the compiler can
  834. compile for any model or configuration, according to the options
  835. specified.
  836.    These options are defined by the macro `TARGET_SWITCHES' in the
  837. machine description.  The default for the options is also defined by
  838. that macro, which enables you to change the defaults.
  839. * Menu:
  840. * M680x0 Options::
  841. * VAX Options::
  842. * SPARC Options::
  843. * Convex Options::
  844. * AMD29K Options::
  845. * M88K Options::
  846. * RS/6000 Options::
  847. * RT Options::
  848. * MIPS Options::
  849. * i386 Options::
  850. File: gcc.info,  Node: M680x0 Options,  Next: Vax Options,  Prev: Submodel Options,  Up: Submodel Options
  851. M680x0 Options
  852. --------------
  853.    These are the `-m' options defined for the 68000 series.  The default
  854. values for these options depends on which style of 68000 was selected
  855. when the compiler was configured; the defaults for the most common
  856. choices are given below.
  857. `-m68020'
  858. `-mc68020'
  859.      Generate output for a 68020 (rather than a 68000).  This is the
  860.      default when the compiler is configured for 68020-based systems.
  861. `-m68000'
  862. `-mc68000'
  863.      Generate output for a 68000 (rather than a 68020).  This is the
  864.      default when the compiler is configured for a 68000-based systems.
  865. `-m68881'
  866.      Generate output containing 68881 instructions for floating point.
  867.      This is the default for most 68020 systems unless `-nfp' was
  868.      specified when the compiler was configured.
  869. `-mfpa'
  870.      Generate output containing Sun FPA instructions for floating point.
  871. `-msoft-float'
  872.      Generate output containing library calls for floating point.
  873.      *Warning:* the requisite libraries are not part of GNU CC.
  874.      Normally the facilities of the machine's usual C compiler are
  875.      used, but this can't be done directly in cross-compilation.  You
  876.      must make your own arrangements to provide suitable library
  877.      functions for cross-compilation.
  878. `-mshort'
  879.      Consider type `int' to be 16 bits wide, like `short int'.
  880. `-mnobitfield'
  881.      Do not use the bit-field instructions.  `-m68000' implies
  882.      `-mnobitfield'.
  883. `-mbitfield'
  884.      Do use the bit-field instructions.  `-m68020' implies
  885.      `-mbitfield'.  This is the default if you use the unmodified
  886.      sources configured for a 68020.
  887. `-mrtd'
  888.      Use a different function-calling convention, in which functions
  889.      that take a fixed number of arguments return with the `rtd'
  890.      instruction, which pops their arguments while returning.  This
  891.      saves one instruction in the caller since there is no need to pop
  892.      the arguments there.
  893.      This calling convention is incompatible with the one normally used
  894.      on Unix, so you cannot use it if you need to call libraries
  895.      compiled with the Unix compiler.
  896.      Also, you must provide function prototypes for all functions that
  897.      take variable numbers of arguments (including `printf'); otherwise
  898.      incorrect code will be generated for calls to those functions.
  899.      In addition, seriously incorrect code will result if you call a
  900.      function with too many arguments.  (Normally, extra arguments are
  901.      harmlessly ignored.)
  902.      The `rtd' instruction is supported by the 68010 and 68020
  903.      processors, but not by the 68000.
  904. File: gcc.info,  Node: VAX Options,  Next: Sparc Options,  Prev: M680x0 Options,  Up: Submodel Options
  905. VAX Options
  906. -----------
  907.    These `-m' options are defined for the Vax:
  908. `-munix'
  909.      Do not output certain jump instructions (`aobleq' and so on) that
  910.      the Unix assembler for the Vax cannot handle across long ranges.
  911. `-mgnu'
  912.      Do output those jump instructions, on the assumption that you will
  913.      assemble with the GNU assembler.
  914. `-mg'
  915.      Output code for g-format floating point numbers instead of
  916.      d-format.
  917. File: gcc.info,  Node: Sparc Options,  Next: Convex Options,  Prev: Vax Options,  Up: Submodel Options
  918. SPARC Options
  919. -------------
  920.    These `-m' switches are supported on the Sparc:
  921. `-mforce-align'
  922.      Make sure all objects of type `double' are 8-byte aligned in memory
  923.      and use double-word instructions to reference them.
  924. `-mno-epilogue'
  925.      Generate separate return instructions for `return' statements.
  926.      This has both advantages and disadvantages; I don't recall what
  927.      they are.
  928. File: gcc.info,  Node: Convex Options,  Next: AMD29K Options,  Prev: SPARC Options,  Up: Submodel Options
  929. Convex Options
  930. --------------
  931.    These `-m' options are defined for the Convex:
  932. `-mc1'
  933.      Generate output for a C1.  This is the default when the compiler is
  934.      configured for a C1.
  935. `-mc2'
  936.      Generate output for a C2.  This is the default when the compiler is
  937.      configured for a C2.
  938. `-margcount'
  939.      Generate code which puts an argument count in the word preceding
  940.      each argument list.  Some nonportable Convex and Vax programs need
  941.      this word. (Debuggers don't, except for functions with
  942.      variable-length argument lists; this info is in the symbol table.)
  943. `-mnoargcount'
  944.      Omit the argument count word.  This is the default if you use the
  945.      unmodified sources.
  946. File: gcc.info,  Node: AMD29K Options,  Next: M88K Options,  Prev: Convex Options,  Up: Submodel Options
  947. AMD29K Options
  948. --------------
  949.    These `-m' options are defined for the AMD Am29000:
  950. `-mdw'
  951.      Generate code that assumes the `DW' bit is set, i.e., that byte and
  952.      halfword operations are directly supported by the hardware.  This
  953.      is the default.
  954. `-mnodw'
  955.      Generate code that assumes the `DW' bit is not set.
  956. `-mbw'
  957.      Generate code that assumes the system supports byte and halfword
  958.      write operations.  This is the default.
  959. `-mnbw'
  960.      Generate code that assumes the systems does not support byte and
  961.      halfword write operations.  `-mnbw' implies `-mnodw'.
  962. `-msmall'
  963.      Use a small memory model that assumes that all function addresses
  964.      are either within a single 256 KB segment or at an absolute
  965.      address of less than 256K.  This allows the `call' instruction to
  966.      be used instead of a `const', `consth', `calli' sequence.
  967. `-mlarge'
  968.      Do not assume that the `call' instruction can be used; this is the
  969.      default.
  970. `-m29050'
  971.      Generate code for the Am29050.
  972. `-m29000'
  973.      Generate code for the Am29000.  This is the default.
  974. `-mkernel-registers'
  975.      Generate references to registers `gr64-gr95' instead of
  976.      `gr96-gr127'.  This option can be used when compiling kernel code
  977.      that wants a set of global registers disjoint from that used by
  978.      user-mode code.
  979.      Note that when this option is used, register names in `-f' flags
  980.      must use the normal, user-mode, names.
  981. `-muser-registers'
  982.      Use the normal set of global registers, `gr96-gr127'.  This is the
  983.      default.
  984. `-mstack-check'
  985.      Insert a call to `__msp_check' after each stack adjustment.  This
  986.      is often used for kernel code.
  987.