home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / info / gcc.i07 (.txt) < prev    next >
GNU Info File  |  1993-06-12  |  52KB  |  860 lines

  1. This is Info file gcc.info, produced by Makeinfo-1.47 from the input
  2. file gcc.tex.
  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 "Protect
  11. Your Freedom--Fight `Look And Feel'" are included exactly as in the
  12. original, and provided that the entire resulting derived work is
  13. distributed under the terms of a permission notice identical to this
  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 "Protect Your Freedom--Fight `Look And Feel'", and this
  18. permission notice, may be included in translations approved by the Free
  19. Software Foundation instead of in the original English.
  20. File: gcc.info,  Node: Interoperation,  Next: Incompatibilities,  Prev: Cross-Compiler Problems,  Up: Trouble
  21. Interoperation
  22. ==============
  23.    This section lists various difficulties encountered in using GNU C or
  24. GNU C++ together with other compilers or with the assemblers, linkers,
  25. libraries and debuggers on certain systems.
  26.    * GNU C normally compiles functions to return small structures and
  27.      unions in registers.  Most other compilers arrange to return them
  28.      just like larger structures and unions.  This can lead to trouble
  29.      when you link together code compiled by different compilers. To
  30.      avoid the problem, you can use the option `-fpcc-struct-return'
  31.      when compiling with GNU CC.
  32.    * GNU C++ does not do name mangling in the same way as other C++
  33.      compilers.  This means that object files compiled with one compiler
  34.      cannot be used with another.
  35.      GNU C++ also uses different techniques for arranging virtual
  36.      function tables and the layout of class instances.  In general,
  37.      therefore, linking code compiled with different C++ compilers does
  38.      not work.
  39.    * Older GDB versions sometimes fail to read the output of GNU CC
  40.      version 2.  If you have trouble, get GDB version 4.4 or later.
  41.    * DBX rejects some files produced by GNU CC, though it accepts
  42.      similar constructs in output from PCC.  Until someone can supply a
  43.      coherent description of what is valid DBX input and what is not,
  44.      there is nothing I can do about these problems.  You are on your
  45.      own.
  46.    * The GNU assembler (GAS) does not support PIC.  To generate PIC
  47.      code, you must use some other assembler, such as `/bin/as'.
  48.    * On some BSD systems including some versions of Ultrix, use of
  49.      profiling causes static variable destructors (currently used only
  50.      in C++) not to be run.
  51.    * Use of `-I/usr/include' may cause trouble.
  52.      Many systems come with header files that won't work with GNU CC
  53.      unless corrected by `fixincludes'.  The corrected header files go
  54.      in a new directory; GNU CC searches this directory before
  55.      `/usr/include'. If you use `-I/usr/include', this tells GNU CC to
  56.      search `/usr/include' earlier on, before the corrected headers. 
  57.      The result is that you get the uncorrected header files.
  58.      Instead, you should use these options:
  59.           -I/usr/local/lib/gcc-lib/TARGET/VERSION/include -I/usr/include
  60.    * On a Sparc, GNU CC aligns all values of type `double' on an 8-byte
  61.      boundary, and it expects every `double' to be so aligned.  The Sun
  62.      compiler usually gives `double' values 8-byte alignment, with one
  63.      exception: function arguments of type `double' may not be aligned.
  64.      As a result, if a function compiled with Sun CC takes the address
  65.      of an argument of type `double' and passes this pointer of type
  66.      `double *' to a function compiled with GNU CC, dereferencing the
  67.      pointer may cause a fatal signal.
  68.      One way to solve this problem is to compile your entire program
  69.      with GNU CC.  Another solution is to modify the function that is
  70.      compiled with Sun CC to copy the argument into a local variable;
  71.      local variables are always properly aligned.  A third solution is
  72.      to modify the function that uses the pointer to dereference it via
  73.      the following function `access_double' instead of directly with
  74.      `*':
  75.           inline double
  76.           access_double (double *unaligned_ptr)
  77.           {
  78.             union d2i { double d; int i[2]; };
  79.           
  80.             union d2i *p = (union d2i *) unaligned_ptr;
  81.             union d2i u;
  82.           
  83.             u.i[0] = p->i[0];
  84.             u.i[1] = p->i[1];
  85.           
  86.             return u.d;
  87.           }
  88.      Storing into the pointer can be done likewise with the same union.
  89.    * On a Sun, linking using GNU CC fails to find a shared library and
  90.      reports that the library doesn't exist at all.
  91.      This happens if you are using the GNU linker, because it does only
  92.      static linking and looks only for unshared libraries.  If you have
  93.      a shared library with no unshared counterpart, the GNU linker
  94.      won't find anything.
  95.      We hope to make a linker which supports Sun shared libraries, but
  96.      please don't ask when it will be finished--we don't know.
  97.    * Sun forgot to include a static version of `libdl.a' with some
  98.      versions of SunOS (mainly 4.1).  This results in undefined symbols
  99.      when linking static binaries (that is, if you use `-static').  If
  100.      you see undefined symbols `_dlclose', `_dlsym' or `_dlopen' when
  101.      linking, compile and link against the file `mit/util/misc/dlsym.c'
  102.      from the MIT version of X windows.
  103.    * On the HP PA machine, ADB sometimes fails to work on functions
  104.      compiled with GNU CC.  Specifically, it fails to work on functions
  105.      that use `alloca' or variable-size arrays.  This is because GNU CC
  106.      doesn't generate HP-UX unwind descriptors for such functions.  It
  107.      may even be impossible to generate them.
  108.    * Profiling is not supported on the HP PA machine.  Neither is
  109.      debugging (`-g'), unless you use the preliminary GNU tools (*note
  110.      Installation::.).
  111.    * GNU CC on the HP PA handles variadic function arguments using a
  112.      calling convention incompatible with the HP compiler.  This is
  113.      only a problem for routines that take `va_list' as parameters,
  114.      such as `vprintf'.  This may be fixed eventually.
  115.    * The HP-UX linker has a bug which can cause programs which make use
  116.      of `const' variables to fail in unusual ways.  If your program
  117.      makes use of global `const' variables, we suggest you compile with
  118.      the following additional options:
  119.           -Dconst="" -D__const="" -D__const__="" -fwritable-strings
  120.      This will force the `const' variables into the DATA subspace which
  121.      will avoid the linker bug.
  122.      Another option one might use to work around this problem is
  123.      `-mkernel'.  `-mkernel' changes how the address of variables is
  124.      computed to a sequence less likely to tickle the HP-UX linker bug.
  125.      We hope to work around this problem in GNU CC 2.4, if HP does not
  126.      fix it.
  127.    * Taking the address of a label may generate errors from the HP-UX
  128.      PA assembler.  GAS for the PA does not have this problem.
  129.    * The current version of the assembler (`/bin/as') for the RS/6000
  130.      has certain problems that prevent the `-g' option in GCC from
  131.      working.
  132.      IBM has produced a fixed version of the assembler.  The replacement
  133.      assembler is not a standard component of either AIX 3.1.5 or AIX
  134.      3.2, but is expected to become standard in a future distribution. 
  135.      This assembler is available from IBM as APAR IX22829.  Yet more
  136.      bugs have been fixed in a newer assembler, which will shortly be
  137.      available as APAR IX26107.  See the file `README.RS6000' for more
  138.      details on these assemblers.
  139.    * On the IBM RS/6000, compiling code of the form
  140.           extern int foo;
  141.           
  142.           ... foo ...
  143.           
  144.           static int foo;
  145.      will cause the linker to report an undefined symbol `foo'.
  146.      Although this behavior differs from most other systems, it is not a
  147.      bug because redefining an `extern' variable as `static' is
  148.      undefined in ANSI C.
  149.    * On VMS, GAS versions 1.38.1 and earlier may cause spurious warning
  150.      messages from the linker.  These warning messages complain of
  151.      mismatched psect attributes.  You can ignore them.  *Note VMS
  152.      Install::.
  153.    * On NewsOS version 3, if you include both `stddef.h' and
  154.      `sys/types.h', you get an error because there are two typedefs of
  155.      `size_t'.  You should change `sys/types.h' by adding these lines
  156.      around the definition of `size_t':
  157.           #ifndef _SIZE_T
  158.           #define _SIZE_T
  159.           ACTUAL TYPEDEF HERE
  160.           #endif
  161.    * On the Alliant, the system's own convention for returning
  162.      structures and unions is unusual, and is not compatible with GNU
  163.      CC no matter what options are used.
  164.    * On the IBM RT PC, the MetaWare HighC compiler (hc) uses yet another
  165.      convention for structure and union returning.  Use
  166.      `-mhc-struct-return' to tell GNU CC to use a convention compatible
  167.      with it.
  168.    * On Ultrix, the Fortran compiler expects registers 2 through 5 to
  169.      be saved by function calls.  However, the C compiler uses
  170.      conventions compatible with BSD Unix: registers 2 through 5 may be
  171.      clobbered by function calls.
  172.      GNU CC uses the same convention as the Ultrix C compiler.  You can
  173.      use these options to produce code compatible with the Fortran
  174.      compiler:
  175.           -fcall-saved-r2 -fcall-saved-r3 -fcall-saved-r4 -fcall-saved-r5
  176.    * On the WE32k, you may find that programs compiled with GNU CC do
  177.      not work with the standard shared C ilbrary.  You may need to link
  178.      with the ordinary C compiler.  If you do so, you must specify the
  179.      following options:
  180.           -L/usr/local/lib/gcc-lib/we32k-att-sysv/2.3 -lgcc -lc_s
  181.      The first specifies where to find the library `libgcc.a' specified
  182.      with the `-lgcc' option.
  183.      GNU CC does linking by invoking `ld', just as `cc' does, and there
  184.      is no reason why it *should* matter which compilation program you
  185.      use to invoke `ld'.  If someone tracks this problem down, it can
  186.      probably be fixed easily.
  187. File: gcc.info,  Node: Incompatibilities,  Next: Disappointments,  Prev: Interoperation,  Up: Trouble
  188. Incompatibilities of GNU CC
  189. ===========================
  190.    There are several noteworthy incompatibilities between GNU C and most
  191. existing (non-ANSI) versions of C.  The `-traditional' option
  192. eliminates many of these incompatibilities, *but not all*, by telling
  193. GNU C to behave like the other C compilers.
  194.    * GNU CC normally makes string constants read-only.  If several
  195.      identical-looking string constants are used, GNU CC stores only one
  196.      copy of the string.
  197.      One consequence is that you cannot call `mktemp' with a string
  198.      constant argument.  The function `mktemp' always alters the string
  199.      its argument points to.
  200.      Another consequence is that `sscanf' does not work on some systems
  201.      when passed a string constant as its format control string or
  202.      input. This is because `sscanf' incorrectly tries to write into
  203.      the string constant.  Likewise `fscanf' and `scanf'.
  204.      The best solution to these problems is to change the program to use
  205.      `char'-array variables with initialization strings for these
  206.      purposes instead of string constants.  But if this is not possible,
  207.      you can use the `-fwritable-strings' flag, which directs GNU CC to
  208.      handle string constants the same way most C compilers do.
  209.      `-traditional' also has this effect, among others.
  210.    * `-2147483648' is positive.
  211.      This is because 2147483648 cannot fit in the type `int', so
  212.      (following the ANSI C rules) its data type is `unsigned long int'.
  213.      Negating this value yields 2147483648 again.
  214.    * GNU CC does not substitute macro arguments when they appear inside
  215.      of string constants.  For example, the following macro in GNU CC
  216.           #define foo(a) "a"
  217.      will produce output `"a"' regardless of what the argument A is.
  218.      The `-traditional' option directs GNU CC to handle such cases
  219.      (among others) in the old-fashioned (non-ANSI) fashion.
  220.    * When you use `setjmp' and `longjmp', the only automatic variables
  221.      guaranteed to remain valid are those declared `volatile'.  This is
  222.      a consequence of automatic register allocation.  Consider this
  223.      function:
  224.           jmp_buf j;
  225.           
  226.           foo ()
  227.           {
  228.             int a, b;
  229.           
  230.             a = fun1 ();
  231.             if (setjmp (j))
  232.               return a;
  233.           
  234.             a = fun2 ();
  235.             /* `longjmp (j)' may occur in `fun3'. */
  236.             return a + fun3 ();
  237.           }
  238.      Here `a' may or may not be restored to its first value when the
  239.      `longjmp' occurs.  If `a' is allocated in a register, then its
  240.      first value is restored; otherwise, it keeps the last value stored
  241.      in it.
  242.      If you use the `-W' option with the `-O' option, you will get a
  243.      warning when GNU CC thinks such a problem might be possible.
  244.      The `-traditional' option directs GNU C to put variables in the
  245.      stack by default, rather than in registers, in functions that call
  246.      `setjmp'.  This results in the behavior found in traditional C
  247.      compilers.
  248.    * Programs that use preprocessor directives in the middle of macro
  249.      arguments do not work with GNU CC.  For example, a program like
  250.      this will not work:
  251.           foobar (
  252.           #define luser
  253.                   hack)
  254.      ANSI C does not permit such a construct.  It would make sense to
  255.      support it when `-traditional' is used, but it is too much work to
  256.      implement.
  257.    * Declarations of external variables and functions within a block
  258.      apply only to the block containing the declaration.  In other
  259.      words, they have the same scope as any other declaration in the
  260.      same place.
  261.      In some other C compilers, a `extern' declaration affects all the
  262.      rest of the file even if it happens within a block.
  263.      The `-traditional' option directs GNU C to treat all `extern'
  264.      declarations as global, like traditional compilers.
  265.    * In traditional C, you can combine `long', etc., with a typedef
  266.      name, as shown here:
  267.           typedef int foo;
  268.           typedef long foo bar;
  269.      In ANSI C, this is not allowed: `long' and other type modifiers
  270.      require an explicit `int'.  Because this criterion is expressed by
  271.      Bison grammar rules rather than C code, the `-traditional' flag
  272.      cannot alter it.
  273.    * PCC allows typedef names to be used as function parameters.  The
  274.      difficulty described immediately above applies here too.
  275.    * PCC allows whitespace in the middle of compound assignment
  276.      operators such as `+='.  GNU CC, following the ANSI standard, does
  277.      not allow this.  The difficulty described immediately above
  278.      applies here too.
  279.    * GNU CC complains about unterminated character constants inside of
  280.      preprocessor conditionals that fail.  Some programs have English
  281.      comments enclosed in conditionals that are guaranteed to fail; if
  282.      these comments contain apostrophes, GNU CC will probably report an
  283.      error.  For example, this code would produce an error:
  284.           #if 0
  285.           You can't expect this to work.
  286.           #endif
  287.      The best solution to such a problem is to put the text into an
  288.      actual C comment delimited by `/*...*/'.  However, `-traditional'
  289.      suppresses these error messages.
  290.    * Many user programs contain the declaration `long time ();'.  In the
  291.      past, the system header files on many systems did not actually
  292.      declare `time', so it did not matter what type your program
  293.      declared it to return.  But in systems with ANSI C headers, `time'
  294.      is declared to return `time_t', and if that is not the same as
  295.      `long', then `long time ();' is erroneous.
  296.      The solution is to change your program to use `time_t' as the
  297.      return type of `time'.
  298.    * When compiling functions that return `float', PCC converts it to a
  299.      double.  GNU CC actually returns a `float'.  If you are concerned
  300.      with PCC compatibility, you should declare your functions to return
  301.      `double'; you might as well say what you mean.
  302.    * When compiling functions that return structures or unions, GNU CC
  303.      output code normally uses a method different from that used on most
  304.      versions of Unix.  As a result, code compiled with GNU CC cannot
  305.      call a structure-returning function compiled with PCC, and vice
  306.      versa.
  307.      The method used by GNU CC is as follows: a structure or union
  308.      which is 1, 2, 4 or 8 bytes long is returned like a scalar.  A
  309.      structure or union with any other size is stored into an address
  310.      supplied by the caller (usually in a special, fixed register, but
  311.      on some machines it is passed on the stack).  The
  312.      machine-description macros `STRUCT_VALUE' and
  313.      `STRUCT_INCOMING_VALUE' tell GNU CC where to pass this address.
  314.      By contrast, PCC on most target machines returns structures and
  315.      unions of any size by copying the data into an area of static
  316.      storage, and then returning the address of that storage as if it
  317.      were a pointer value. The caller must copy the data from that
  318.      memory area to the place where the value is wanted.  GNU CC does
  319.      not use this method because it is slower and nonreentrant.
  320.      On some newer machines, PCC uses a reentrant convention for all
  321.      structure and union returning.  GNU CC on most of these machines
  322.      uses a compatible convention when returning structures and unions
  323.      in memory, but still returns small structures and unions in
  324.      registers.
  325.      You can tell GNU CC to use a compatible convention for all
  326.      structure and union returning with the option
  327.      `-fpcc-struct-return'.
  328. File: gcc.info,  Node: Disappointments,  Next: Protoize Caveats,  Prev: Incompatibilities,  Up: Trouble
  329. Disappointments and Misunderstandings
  330. =====================================
  331.    These problems are perhaps regrettable, but we don't know any
  332. practical way around them.
  333.    * Certain local variables aren't recognized by debuggers when you
  334.      compile with optimization.
  335.      This occurs because sometimes GNU CC optimizes the variable out of
  336.      existence.  There is no way to tell the debugger how to compute the
  337.      value such a variable "would have had", and it is not clear that
  338.      would be desirable anyway.  So GNU CC simply does not mention the
  339.      eliminated variable when it writes debugging information.
  340.      You have to expect a certain amount of disagreement between the
  341.      executable and your source code, when you use optimization.
  342.    * Users often think it is a bug when GNU CC reports an error for code
  343.      like this:
  344.           int foo (struct mumble *);
  345.           
  346.           struct mumble { ... };
  347.           
  348.           int foo (struct mumble *x)
  349.           { ... }
  350.      This code really is erroneous, because the scope of `struct
  351.      mumble' in the prototype is limited to the argument list
  352.      containing it. It does not refer to the `struct mumble' defined
  353.      with file scope immediately below--they are two unrelated types
  354.      with similar names in different scopes.
  355.      But in the definition of `foo', the file-scope type is used
  356.      because that is available to be inherited.  Thus, the definition
  357.      and the prototype do not match, and you get an error.
  358.      This behavior may seem silly, but it's what the ANSI standard
  359.      specifies. It is easy enough for you to make your code work by
  360.      moving the definition of `struct mumble' above the prototype. 
  361.      It's not worth being incompatible with ANSI C just to avoid an
  362.      error for the example shown above.
  363.    * Accesses to bitfields even in volatile objects works by accessing
  364.      larger objects, such as a byte or a word.  You cannot rely on what
  365.      size of object is accessed in order to read or write the bitfield;
  366.      it may even vary for a given bitfield according to the precise
  367.      usage.
  368.      If you care about controlling the amount of memory that is
  369.      accessed, use volatile but do not use bitfields.
  370.    * On 68000 systems, you can get paradoxical results if you test the
  371.      precise values of floating point numbers.  For example, you can
  372.      find that a floating point value which is not a NaN is not equal
  373.      to itself. This results from the fact that the the floating point
  374.      registers hold a few more bits of precision than fit in a `double'
  375.      in memory. Compiled code moves values between memory and floating
  376.      point registers at its convenience, and moving them into memory
  377.      truncates them.
  378.      You can partially avoid this problem by using the option
  379.      `-ffloat-store' (*note Optimize Options::.).
  380.    * On the MIPS, variable argument functions using `varargs.h' cannot
  381.      have a floating point value for the first argument.  The reason
  382.      for this is that in the absence of a prototype in scope, if the
  383.      first argument is a floating point, it is passed in a floating
  384.      point register, rather than an integer resgister.
  385.      If the code is rewritten to use the ANSI standard `stdarg.h'
  386.      method of variable arguments, and the prototype is in scope at the
  387.      time of the call, everything will work fine.
  388. File: gcc.info,  Node: Protoize Caveats,  Next: Non-bugs,  Prev: Disappointments,  Up: Trouble
  389. Caveats of using `protoize'
  390. ===========================
  391.    The conversion programs `protoize' and `unprotoize' can sometimes
  392. change a source file in a way that won't work unless you rearrange it.
  393.    * `protoize' can insert references to a type name or type tag before
  394.      the definition, or in a file where they are not defined.
  395.      If this happens, compiler error messages should show you where the
  396.      new references are, so fixing the file by hand is straightforward.
  397.    * There are some C constructs which `protoize' cannot figure out.
  398.      For example, it can't determine argument types for declaring a
  399.      pointer-to-function variable; this you must do by hand.  `protoize'
  400.      inserts a comment containing `???' each time it finds such a
  401.      variable; so you can find all such variables by searching for this
  402.      string.  ANSI C does not require declaring the argument types of
  403.      pointer-to-function types.
  404.    * Using `unprotoize' can easily introduce bugs.  If the program
  405.      relied on prototypes to bring about conversion of arguments, these
  406.      conversions will not take place in the program without prototypes.
  407.      One case in which you can be sure `unprotoize' is safe is when you
  408.      are removing prototypes that were made with `protoize'; if the
  409.      program worked before without any prototypes, it will work again
  410.      without them.
  411.      You can find all the places where this problem might occur by
  412.      compiling the program with the `-Wconversion' option.  It prints a
  413.      warning whenever an argument is converted.
  414.    * Both conversion programs can be confused if there are macro calls
  415.      in and around the text to be converted.  In other words, the
  416.      standard syntax for a declaration or definition must not result
  417.      from expanding a macro. This problem is inherent in the design of
  418.      C and cannot be fixed.  If only a few functions have confusing
  419.      macro calls, you can easily convert them manually.
  420.    * `protoize' cannot get the argument types for a function whose
  421.      definition was not actually compiled due to preprocessor
  422.      conditionals. When this happens, `protoize' changes nothing in
  423.      regard to such a function.  `protoize' tries to detect such
  424.      instances and warn about them.
  425.      You can generally work around this problem by using `protoize' step
  426.      by step, each time specifying a different set of `-D' options for
  427.      compilation, until all of the functions have been converted. 
  428.      There is no automatic way to verify that you have got them all,
  429.      however.
  430.    * Confusion may result if there is an occasion to convert a function
  431.      declaration or definition in a region of source code where there
  432.      is more than one formal parameter list present.  Thus, attempts to
  433.      convert code containing multiple (conditionally compiled) versions
  434.      of a single function header (in the same vicinity) may not produce
  435.      the desired (or expected) results.
  436.      If you plan on converting source files which contain such code, it
  437.      is recommended that you first make sure that each conditionally
  438.      compiled region of source code which contains an alternative
  439.      function header also contains at least one additional follower
  440.      token (past the final right parenthesis of the function header). 
  441.      This should circumvent the problem.
  442.    * `unprotoize' can become confused when trying to convert a function
  443.      definition or declaration which contains a declaration for a
  444.      pointer-to-function formal argument which has the same name as the
  445.      function being defined or declared.  We recommand you avoid such
  446.      choices of formal parameter names.
  447.    * You might also want to correct some of the indentation by hand and
  448.      break long lines.  (The conversion programs don't write lines
  449.      longer than eighty characters in any case.)
  450. File: gcc.info,  Node: Non-bugs,  Prev: Protoize Caveats,  Up: Trouble
  451. Certain Changes We Don't Want to Make
  452. =====================================
  453.    This section lists changes that people frequently request, but which
  454. we do not make because we think GNU CC is better without them.
  455.    * Checking the number and type of arguments to a function which has
  456.      an old-fashioned definition and no prototype.
  457.      Such a feature would work only occasionally--only for calls that
  458.      appear in the same file as the called function, following the
  459.      definition.  The only way to check all calls reliably is to add a
  460.      prototype for the function.  But adding a prototype eliminates the
  461.      motivation for this feature.  So the feature is not worthwhile.
  462.    * Warning about using an expression whose type is signed as a shift
  463.      count.
  464.      Shift count operands are probably signed more often than unsigned.
  465.      Warning about this would cause far more annoyance than good.
  466.    * Warning about assigning a signed value to an unsigned variable.
  467.      Such assignments must be very common; warning about them would
  468.      cause more annoyance than good.
  469.    * Warning about unreachable code.
  470.      It's very common to have unreachable code in machine-generated
  471.      programs.  For example, this happens normally in some files of GNU
  472.      C itself.
  473.    * Warning when a non-void function value is ignored.
  474.      Coming as I do from a Lisp background, I balk at the idea that
  475.      there is something dangerous about discarding a value.  There are
  476.      functions that return values which some callers may find useful;
  477.      it makes no sense to clutter the program with a cast to `void'
  478.      whenever the value isn't useful.
  479.    * Assuming (for optimization) that the address of an external symbol
  480.      is never zero.
  481.      This assumption is false on certain systems when `#pragma weak' is
  482.      used.
  483.    * Making `-fshort-enums' the default.
  484.      This would cause storage layout to be incompatible with most other
  485.      C compilers.  And it doesn't seem very important, given that you
  486.      can get the same result in other ways.  The case where it matters
  487.      most is when the enumeration-valued object is inside a structure,
  488.      and in that case you can specify a field width explicitly.
  489.    * Making bitfields unsigned by default on particular machines where
  490.      "the ABI standard" says to do so.
  491.      The ANSI C standard leaves it up to the implementation whether a
  492.      bitfield declared plain `int' is signed or not.  This in effect
  493.      creates two alternative dialects of C.
  494.      The GNU C compiler supports both dialects; you can specify the
  495.      dialect you want with the option `-fsigned-bitfields' or
  496.      `-funsigned-bitfields'.  However, this leaves open the question of
  497.      which dialect to use by default.
  498.      Currently, the preferred dialect makes plain bitfields signed,
  499.      because this is simplest.  Since `int' is the same as `signed int'
  500.      in every other context, it is cleanest for them to be the same in
  501.      bitfields as well.
  502.      Some computer manufacturers have published Application Binary
  503.      Interface standards which specify that plain bitfields should be
  504.      unsigned.  It is a mistake, however, to say anything about this
  505.      issue in an ABI.  This is because the handling of plain bitfields
  506.      distinguishes two dialects of C. Both dialects are meaningful on
  507.      every type of machine.  Whether a particular object file was
  508.      compiled using signed bitfields or unsigned is of no concern to
  509.      other object files, even if they access the same bitfields in the
  510.      same data structures.
  511.      A given program is written in one or the other of these two
  512.      dialects. The program stands a chance to work on most any machine
  513.      if it is compiled with the proper dialect.  It is unlikely to work
  514.      at all if compiled with the wrong dialect.
  515.      Many users appreciate the GNU C compiler because it provides an
  516.      environment that is uniform across machines.  These users would be
  517.      inconvenienced if the compiler treated plain bitfields differently
  518.      on certain machines.
  519.      Occasionally users write programs intended only for a particular
  520.      machine type.  On these occasions, the users would benefit if the
  521.      GNU C compiler were to support by default the same dialect as the
  522.      other compilers on that machine.  But such applications are rare. 
  523.      And users writing a program to run on more than one type of
  524.      machine cannot possibly benefit from this kind of compatibility.
  525.      This is why GNU CC does and will treat plain bitfields in the same
  526.      fashion on all types of machines (by default).
  527.      There are some arguments for making bitfields unsigned by default
  528.      on all machines.  If, for example, this becomes a universal de
  529.      facto standard, it would make sense for GNU CC to go along with
  530.      it.  This is something to be considered in the future.
  531.      (Of course, users strongly concerned about portability should
  532.      indicate explicitly in each bitfield whether it is signed or not. 
  533.      In this way, they write programs which have the same meaning in
  534.      both C dialects.)
  535.    * Undefining `__STDC__' when `-ansi' is not used.
  536.      Currently, GNU CC defines `__STDC__' as long as you don't use
  537.      `-traditional'.  This provides good results in practice.
  538.      Programmers normally use conditionals on `__STDC__' to ask whether
  539.      it is safe to use certain features of ANSI C, such as function
  540.      prototypes or ANSI token concatenation.  Since plain `gcc' supports
  541.      all the features of ANSI C, the correct answer to these questions
  542.      is "yes".
  543.      Some users try to use `__STDC__' to check for the availability of
  544.      certain library facilities.  This is actually incorrect usage in
  545.      an ANSI C program, because the ANSI C standard says that a
  546.      conforming freestanding implementation should define `__STDC__'
  547.      even though it does not have the library facilities.  `gcc -ansi
  548.      -pedantic' is a conforming freestanding implementation, and it is
  549.      therefore required to define `__STDC__', even though it does not
  550.      come with an ANSI C library.
  551.      Sometimes people say that defining `__STDC__' in a compiler that
  552.      does not completely conform to the ANSI C standard somehow
  553.      violates the standard.  This is illogical.  The standard is a
  554.      standard for compilers that claim to support ANSI C, such as `gcc
  555.      -ansi'--not for other compilers such as plain `gcc'.  Whatever the
  556.      ANSI C standard says is relevant to the design of plain `gcc'
  557.      without `-ansi' only for pragmatic reasons, not as a requirement.
  558.    * Undefining `__STDC__' in C++.
  559.      Programs written to compile with C++-to-C translators get the
  560.      value of `__STDC__' that goes with the C compiler that is
  561.      subsequently used.  These programs must test `__STDC__' to
  562.      determine what kind of C preprocessor that compiler uses: whether
  563.      they should concatenate tokens in the ANSI C fashion or in the
  564.      traditional fashion.
  565.      These programs work properly with GNU C++ if `__STDC__' is defined.
  566.      They would not work otherwise.
  567.      In addition, many header files are written to provide prototypes
  568.      in ANSI C but not in traditional C.  Many of these header files
  569.      can work without change in C++ provided `__STDC__' is defined.  If
  570.      `__STDC__' is not defined, they will all fail, and will all need
  571.      to be changed to test explicitly for C++ as well.
  572.    * Deleting "empty" loops.
  573.      GNU CC does not delete "empty" loops because the most likely reason
  574.      you would put one in a program is to have a delay.  Deleting them
  575.      will not make real programs run any faster, so it would be
  576.      pointless.
  577.      It would be different if optimization of a nonempty loop could
  578.      produce an empty one.  But this generally can't happen.
  579. File: gcc.info,  Node: Bugs,  Next: Service,  Prev: Trouble,  Up: Top
  580. Reporting Bugs
  581. **************
  582.    Your bug reports play an essential role in making GNU CC reliable.
  583.    When you encounter a problem, the first thing to do is to see if it
  584. is already known.  *Note Trouble::.  If it isn't known, then you should
  585. report the problem.
  586.    Reporting a bug may help you by bringing a solution to your problem,
  587. or it may not.  (If it does not, look in the service directory; see
  588. *Note Service::.)  In any case, the principal function of a bug report
  589. is to help the entire community by making the next version of GNU CC
  590. work better.  Bug reports are your contribution to the maintenance of
  591. GNU CC.
  592.    In order for a bug report to serve its purpose, you must include the
  593. information that makes for fixing the bug.
  594. * Menu:
  595. * Criteria:  Bug Criteria.   Have you really found a bug?
  596. * Where: Bug Lists.         Where to send your bug report.
  597. * Reporting: Bug Reporting.  How to report a bug effectively.
  598. * Patches: Sending Patches.  How to send a patch for GNU CC.
  599. * Known: Trouble.            Known problems.
  600. * Help: Service.             Where to ask for help.
  601. File: gcc.info,  Node: Bug Criteria,  Next: Bug Lists,  Up: Bugs
  602. Have You Found a Bug?
  603. =====================
  604.    If you are not sure whether you have found a bug, here are some
  605. guidelines:
  606.    * If the compiler gets a fatal signal, for any input whatever, that
  607.      is a compiler bug.  Reliable compilers never crash.
  608.    * If the compiler produces invalid assembly code, for any input
  609.      whatever (except an `asm' statement), that is a compiler bug,
  610.      unless the compiler reports errors (not just warnings) which would
  611.      ordinarily prevent the assembler from being run.
  612.    * If the compiler produces valid assembly code that does not
  613.      correctly execute the input source code, that is a compiler bug.
  614.      However, you must double-check to make sure, because you may have
  615.      run into an incompatibility between GNU C and traditional C (*note
  616.      Incompatibilities::.).  These incompatibilities might be considered
  617.      bugs, but they are inescapable consequences of valuable features.
  618.      Or you may have a program whose behavior is undefined, which
  619.      happened by chance to give the desired results with another C or
  620.      C++ compiler.
  621.      For example, in many nonoptimizing compilers, you can write `x;'
  622.      at the end of a function instead of `return x;', with the same
  623.      results.  But the value of the function is undefined if `return'
  624.      is omitted; it is not a bug when GNU CC produces different results.
  625.      Problems often result from expressions with two increment
  626.      operators, as in `f (*p++, *p++)'.  Your previous compiler might
  627.      have interpreted that expression the way you intended; GNU CC might
  628.      interpret it another way.  Neither compiler is wrong.  The bug is
  629.      in your code.
  630.      After you have localized the error to a single source line, it
  631.      should be easy to check for these things.  If your program is
  632.      correct and well defined, you have found a compiler bug.
  633.    * If the compiler produces an error message for valid input, that is
  634.      a compiler bug.
  635.    * If the compiler does not produce an error message for invalid
  636.      input, that is a compiler bug.  However, you should note that your
  637.      idea of "invalid input" might be my idea of "an extension" or
  638.      "support for traditional practice".
  639.    * If you are an experienced user of C or C++ compilers, your
  640.      suggestions for improvement of GNU CC or GNU C++ are welcome in
  641.      any case.
  642. File: gcc.info,  Node: Bug Lists,  Next: Bug Reporting,  Prev: Bug Criteria,  Up: Bugs
  643. Where to Report Bugs
  644. ====================
  645.    Send bug reports for GNU C to one of these addresses:
  646.      bug-gcc@prep.ai.mit.edu
  647.      {ucbvax|mit-eddie|uunet}!prep.ai.mit.edu!bug-gcc
  648.    Send bug reports for GNU C++ to one of these addresses:
  649.      bug-g++@prep.ai.mit.edu
  650.      {ucbvax|mit-eddie|uunet}!prep.ai.mit.edu!bug-g++
  651.    *Do not send bug reports to `help-gcc', or to the newsgroup
  652. `gnu.gcc.help'.*  Most users of GNU CC do not want to receive bug
  653. reports.  Those that do, have asked to be on `bug-gcc' and/or `bug-g++'.
  654.    The mailing lists `bug-gcc' and `bug-g++' both have newsgroups which
  655. serve as repeaters: `gnu.gcc.bug' and `gnu.g++.bug'. Each mailing list
  656. and its newsgroup carry exactly the same messages.
  657.    Often people think of posting bug reports to the newsgroup instead of
  658. mailing them.  This appears to work, but it has one problem which can be
  659. crucial: a newsgroup posting does not contain a mail path back to the
  660. sender.  Thus, if maintainers need more information, they may be unable
  661. to reach you.  For this reason, you should always send bug reports by
  662. mail to the proper mailing list.
  663.    As a last resort, send bug reports on paper to:
  664.      GNU Compiler Bugs
  665.      Free Software Foundation
  666.      675 Mass Ave
  667.      Cambridge, MA 02139
  668. File: gcc.info,  Node: Bug Reporting,  Next: Sending Patches,  Prev: Bug Lists,  Up: Bugs
  669. How to Report Bugs
  670. ==================
  671.    The fundamental principle of reporting bugs usefully is this:
  672. *report all the facts*.  If you are not sure whether to state a fact or
  673. leave it out, state it!
  674.    Often people omit facts because they think they know what causes the
  675. problem and they conclude that some details don't matter.  Thus, you
  676. might assume that the name of the variable you use in an example does
  677. not matter. Well, probably it doesn't, but one cannot be sure.  Perhaps
  678. the bug is a stray memory reference which happens to fetch from the
  679. location where that name is stored in memory; perhaps, if the name were
  680. different, the contents of that location would fool the compiler into
  681. doing the right thing despite the bug.  Play it safe and give a
  682. specific, complete example.  That is the easiest thing for you to do,
  683. and the most helpful.
  684.    Keep in mind that the purpose of a bug report is to enable someone to
  685. fix the bug if it is not known.  It isn't very important what happens if
  686. the bug is already known.  Therefore, always write your bug reports on
  687. the assumption that the bug is not known.
  688.    Sometimes people give a few sketchy facts and ask, "Does this ring a
  689. bell?"  This cannot help us fix a bug, so it is basically useless.  We
  690. respond by asking for enough details to enable us to investigate. You
  691. might as well expedite matters by sending them to begin with.
  692.    Try to make your bug report self-contained.  If we have to ask you
  693. for more information, it is best if you include all the previous
  694. information in your response, as well as the information that was
  695. missing.
  696.    To enable someone to investigate the bug, you should include all
  697. these things:
  698.    * The version of GNU CC.  You can get this by running it with the
  699.      `-v' option.
  700.      Without this, we won't know whether there is any point in looking
  701.      for the bug in the current version of GNU CC.
  702.    * A complete input file that will reproduce the bug.  If the bug is
  703.      in the C preprocessor, send a source file and any header files
  704.      that it requires.  If the bug is in the compiler proper (`cc1'),
  705.      run your source file through the C preprocessor by doing `gcc -E
  706.      SOURCEFILE > OUTFILE', then include the contents of OUTFILE in the
  707.      bug report.  (When you do this, use the same `-I', `-D' or `-U'
  708.      options that you used in actual compilation.)
  709.      A single statement is not enough of an example.  In order to
  710.      compile it, it must be embedded in a complete file of compiler
  711.      input; and the bug might depend on the details of how this is done.
  712.      Without a real example one can compile, all anyone can do about
  713.      your bug report is wish you luck.  It would be futile to try to
  714.      guess how to provoke the bug.  For example, bugs in register
  715.      allocation and reloading frequently depend on every little detail
  716.      of the function they happen in.
  717.      Even if the input file that fails comes from a GNU program, you
  718.      should still send the complete test case.  Don't ask the GNU CC
  719.      maintainers to do the extra work of obtaining the program in
  720.      question--they are all overworked as it is.  Also, the problem may
  721.      depend on what is in the header files on your system; it is
  722.      unreliable for the GNU CC maintainers to try the problem with the
  723.      header files available to them.  By sending CPP output, you can
  724.      eliminate this source of uncertainty.
  725.    * The command arguments you gave GNU CC or GNU C++ to compile that
  726.      example and observe the bug.  For example, did you use `-O'?  To
  727.      guarantee you won't omit something important, list all the options.
  728.      If we were to try to guess the arguments, we would probably guess
  729.      wrong and then we would not encounter the bug.
  730.    * The type of machine you are using, and the operating system name
  731.      and version number.
  732.    * The operands you gave to the `configure' command when you installed
  733.      the compiler.
  734.    * A complete list of any modifications you have made to the compiler
  735.      source.  (We don't promise to investigate the bug unless it
  736.      happens in an unmodified compiler.  But if you've made
  737.      modifications and don't tell us, then you are sending us on a wild
  738.      goose chase.)
  739.      Be precise about these changes.  A description in English is not
  740.      enough--send a context diff for them.
  741.      Adding files of your own (such as a machine description for a
  742.      machine we don't support) is a modification of the compiler source.
  743.    * Details of any other deviations from the standard procedure for
  744.      installing GNU CC.
  745.    * A description of what behavior you observe that you believe is
  746.      incorrect.  For example, "The compiler gets a fatal signal," or,
  747.      "The assembler instruction at line 208 in the output is incorrect."
  748.      Of course, if the bug is that the compiler gets a fatal signal,
  749.      then one can't miss it.  But if the bug is incorrect output, the
  750.      maintainer might not notice unless it is glaringly wrong.  None of
  751.      us has time to study all the assembler code from a 50-line C
  752.      program just on the chance that one instruction might be wrong. 
  753.      We need *you* to do this part!
  754.      Even if the problem you experience is a fatal signal, you should
  755.      still say so explicitly.  Suppose something strange is going on,
  756.      such as, your copy of the compiler is out of synch, or you have
  757.      encountered a bug in the C library on your system.  (This has
  758.      happened!)  Your copy might crash and the copy here would not.  If
  759.      you said to expect a crash, then when the compiler here fails to
  760.      crash, we would know that the bug was not happening.  If you don't
  761.      say to expect a crash, then we would not know whether the bug was
  762.      happening.  We would not be able to draw any conclusion from our
  763.      observations.
  764.      If the problem is a diagnostic when compiling GNU CC with some
  765.      other compiler, say whether it is a warning or an error.
  766.      Often the observed symptom is incorrect output when your program
  767.      is run. Sad to say, this is not enough information unless the
  768.      program is short and simple.  None of us has time to study a large
  769.      program to figure out how it would work if compiled correctly,
  770.      much less which line of it was compiled wrong.  So you will have
  771.      to do that.  Tell us which source line it is, and what incorrect
  772.      result happens when that line is executed.  A person who
  773.      understands the program can find this as easily as finding a bug
  774.      in the program itself.
  775.    * If you send examples of assembler code output from GNU CC or GNU
  776.      C++, please use `-g' when you make them.  The debugging information
  777.      includes source line numbers which are essential for correlating
  778.      the output with the input.
  779.    * If you wish to mention something in the GNU CC source, refer to it
  780.      by context, not by line number.
  781.      The line numbers in the development sources don't match those in
  782.      your sources.  Your line numbers would convey no useful
  783.      information to the maintainers.
  784.    * Additional information from a debugger might enable someone to
  785.      find a problem on a machine which he does not have available. 
  786.      However, you need to think when you collect this information if
  787.      you want it to have any chance of being useful.
  788.      For example, many people send just a backtrace, but that is never
  789.      useful by itself.  A simple backtrace with arguments conveys little
  790.      about GNU CC because the compiler is largely data-driven; the same
  791.      functions are called over and over for different RTL insns, doing
  792.      different things depending on the details of the insn.
  793.      Most of the arguments listed in the backtrace are useless because
  794.      they are pointers to RTL list structure.  The numeric values of the
  795.      pointers, which the debugger prints in the backtrace, have no
  796.      significance whatever; all that matters is the contents of the
  797.      objects they point to (and most of the contents are other such
  798.      pointers).
  799.      In addition, most compiler passes consist of one or more loops that
  800.      scan the RTL insn sequence.  The most vital piece of information
  801.      about such a loop--which insn it has reached--is usually in a
  802.      local variable, not in an argument.
  803.      What you need to provide in addition to a backtrace are the values
  804.      of the local variables for several stack frames up.  When a local
  805.      variable or an argument is an RTX, first print its value and then
  806.      use the GDB command `pr' to print the RTL expression that it points
  807.      to.  (If GDB doesn't run on your machine, use your debugger to call
  808.      the function `debug_rtx' with the RTX as an argument.)  In
  809.      general, whenever a variable is a pointer, its value is no use
  810.      without the data it points to.
  811.    Here are some things that are not necessary:
  812.    * A description of the envelope of the bug.
  813.      Often people who encounter a bug spend a lot of time investigating
  814.      which changes to the input file will make the bug go away and which
  815.      changes will not affect it.
  816.      This is often time consuming and not very useful, because the way
  817.      we will find the bug is by running a single example under the
  818.      debugger with breakpoints, not by pure deduction from a series of
  819.      examples.  You might as well save your time for something else.
  820.      Of course, if you can find a simpler example to report *instead* of
  821.      the original one, that is a convenience.  Errors in the output
  822.      will be easier to spot, running under the debugger will take less
  823.      time, etc. Most GNU CC bugs involve just one function, so the most
  824.      straightforward way to simplify an example is to delete all the
  825.      function definitions except the one where the bug occurs.  Those
  826.      earlier in the file may be replaced by external declarations if
  827.      the crucial function depends on them.  (Exception: inline
  828.      functions may affect compilation of functions defined later in the
  829.      file.)
  830.      However, simplification is not vital; if you don't want to do this,
  831.      report the bug anyway and send the entire test case you used.
  832.    * In particular, some people insert conditionals `#ifdef BUG' around
  833.      a statement which, if removed, makes the bug not happen.  These
  834.      are just clutter; we won't pay any attention to them anyway. 
  835.      Besides, you should send us cpp output, and that can't have
  836.      conditionals.
  837.    * A patch for the bug.
  838.      A patch for the bug is useful if it is a good one.  But don't omit
  839.      the necessary information, such as the test case, on the
  840.      assumption that a patch is all we need.  We might see problems
  841.      with your patch and decide to fix the problem another way, or we
  842.      might not understand it at all.
  843.      Sometimes with a program as complicated as GNU CC it is very hard
  844.      to construct an example that will make the program follow a
  845.      certain path through the code.  If you don't send the example, we
  846.      won't be able to construct one, so we won't be able to verify that
  847.      the bug is fixed.
  848.      And if we can't understand what bug you are trying to fix, or why
  849.      your patch should be an improvement, we won't install it.  A test
  850.      case will help us to understand.
  851.      *Note Sending Patches::, for guidelines on how to make it easy for
  852.      us to understand and install your patches.
  853.    * A guess about what the bug is or what it depends on.
  854.      Such guesses are usually wrong.  Even I can't guess right about
  855.      such things without first using the debugger to find the facts.
  856.    * A core dump file.
  857.      We have no way of examining a core dump for your type of machine
  858.      unless we have an identical system--and if we do have one, we
  859.      should be able to reproduce the crash ourselves.
  860.