home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / programm / language / gcc222.lha / info / gcc.info-6 (.txt) < prev    next >
GNU Info File  |  1992-07-19  |  48KB  |  834 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: Incompatibilities,  Next: Disappointments,  Prev: Interoperation,  Up: Trouble
  21. Incompatibilities of GNU CC
  22. ===========================
  23.    There are several noteworthy incompatibilities between GNU C and most
  24. existing (non-ANSI) versions of C.  The `-traditional' option
  25. eliminates many of these incompatibilities, *but not all*, by telling
  26. GNU C to behave like the other C compilers.
  27.    * GNU CC normally makes string constants read-only.  If several
  28.      identical-looking string constants are used, GNU CC stores only one
  29.      copy of the string.
  30.      One consequence is that you cannot call `mktemp' with a string
  31.      constant argument.  The function `mktemp' always alters the string
  32.      its argument points to.
  33.      Another consequence is that `sscanf' does not work on some systems
  34.      when passed a string constant as its format control string or
  35.      input. This is because `sscanf' incorrectly tries to write into
  36.      the string constant.  Likewise `fscanf' and `scanf'.
  37.      The best solution to these problems is to change the program to use
  38.      `char'-array variables with initialization strings for these
  39.      purposes instead of string constants.  But if this is not possible,
  40.      you can use the `-fwritable-strings' flag, which directs GNU CC to
  41.      handle string constants the same way most C compilers do.
  42.      `-traditional' also has this effect, among others.
  43.    * `-2147483648' is positive.
  44.      This is because 2147483648 cannot fit in the type `int', so
  45.      (following the ANSI C rules) its data type is `unsigned long int'.
  46.      Negating this value yields 2147483648 again.
  47.    * GNU CC does not substitute macro arguments when they appear inside
  48.      of string constants.  For example, the following macro in GNU CC
  49.           #define foo(a) "a"
  50.      will produce output `"a"' regardless of what the argument A is.
  51.      The `-traditional' option directs GNU CC to handle such cases
  52.      (among others) in the old-fashioned (non-ANSI) fashion.
  53.    * When you use `setjmp' and `longjmp', the only automatic variables
  54.      guaranteed to remain valid are those declared `volatile'.  This is
  55.      a consequence of automatic register allocation.  Consider this
  56.      function:
  57.           jmp_buf j;
  58.           
  59.           foo ()
  60.           {
  61.             int a, b;
  62.           
  63.             a = fun1 ();
  64.             if (setjmp (j))
  65.               return a;
  66.           
  67.             a = fun2 ();
  68.             /* `longjmp (j)' may occur in `fun3'. */
  69.             return a + fun3 ();
  70.           }
  71.      Here `a' may or may not be restored to its first value when the
  72.      `longjmp' occurs.  If `a' is allocated in a register, then its
  73.      first value is restored; otherwise, it keeps the last value stored
  74.      in it.
  75.      If you use the `-W' option with the `-O' option, you will get a
  76.      warning when GNU CC thinks such a problem might be possible.
  77.      The `-traditional' option directs GNU C to put variables in the
  78.      stack by default, rather than in registers, in functions that call
  79.      `setjmp'.  This results in the behavior found in traditional C
  80.      compilers.
  81.    * Programs that use preprocessor directives in the middle of macro
  82.      arguments do not work with GNU CC.  For example, a program like
  83.      this will not work:
  84.           foobar (
  85.           #define luser
  86.                   hack)
  87.      ANSI C does not permit such a construct.  It would make sense to
  88.      support it when `-traditional' is used, but it is too much work to
  89.      implement.
  90.    * Declarations of external variables and functions within a block
  91.      apply only to the block containing the declaration.  In other
  92.      words, they have the same scope as any other declaration in the
  93.      same place.
  94.      In some other C compilers, a `extern' declaration affects all the
  95.      rest of the file even if it happens within a block.
  96.      The `-traditional' option directs GNU C to treat all `extern'
  97.      declarations as global, like traditional compilers.
  98.    * In traditional C, you can combine `long', etc., with a typedef
  99.      name, as shown here:
  100.           typedef int foo;
  101.           typedef long foo bar;
  102.      In ANSI C, this is not allowed: `long' and other type modifiers
  103.      require an explicit `int'.  Because this criterion is expressed by
  104.      Bison grammar rules rather than C code, the `-traditional' flag
  105.      cannot alter it.
  106.    * PCC allows typedef names to be used as function parameters.  The
  107.      difficulty described immediately above applies here too.
  108.    * PCC allows whitespace in the middle of compound assignment
  109.      operators such as `+='.  GNU CC, following the ANSI standard, does
  110.      not allow this.  The difficulty described immediately above
  111.      applies here too.
  112.    * GNU CC will flag unterminated character constants inside of
  113.      preprocessor conditionals that fail.  Some programs have English
  114.      comments enclosed in conditionals that are guaranteed to fail; if
  115.      these comments contain apostrophes, GNU CC will probably report an
  116.      error.  For example, this code would produce an error:
  117.           #if 0
  118.           You can't expect this to work.
  119.           #endif
  120.      The best solution to such a problem is to put the text into an
  121.      actual C comment delimited by `/*...*/'.  However, `-traditional'
  122.      suppresses these error messages.
  123.    * When compiling functions that return `float', PCC converts it to a
  124.      double.  GNU CC actually returns a `float'.  If you are concerned
  125.      with PCC compatibility, you should declare your functions to return
  126.      `double'; you might as well say what you mean.
  127.    * When compiling functions that return structures or unions, GNU CC
  128.      output code normally uses a method different from that used on most
  129.      versions of Unix.  As a result, code compiled with GNU CC cannot
  130.      call a structure-returning function compiled with PCC, and vice
  131.      versa.
  132.      The method used by GNU CC is as follows: a structure or union
  133.      which is 1, 2, 4 or 8 bytes long is returned like a scalar.  A
  134.      structure or union with any other size is stored into an address
  135.      supplied by the caller (usually in a special, fixed register, but
  136.      on some machines it is passed on the stack).  The
  137.      machine-description macros `STRUCT_VALUE' and
  138.      `STRUCT_INCOMING_VALUE' tell GNU CC where to pass this address.
  139.      By contrast, PCC on most target machines returns structures and
  140.      unions of any size by copying the data into an area of static
  141.      storage, and then returning the address of that storage as if it
  142.      were a pointer value. The caller must copy the data from that
  143.      memory area to the place where the value is wanted.  GNU CC does
  144.      not use this method because it is slower and nonreentrant.
  145.      On some newer machines, PCC uses a reentrant convention for all
  146.      structure and union returning.  GNU CC on most of these machines
  147.      uses a compatible convention when returning structures and unions
  148.      in memory, but still returns small structures and unions in
  149.      registers.
  150.      You can tell GNU CC to use a compatible convention for all
  151.      structure and union returning with the option
  152.      `-fpcc-struct-return'.
  153. File: gcc.info,  Node: Disappointments,  Next: Non-bugs,  Prev: Incompatibilities,  Up: Trouble
  154. Disappointments and Misunderstandings
  155. =====================================
  156.    These problems are perhaps regrettable, but we don't know any
  157. practical way around them.
  158.    * Certain local variables aren't recognized by debuggers when you
  159.      compile with optimization.
  160.      This occurs because sometimes GNU CC optimizes the variable out of
  161.      existence.  There is no way to tell the debugger how to compute the
  162.      value such a variable "would have had", and it is not clear that
  163.      would be desirable anyway.  So GNU CC simply does not mention the
  164.      eliminated variable when it writes debugging information.
  165.      You have to expect a certain amount of disagreement between the
  166.      executable and your source code, when you use optimization.
  167.    * Users often think it is a bug when GNU CC reports an error for code
  168.      like this:
  169.           int foo (struct mumble *);
  170.           
  171.           struct mumble { ... };
  172.           
  173.           int foo (struct mumble *x)
  174.           { ... }
  175.      This code really is erroneous, because the scope of `struct
  176.      mumble' the prototype is limited to the argument list containing
  177.      it. It does not refer to the `struct mumble' defined with file
  178.      scope immediately below--they are two unrelated types with similar
  179.      names in different scopes.
  180.      But in the definition of `foo', the file-scope type is used
  181.      because that is available to be inherited.  Thus, the definition
  182.      and the prototype do not match, and you get an error.
  183.      This behavior may seem silly, but it's what the ANSI standard
  184.      specifies. It is easy enough for you to make your code work by
  185.      moving the definition of `struct mumble' above the prototype. 
  186.      It's not worth being incompatible with ANSI C just to avoid an
  187.      error for the example shown above.
  188. File: gcc.info,  Node: Non-bugs,  Prev: Disappointments,  Up: Trouble
  189. Certain Changes We Don't Want to Make
  190. =====================================
  191.    This section lists changes that people frequently request, but which
  192. we do not make because we think GNU CC is better without them.
  193.    * Checking the number and type of arguments to a function which has
  194.      an old-fashioned definition and no prototype.
  195.      Such a feature would work only occasionally--only for calls that
  196.      appear in the same file as the called function, following the
  197.      definition.  The only way to check all calls reliably is to add a
  198.      prototype for the function.  But adding a prototype eliminates the
  199.      motivation for this feature.  So the feature is not worthwhile.
  200.    * Warning about using an expression whose type is signed as a shift
  201.      count.
  202.      Shift count operands are probably signed more often than unsigned.
  203.      Warning about this would cause far more annoyance than good.
  204.    * Warning about assigning a signed value to an unsigned variable.
  205.      Such assignments must be very common; warning about them would
  206.      cause more annoyance than good.
  207.    * Warning when a non-void function value is ignored.
  208.      Coming as I do from a Lisp background, I balk at the idea that
  209.      there is something dangerous about discarding a value.  There are
  210.      functions that return values which some callers may find useful;
  211.      it makes no sense to clutter the program with a cast to `void'
  212.      whenever the value isn't useful.
  213.    * Assuming (for optimization) that the address of an external symbol
  214.      is never zero.
  215.      This assumption is false on certain systems when `#pragma weak' is
  216.      used.
  217.    * Making `-fshort-enums' the default.
  218.      This would cause storage layout to be incompatible with most other
  219.      C compilers.  And it doesn't seem very important, given that you
  220.      can get the same result in other ways.  The case where it matters
  221.      most is when the enumeration-valued object is inside a structure,
  222.      and in that case you can specify a field width explicitly.
  223.    * Making bitfields unsigned by default on particular machines where
  224.      "the ABI standard" says to do so.
  225.      The ANSI C standard leaves it up to the implementation whether a
  226.      bitfield declared plain `int' is signed or not.  This in effect
  227.      creates two alternative dialects of C.
  228.      The GNU C compiler supports both dialects; you can specify the
  229.      dialect you want with the option `-fsigned-bitfields' or
  230.      `-funsigned-bitfields'.  However, this leaves open the question of
  231.      which dialect to use by default.
  232.      Currently, the preferred dialect makes plain bitfields signed,
  233.      because this is simplest.  Since `int' is the same as `signed int'
  234.      in every other context, it is cleanest for them to be the same in
  235.      bitfields as well.
  236.      Some computer manufacturers have published Application Binary
  237.      Interface standards which specify that plain bitfields should be
  238.      unsigned.  It is a mistake, however, to say anything about this
  239.      issue in an ABI.  This is because the handling of plain bitfields
  240.      distinguishes two dialects of C. Both dialects are meaningful on
  241.      every type of machine.  Whether a particular object file was
  242.      compiled using signed bitfields or unsigned is of no concern to
  243.      other object files, even if they access the same bitfields in the
  244.      same data structures.
  245.      A given program is written in one or the other of these two
  246.      dialects. The program stands a chance to work on most any machine
  247.      if it is compiled with the proper dialect.  It is unlikely to work
  248.      at all if compiled with the wrong dialect.
  249.      Many users appreciate the GNU C compiler because it provides an
  250.      environment that is uniform across machines.  These users would be
  251.      inconvenienced if the compiler treated plain bitfields differently
  252.      on certain machines.
  253.      Occasionally users write programs intended only for a particular
  254.      machine type.  On these occasions, the users would benefit if the
  255.      GNU C compiler were to support by default the same dialect as the
  256.      other compilers on that machine.  But such applications are rare. 
  257.      And users writing a program to run on more than one type of
  258.      machine cannot possibly benefit from this kind of compatibility.
  259.      This is why GNU CC does and will treat plain bitfields in the same
  260.      fashion on all types of machines (by default).
  261.      There are some arguments for making bitfields unsigned by default
  262.      on all machines.  If, for example, this becomes a universal de
  263.      facto standard, it would make sense for GNU CC to go along with
  264.      it.  This is something to be considered in the future.
  265.      (Of course, users strongly concerned about portability should
  266.      indicate explicitly in each bitfield whether it is signed or not. 
  267.      In this way, they write programs which have the same meaning in
  268.      both C dialects.)
  269.    * Undefining `__STDC__' when `-ansi' is not used.
  270.      Currently, GNU CC defines `__STDC__' as long as you don't use
  271.      `-traditional'.  This provides good results in practice.
  272.      Programmers normally use conditionals on `__STDC__' to ask whether
  273.      it is safe to use certain features of ANSI C, such as function
  274.      prototypes or ANSI token concatenation.  Since plain `gcc' supports
  275.      all the features of ANSI C, the correct answer to these questions
  276.      is "yes".
  277.      Some users try to use `__STDC__' to check for the availability of
  278.      certain library facilities.  This is actually incorrect usage in
  279.      an ANSI C program, because the ANSI C standard says that a
  280.      conforming freestanding implementation should define `__STDC__'
  281.      even though it does not have the library facilities.  `gcc -ansi
  282.      -pedantic' is a conforming freestanding implementation, and it is
  283.      therefore required to define `__STDC__', even though it does not
  284.      come with an ANSI C library.
  285.      Sometimes people say that defining `__STDC__' in a compiler that
  286.      does not completely conform to the ANSI C standard somehow
  287.      violates the standard.  This is illogical.  The standard is a
  288.      standard for compilers that claim to support ANSI C, such as `gcc
  289.      -ansi'--not for other compilers such as plain `gcc'.  Whatever the
  290.      ANSI C standard says is relevant to the design of plain `gcc'
  291.      without `-ansi' only for pragmatic reasons, not as a requirement.
  292.    * Undefining `__STDC__' in C++.
  293.      Programs written to compile with C++-to-C translators get the
  294.      value of `__STDC__' that goes with the C compiler that is
  295.      subsequently used.  These programs must test `__STDC__' to
  296.      determine what kind of C preprocessor that compiler uses: whether
  297.      they should concatenate tokens in the ANSI C fashion or in the
  298.      traditional fashion.
  299.      These programs work properly with GNU C++ if `__STDC__' is defined.
  300.      They would not work otherwise.
  301.      In addition, many header files are written to provide prototypes
  302.      in ANSI C but not in traditional C.  Many of these header files
  303.      can work without change in C++ provided `__STDC__' is defined.  If
  304.      `__STDC__' is not defined, they will all fail, and will all need
  305.      to be changed to test explicitly for C++ as well.
  306.    * Deleting "empty" loops.
  307.      GNU CC does not delete "empty" loops because the most likely reason
  308.      you would put one in a program is to have a delay.  Deleting them
  309.      will not make real programs run any faster, so it would be
  310.      pointless.
  311.      It would be different if optimization of a nonempty loop could
  312.      produce an empty one.  But this generally can't happen.
  313. File: gcc.info,  Node: Bugs,  Next: Service,  Prev: Trouble,  Up: Top
  314. Reporting Bugs
  315. **************
  316.    Your bug reports play an essential role in making GNU CC reliable.
  317.    When you encounter a problem, the first thing to do is to see if it
  318. is already known.  *Note Trouble::.  If it isn't known, then you should
  319. report the problem.
  320.    Reporting a bug may help you by bringing a solution to your problem,
  321. or it may not.  (If it does not, look in the service directory; see
  322. *Note Service::.)  In any case, the principal function of a bug report
  323. is to help the entire community by making the next version of GNU CC
  324. work better.  Bug reports are your contribution to the maintenance of
  325. GNU CC.
  326.    In order for a bug report to serve its purpose, you must include the
  327. information that makes for fixing the bug.
  328. * Menu:
  329. * Criteria:  Bug Criteria.   Have you really found a bug?
  330. * Where: Bug Lists.         Where to send your bug report.
  331. * Reporting: Bug Reporting.  How to report a bug effectively.
  332. * Patches: Sending Patches.  How to send a patch for GNU CC.
  333. * Known: Trouble.            Known problems.
  334. * Help: Service.             Where to ask for help.
  335. File: gcc.info,  Node: Bug Criteria,  Next: Bug Lists,  Up: Bugs
  336. Have You Found a Bug?
  337. =====================
  338.    If you are not sure whether you have found a bug, here are some
  339. guidelines:
  340.    * If the compiler gets a fatal signal, for any input whatever, that
  341.      is a compiler bug.  Reliable compilers never crash.
  342.    * If the compiler produces invalid assembly code, for any input
  343.      whatever (except an `asm' statement), that is a compiler bug,
  344.      unless the compiler reports errors (not just warnings) which would
  345.      ordinarily prevent the assembler from being run.
  346.    * If the compiler produces valid assembly code that does not
  347.      correctly execute the input source code, that is a compiler bug.
  348.      However, you must double-check to make sure, because you may have
  349.      run into an incompatibility between GNU C and traditional C (*note
  350.      Incompatibilities::.).  These incompatibilities might be considered
  351.      bugs, but they are inescapable consequences of valuable features.
  352.      Or you may have a program whose behavior is undefined, which
  353.      happened by chance to give the desired results with another C or
  354.      C++ compiler.
  355.      For example, in many nonoptimizing compilers, you can write `x;'
  356.      at the end of a function instead of `return x;', with the same
  357.      results.  But the value of the function is undefined if `return'
  358.      is omitted; it is not a bug when GNU CC produces different results.
  359.      Problems often result from expressions with two increment
  360.      operators, as in `f (*p++, *p++)'.  Your previous compiler might
  361.      have interpreted that expression the way you intended; GNU CC might
  362.      interpret it another way.  Neither compiler is wrong.  The bug is
  363.      in your code.
  364.      After you have localized the error to a single source line, it
  365.      should be easy to check for these things.  If your program is
  366.      correct and well defined, you have found a compiler bug.
  367.    * If the compiler produces an error message for valid input, that is
  368.      a compiler bug.
  369.    * If the compiler does not produce an error message for invalid
  370.      input, that is a compiler bug.  However, you should note that your
  371.      idea of "invalid input" might be my idea of "an extension" or
  372.      "support for traditional practice".
  373.    * If you are an experienced user of C or C++ compilers, your
  374.      suggestions for improvement of GNU CC or GNU C++ are welcome in
  375.      any case.
  376. File: gcc.info,  Node: Bug Lists,  Next: Bug Reporting,  Prev: Bug Criteria,  Up: Bugs
  377. Where to Report Bugs
  378. ====================
  379.    Send bug reports for GNU C to one of these addresses:
  380.      bug-gcc@prep.ai.mit.edu
  381.      {ucbvax|mit-eddie|uunet}!prep.ai.mit.edu!bug-gcc
  382.    Send bug reports for GNU C++ to one of these addresses:
  383.      bug-g++@prep.ai.mit.edu
  384.      {ucbvax|mit-eddie|uunet}!prep.ai.mit.edu!bug-g++
  385.    *Do not send bug reports to `help-gcc', or to the newsgroup
  386. `gnu.gcc.help'.*  Most users of GNU CC do not want to receive bug
  387. reports.  Those that do, have asked to be on `bug-gcc' and/or `bug-g++'.
  388.    The mailing lists `bug-gcc' and `bug-g++' both have newsgroups which
  389. serve as repeaters: `gnu.gcc.bug' and `gnu.g++.bug'. Each mailing list
  390. and its newsgroup carry exactly the same messages.
  391.    Often people think of posting bug reports to the newsgroup instead of
  392. mailing them.  This appears to work, but it has one problem which can be
  393. crucial: a newsgroup posting does not contain a mail path back to the
  394. sender.  Thus, if maintaners need more information, they may be unable
  395. to reach you.  For this reason, you should always send bug reports by
  396. mail to the proper mailing list.
  397.    As a last resort, send bug reports on paper to:
  398.      GNU Compiler Bugs
  399.      Free Software Foundation
  400.      675 Mass Ave
  401.      Cambridge, MA 02139
  402. File: gcc.info,  Node: Bug Reporting,  Next: Sending Patches,  Prev: Bug Lists,  Up: Bugs
  403. How to Report Bugs
  404. ==================
  405.    The fundamental principle of reporting bugs usefully is this:
  406. *report all the facts*.  If you are not sure whether to state a fact or
  407. leave it out, state it!
  408.    Often people omit facts because they think they know what causes the
  409. problem and they conclude that some details don't matter.  Thus, you
  410. might assume that the name of the variable you use in an example does
  411. not matter. Well, probably it doesn't, but one cannot be sure.  Perhaps
  412. the bug is a stray memory reference which happens to fetch from the
  413. location where that name is stored in memory; perhaps, if the name were
  414. different, the contents of that location would fool the compiler into
  415. doing the right thing despite the bug.  Play it safe and give a
  416. specific, complete example.  That is the easiest thing for you to do,
  417. and the most helpful.
  418.    Keep in mind that the purpose of a bug report is to enable someone to
  419. fix the bug if it is not known.  It isn't very important what happens if
  420. the bug is already known.  Therefore, always write your bug reports on
  421. the assumption that the bug is not known.
  422.    Sometimes people give a few sketchy facts and ask, "Does this ring a
  423. bell?"  This cannot help us fix a bug, so it is basically useless.  We
  424. respond by asking for enough details to enable us to investigate. You
  425. might as well expedite matters by sending them to begin with.
  426.    Try to make your bug report self-contained.  If we have to ask you
  427. for more information, it is best if you include all the previous
  428. information in your response, as well as the information that was
  429. missing.
  430.    To enable someone to investigate the bug, you should include all
  431. these things:
  432.    * The version of GNU CC.  You can get this by running it with the
  433.      `-v' option.
  434.      Without this, we won't know whether there is any point in looking
  435.      for the bug in the current version of GNU CC.
  436.    * A complete input file that will reproduce the bug.  If the bug is
  437.      in the C preprocessor, send a source file and any header files
  438.      that it requires.  If the bug is in the compiler proper (`cc1'),
  439.      run your source file through the C preprocessor by doing `gcc -E
  440.      SOURCEFILE > OUTFILE', then include the contents of OUTFILE in the
  441.      bug report.  (When you do this, use the same `-I', `-D' or `-U'
  442.      options that you used in actual compilation.)
  443.      A single statement is not enough of an example.  In order to
  444.      compile it, it must be embedded in a function definition; and the
  445.      bug might depend on the details of how this is done.
  446.      Without a real example one can compile, all anyone can do about
  447.      your bug report is wish you luck.  It would be futile to try to
  448.      guess how to provoke the bug.  For example, bugs in register
  449.      allocation and reloading frequently depend on every little detail
  450.      of the function they happen in.
  451.    * The command arguments you gave GNU CC or GNU C++ to compile that
  452.      example and observe the bug.  For example, did you use `-O'?  To
  453.      guarantee you won't omit something important, list all the options.
  454.      If we were to try to guess the arguments, we would probably guess
  455.      wrong and then we would not encounter the bug.
  456.    * The type of machine you are using, and the operating system name
  457.      and version number.
  458.    * The operands you gave to the `configure' command when you installed
  459.      the compiler.
  460.    * A complete list of any modifications you have made to the compiler
  461.      source.  (We don't promise to investigate the bug unless it
  462.      happens in an unmodified compiler.  But if you've made
  463.      modifications and don't tell us, then you are sending us on a wild
  464.      goose chase.)
  465.      Be precise about these changes--show a context diff for them.
  466.      Adding files of your own (such as a machine description for a
  467.      machine we don't support) is a modification of the compiler source.
  468.    * Details of any other deviations from the standard procedure for
  469.      installing GNU CC.
  470.    * A description of what behavior you observe that you believe is
  471.      incorrect.  For example, "The compiler gets a fatal signal," or,
  472.      "The assembler instruction at line 208 in the output is incorrect."
  473.      Of course, if the bug is that the compiler gets a fatal signal,
  474.      then one can't miss it.  But if the bug is incorrect output, the
  475.      maintainer might not notice unless it is glaringly wrong.  None of
  476.      us has time to study all the assembler code from a 50-line C
  477.      program just on the chance that one instruction might be wrong. 
  478.      We need `you' to do this part!
  479.      Even if the problem you experience is a fatal signal, you should
  480.      still say so explicitly.  Suppose something strange is going on,
  481.      such as, your copy of the compiler is out of synch, or you have
  482.      encountered a bug in the C library on your system.  (This has
  483.      happened!)  Your copy might crash and the copy here would not.  If
  484.      you said to expect a crash, then when the compiler here fails to
  485.      crash, we would know that the bug was not happening.  If you don't
  486.      say to expect a crash, then we would not know whether the bug was
  487.      happening.  We would not be able to draw any conclusion from our
  488.      observations.
  489.      Often the observed symptom is incorrect output when your program
  490.      is run. Sad to say, this is not enough information unless the
  491.      program is short and simple.  None of us has time to study a large
  492.      program to figure out how it would work if compiled correctly,
  493.      much less which line of it was compiled wrong.  So you will have
  494.      to do that.  Tell us which source line it is, and what incorrect
  495.      result happens when that line is executed.  A person who
  496.      understands the program can find this as easily as finding a bug
  497.      in the program itself.
  498.    * If you send examples of assembler code output from GNU CC or GNU
  499.      C++, please use `-g' when you make them.  The debugging information
  500.      includes source line numbers which are essential for correlating
  501.      the output with the input.
  502.    * If you wish to suggest changes to the GNU CC source, send them as
  503.      context diffs.  If you even discuss something in the GNU CC source,
  504.      refer to it by context, not by line number.
  505.      The line numbers in the development sources don't match those in
  506.      your sources.  Your line numbers would convey no useful
  507.      information to the maintainers.
  508.    * Additional information from a debugger might enable someone to
  509.      find a problem on a machine which he does not have available. 
  510.      However, you need to think when you collect this information if
  511.      you want it to have any chance of being useful.
  512.      For example, many people send just a backtrace, but that is never
  513.      useful by itself.  A simple backtrace with arguments conveys little
  514.      about GNU CC because the compiler is largely data-driven; the same
  515.      functions are called over and over for different RTL insns, doing
  516.      different things depending on the details of the insn.
  517.      Most of the arguments listed in the backtrace are useless because
  518.      they are pointers to RTL list structure.  The numeric values of the
  519.      pointers, which the debugger prints in the backtrace, have no
  520.      significance whatever; all that matters is the contents of the
  521.      objects they point to (and most of the contents are other such
  522.      pointers).
  523.      In addition, most compiler passes consist of one or more loops that
  524.      scan the RTL insn sequence.  The most vital piece of information
  525.      about such a loop--which insn it has reached--is usually in a
  526.      local variable, not in an argument.
  527.      What you need to provide in addition to a backtrace are the values
  528.      of the local variables for several stack frames up.  When a local
  529.      variable or an argument is an RTX, first print its value and then
  530.      use the GDB command `pr' to print the RTL expression that it points
  531.      to.  (If GDB doesn't run on your machine, use your debugger to call
  532.      the function `debug_rtx' with the RTX as an argument.)  In
  533.      general, whenever a variable is a pointer, its value is no use
  534.      without the data it points to.
  535.      In addition, include a debugging dump from just before the pass in
  536.      which the crash happens.  Most bugs involve a series of insns, not
  537.      just one.
  538.    Here are some things that are not necessary:
  539.    * A description of the envelope of the bug.
  540.      Often people who encounter a bug spend a lot of time investigating
  541.      which changes to the input file will make the bug go away and which
  542.      changes will not affect it.
  543.      This is often time consuming and not very useful, because the way
  544.      we will find the bug is by running a single example under the
  545.      debugger with breakpoints, not by pure deduction from a series of
  546.      examples.  You might as well save your time for something else.
  547.      Of course, if you can find a simpler example to report *instead* of
  548.      the original one, that is a convenience.  Errors in the output
  549.      will be easier to spot, running under the debugger will take less
  550.      time, etc. Most GNU CC bugs involve just one function, so the most
  551.      straightforward way to simplify an example is to delete all the
  552.      function definitions except the one where the bug occurs.  Those
  553.      earlier in the file may be replaced by external declarations if
  554.      the crucial function depends on them.  (Exception: inline
  555.      functions may affect compilation of functions defined later in the
  556.      file.)
  557.      However, simplification is not vital; if you don't want to do this,
  558.      report the bug anyway and send the entire test case you used.
  559.    * A patch for the bug.
  560.      A patch for the bug is useful if it is a good one.  But don't omit
  561.      the necessary information, such as the test case, on the
  562.      assumption that a patch is all we need.  We might see problems
  563.      with your patch and decide to fix the problem another way, or we
  564.      might not understand it at all.
  565.      Sometimes with a program as complicated as GNU CC it is very hard
  566.      to construct an example that will make the program follow a
  567.      certain path through the code.  If you don't send the example, we
  568.      won't be able to construct one, so we won't be able to verify that
  569.      the bug is fixed.
  570.      And if we can't understand what bug you are trying to fix, or why
  571.      your patch should be an improvement, we won't install it.  A test
  572.      case will help us to understand.
  573.      *Note Sending Patches::, for guidelines on how to make it easy for
  574.      us to understand and install your patches.
  575.    * A guess about what the bug is or what it depends on.
  576.      Such guesses are usually wrong.  Even I can't guess right about
  577.      such things without first using the debugger to find the facts.
  578. File: gcc.info,  Node: Sending Patches,  Prev: Bug Reporting,  Up: Bugs
  579. Sending Patches for GNU CC
  580. ==========================
  581.    If you would like to write bug fixes or improvements for the GNU C
  582. compiler, that is very helpful.  When you send your changes, please
  583. follow these guidelines to avoid causing extra work for us in studying
  584. the patches.
  585.    If you don't follow these guidelines, your information might still be
  586. useful, but using it will take extra work.  Maintaining GNU C is a lot
  587. of work in the best of circumstances, and we can't keep up unless you do
  588. your best to help.
  589.    * Send an explanation with your changes of what problem they fix or
  590.      what improvement they bring about.  For a bug fix, just include a
  591.      copy of the bug report, and explain why the change fixes the bug.
  592.      (Referring to a bug report is not as good as including it, because
  593.      then we will have to look it up, and we have probably already
  594.      deleted it if we've already fixed the bug.)
  595.    * Always include a proper bug report for the problem you think you
  596.      have fixed.  We need to convince ourselves that the change is
  597.      right before installing it.  Even if it is right, we might have
  598.      trouble judging it if we don't have a way to reproduce the problem.
  599.    * Include all the comments that are appropriate to help people
  600.      reading the source in the future understand why this change was
  601.      needed.
  602.    * Don't mix together changes made for different reasons. Send them
  603.      *individually*.
  604.      If you make two changes for separate reasons, then we might not
  605.      want to install them both.  We might want to install just one.  If
  606.      you send them all jumbled together in a single set of diffs, we
  607.      have to do extra work to disentangle them--to figure out which
  608.      parts of the change serve which purpose.  If we don't have time
  609.      for this, we might have to ignore your changes entirely.
  610.      If you send each change as soon as you have written it, with its
  611.      own explanation, then the two changes never get tangled up, and we
  612.      can consider each one properly without any extra work to
  613.      disentangle them.
  614.      Ideally, each change you send should be impossible to subdivide
  615.      into parts that we might want to consider separately, because each
  616.      of its parts gets its motivation from the other parts.
  617.    * Send each change as soon as that change is finished.  Sometimes
  618.      people think they are helping us by accumulating many changes to
  619.      send them all together.  As explained above, this is absolutely
  620.      the worst thing you could do.
  621.      Since you should send each change separately, you might as well
  622.      send it right away.  That gives us the option of installing it
  623.      immediately if it is important.
  624.    * Use `diff -c' to make your diffs.  Diffs without context are hard
  625.      for us to install reliably.  More than that, they make it hard for
  626.      us to study the diffs to decide whether we want to install them. 
  627.      Unidiff format is better than contextless diffs, but not as easy
  628.      to read as `-c' format.
  629.      If you have GNU diff, use `diff -cp', which shows the name of the
  630.      function that each change occurs in.
  631.    * Write the change log entries for your changes.  We get lots of
  632.      changes, and we don't have time to do all the change log writing
  633.      ourselves.
  634.      Read the `ChangeLog' file to see what sorts of information to put
  635.      in, and to learn the style that we use.  The purpose of the change
  636.      log is to show people where to find what was changed.  So you need
  637.      to be specific about what functions you changed; in large
  638.      functions, it's often helpful to indicate where within the
  639.      function the change was.
  640.      On the other hand, once you have shown people where to find the
  641.      change, you need not explain its purpose. Thus, if you add a new
  642.      function, all you need to say about it is that it is new.  If you
  643.      feel that the purpose needs explaining, it probably does--but the
  644.      explanation will be much more useful if you put it in comments in
  645.      the code.
  646.      If you would like your name to appear in the header line for who
  647.      made the change, send us the header line.
  648.    * When you write the fix, keep in mind that I can't install a change
  649.      that would break other systems.
  650.      People often suggest fixing a problem by changing
  651.      machine-independent files such as `toplev.c' to do something
  652.      special that a particular system needs.  Sometimes it is totally
  653.      obvious that such changes would break GNU CC for almost all users.
  654.       We can't possibly make a change like that.  At best it might tell
  655.      us how to write another patch that would solve the problem
  656.      acceptably.
  657.      Sometimes people send fixes that *might* be an improvement in
  658.      general--but it is hard to be sure of this.  It's hard to install
  659.      such changes because we have to study them very carefully.  Of
  660.      course, a good explanation of the reasoning by which you concluded
  661.      the change was correct can help convince us.
  662.      The safest changes are changes to the configuration files for a
  663.      particular machine.  These are safe because they can't create new
  664.      bugs on other machines.
  665.      Please help us keep up with the workload by designing the patch in
  666.      a form that is good to install.
  667. File: gcc.info,  Node: Service,  Next: VMS,  Prev: Bugs,  Up: Top
  668. How To Get Help with GNU CC
  669. ***************************
  670.    If you need help installing, using or changing GNU CC, there are two
  671. ways to find it:
  672.    * Send a message to a suitable network mailing list.  First try
  673.      `bug-gcc@prep.ai.mit.edu', and if that brings no response, try
  674.      `help-gcc@prep.ai.mit.edu'.
  675.    * Look in the service directory for someone who might help you for a
  676.      fee. The service directory is found in the file named `SERVICE' in
  677.      the GNU CC distribution.
  678. File: gcc.info,  Node: VMS,  Next: Portability,  Prev: Service,  Up: Top
  679. Using GNU CC on VMS
  680. *******************
  681. * Menu:
  682. * Include Files and VMS::  Where the preprocessor looks for the include files.
  683. * Global Declarations::    How to do globaldef, globalref and globalvalue with
  684.                            GNU CC.
  685. * VMS Misc::           Misc information.
  686. File: gcc.info,  Node: Include Files and VMS,  Next: Global Declarations,  Up: VMS
  687. Include Files and VMS
  688. =====================
  689.    Due to the differences between the filesystems of Unix and VMS, GNU
  690. CC attempts to translate file names in `#include' into names that VMS
  691. will understand.  The basic strategy is to prepend a prefix to the
  692. specification of the include file, convert the whole filename to a VMS
  693. filename, and then try to open the file.  GNU CC tries various prefixes
  694. one by one until one of them succeeds:
  695.   1. The first prefix is the `GNU_CC_INCLUDE:' logical name: this is
  696.      where GNU C header files are traditionally stored.  If you wish to
  697.      store header files in non-standard locations, then you can assign
  698.      the logical `GNU_CC_INCLUDE' to be a search list, where each
  699.      element of the list is suitable for use with a rooted logical.
  700.   2. The next prefix tried is `SYS$SYSROOT:[SYSLIB.]'.  This is where
  701.      VAX-C header files are traditionally stored.
  702.   3. If the include file specification by itself is a valid VMS
  703.      filename, the preprocessor then uses this name with no prefix in
  704.      an attempt to open the include file.
  705.   4. If the file specification is not a valid VMS filename (i.e. does
  706.      not contain a device or a directory specifier, and contains a `/'
  707.      character), the preprocessor tries to convert it from Unix syntax
  708.      to VMS syntax.
  709.      Conversion works like this: the first directory name becomes a
  710.      device, and the rest of the directories are converted into
  711.      VMS-format directory names.  For example, `X11/foobar.h' is
  712.      translated to `X11:[000000]foobar.h' or `X11:foobar.h', whichever
  713.      one can be opened.  This strategy allows you to assign a logical
  714.      name to point to the actual location of the header files.
  715.   5. If none of these strategies succeeds, the `#include' fails.
  716.    Include directives of the form:
  717.      #include foobar
  718. are a common source of incompatibility between VAX-C and GNU CC.  VAX-C
  719. treats this much like a standard `#include <foobar.h>' directive. That
  720. is incompatible with the ANSI C behavior implemented by GNU CC: to
  721. expand the name `foobar' as a macro.  Macro expansion should eventually
  722. yield one of the two standard formats for `#include':
  723.      #include "FILE"
  724.      #include <FILE>
  725.    If you have this problem, the best solution is to modify the source
  726. to convert the `#include' directives to one of the two standard forms.
  727. That will work with either compiler.  If you want a quick and dirty fix,
  728. define the file names as macros with the proper expansion, like this:
  729.      #define stdio <stdio.h>
  730. This will work, as long as the name doesn't conflict with anything else
  731. in the program.
  732.    Another source of incompatibility is that VAX-C assumes that:
  733.      #include "foobar"
  734. is actually asking for the file `foobar.h'.  GNU CC does not make this
  735. assumption, and instead takes what you ask for literally; it tries to
  736. read the file `foobar'.  The best way to avoid this problem is to
  737. always specify the desired file extension in your include directives.
  738.    GNU CC for VMS is distributed with a set of include files that is
  739. sufficient to compile most general purpose programs.  Even though the
  740. GNU CC distribution does not contain header files to define constants
  741. and structures for some VMS system-specific functions, there is no
  742. reason why you cannot use GNU CC with any of these functions.  You first
  743. may have to generate or create header files, either by using the public
  744. domain utility `UNSDL' (which can be found on a DECUS tape), or by
  745. extracting the relevant modules from one of the system macro libraries,
  746. and using an editor to construct a C header file.
  747. File: gcc.info,  Node: Global Declarations,  Next: VMS Misc,  Prev: Include Files and VMS,  Up: VMS
  748. Global Declarations and VMS
  749. ===========================
  750.    GNU CC does not provide the `globalref', `globaldef' and
  751. `globalvalue' keywords of VAX-C.  You can get the same effect with an
  752. obscure feature of GAS, the GNU assembler.  (This requires GAS version
  753. 1.39 or later.)  The following macros allow you to use this feature in
  754. a fairly natural way:
  755.      #ifdef __GNUC__
  756.      #define GLOBALREF(TYPE,NAME)                      \
  757.        TYPE NAME                                       \
  758.        asm ("_$$PsectAttributes_GLOBALSYMBOL$$" #NAME)
  759.      #define GLOBALDEF(TYPE,NAME,VALUE)                \
  760.        TYPE NAME                                       \
  761.        asm ("_$$PsectAttributes_GLOBALSYMBOL$$" #NAME) \
  762.          = VALUE
  763.      #define GLOBALVALUEREF(TYPE,NAME)                 \
  764.        const TYPE NAME[1]                              \
  765.        asm ("_$$PsectAttributes_GLOBALVALUE$$" #NAME)
  766.      #define GLOBALVALUEDEF(TYPE,NAME,VALUE)           \
  767.        const TYPE NAME[1]                              \
  768.        asm ("_$$PsectAttributes_GLOBALVALUE$$" #NAME)  \
  769.          = {VALUE}
  770.      #else
  771.      #define GLOBALREF(TYPE,NAME) \
  772.        globalref TYPE NAME
  773.      #define GLOBALDEF(TYPE,NAME,VALUE) \
  774.        globaldef TYPE NAME = VALUE
  775.      #define GLOBALVALUEDEF(TYPE,NAME,VALUE) \
  776.        globalvalue TYPE NAME = VALUE
  777.      #define GLOBALVALUEREF(TYPE,NAME) \
  778.        globalvalue TYPE NAME
  779.      #endif
  780. (The `_$$PsectAttributes_GLOBALSYMBOL' prefix at the start of the name
  781. is removed by the assembler, after it has modified the attributes of
  782. the symbol).  These macros are provided in the VMS binaries
  783. distribution in a header file `GNU_HACKS.H'.  An example of the usage
  784.      GLOBALREF (int, ijk);
  785.      GLOBALDEF (int, jkl, 0);
  786.    The macros `GLOBALREF' and `GLOBALDEF' cannot be used
  787. straightforwardly for arrays, since there is no way to insert the array
  788. dimension into the declaration at the right place.  However, you can
  789. declare an array with these macros if you first define a typedef for the
  790. array type, like this:
  791.      typedef int intvector[10];
  792.      GLOBALREF (intvector, foo);
  793.    Array and structure initializers will also break the macros; you can
  794. define the initializer to be a macro of its own, or you can expand the
  795. `GLOBALDEF' macro by hand.  You may find a case where you wish to use
  796. the `GLOBALDEF' macro with a large array, but you are not interested in
  797. explicitly initializing each element of the array.  In such cases you
  798. can use an initializer like: `{0,}', which will initialize the entire
  799. array to `0'.
  800.    A shortcoming of this implementation is that a variable declared with
  801. `GLOBALVALUEREF' or `GLOBALVALUEDEF' is always an array.  For example,
  802. the declaration:
  803.      GLOBALVALUEREF(int, ijk);
  804. declares the variable `ijk' as an array of type `int [1]'. This is done
  805. because a globalvalue is actually a constant; its "value" is what the
  806. linker would normally consider an address.  That is not how an integer
  807. value works in C, but it is how an array works.  So treating the symbol
  808. as an array name gives consistent results--with the exception that the
  809. value seems to have the wrong type.  *Don't try to access an element of
  810. the array.*  It doesn't have any elements. The array "address" may not
  811. be the address of actual storage.
  812.    The fact that the symbol is an array may lead to warnings where the
  813. variable is used.  Insert type casts to avoid the warnings.  Here is an
  814. example; it takes advantage of the ANSI C feature allowing macros that
  815. expand to use the same name as the macro itself.
  816.      GLOBALVALUEREF (int, ss$_normal);
  817.      GLOBALVALUEDEF (int, xyzzy,123);
  818.      #ifdef __GNUC__
  819.      #define ss$_normal ((int) ss$_normal)
  820.      #define xyzzy ((int) xyzzy)
  821.      #endif
  822.    Don't use `globaldef' or `globalref' with a variable whose type is
  823. an enumeration type; this is not implemented.  Instead, make the
  824. variable an integer, and use a `globalvaluedef' for each of the
  825. enumeration values.  An example of this would be:
  826.      #ifdef __GNUC__
  827.      GLOBALDEF (int, color, 0);
  828.      GLOBALVALUEDEF (int, RED, 0);
  829.      GLOBALVALUEDEF (int, BLUE, 1);
  830.      GLOBALVALUEDEF (int, GREEN, 3);
  831.      #else
  832.      enum globaldef color {RED, BLUE, GREEN = 3};
  833.      #endif
  834.