OSDN Git Service

* doc/gcc.texi: Move several chapters out to ...
[pf3gnuchains/gcc-fork.git] / gcc / doc / bugreport.texi
1 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
2 @c 1999, 2000, 2001 Free Software Foundation, Inc.
3 @c This is part of the GCC manual.
4 @c For copying conditions, see the file gcc.texi.
5
6 @node Bugs
7 @chapter Reporting Bugs
8 @cindex bugs
9 @cindex reporting bugs
10
11 Your bug reports play an essential role in making GCC reliable.
12
13 When you encounter a problem, the first thing to do is to see if it is
14 already known.  @xref{Trouble}.  If it isn't known, then you should
15 report the problem.
16
17 Reporting a bug may help you by bringing a solution to your problem, or
18 it may not.  (If it does not, look in the service directory; see
19 @ref{Service}.)  In any case, the principal function of a bug report is
20 to help the entire community by making the next version of GCC work
21 better.  Bug reports are your contribution to the maintenance of GCC@.
22
23 Since the maintainers are very overloaded, we cannot respond to every
24 bug report.  However, if the bug has not been fixed, we are likely to
25 send you a patch and ask you to tell us whether it works.
26
27 In order for a bug report to serve its purpose, you must include the
28 information that makes for fixing the bug.
29
30 @menu
31 * Criteria:  Bug Criteria.   Have you really found a bug?
32 * Where: Bug Lists.          Where to send your bug report.
33 * Reporting: Bug Reporting.  How to report a bug effectively.
34 * GNATS: gccbug.             You can use a bug reporting tool.
35 * Known: Trouble.            Known problems.
36 * Help: Service.             Where to ask for help.
37 @end menu
38
39 @node Bug Criteria,Bug Lists,,Bugs
40 @section Have You Found a Bug?
41 @cindex bug criteria
42
43 If you are not sure whether you have found a bug, here are some guidelines:
44
45 @itemize @bullet
46 @cindex fatal signal
47 @cindex core dump
48 @item
49 If the compiler gets a fatal signal, for any input whatever, that is a
50 compiler bug.  Reliable compilers never crash.
51
52 @cindex invalid assembly code
53 @cindex assembly code, invalid
54 @item
55 If the compiler produces invalid assembly code, for any input whatever
56 (except an @code{asm} statement), that is a compiler bug, unless the
57 compiler reports errors (not just warnings) which would ordinarily
58 prevent the assembler from being run.
59
60 @cindex undefined behavior
61 @cindex undefined function value
62 @cindex increment operators
63 @item
64 If the compiler produces valid assembly code that does not correctly
65 execute the input source code, that is a compiler bug.
66
67 However, you must double-check to make sure, because you may have run
68 into an incompatibility between GNU C and traditional C
69 (@pxref{Incompatibilities}).  These incompatibilities might be considered
70 bugs, but they are inescapable consequences of valuable features.
71
72 Or you may have a program whose behavior is undefined, which happened
73 by chance to give the desired results with another C or C++ compiler.
74
75 For example, in many nonoptimizing compilers, you can write @samp{x;}
76 at the end of a function instead of @samp{return x;}, with the same
77 results.  But the value of the function is undefined if @code{return}
78 is omitted; it is not a bug when GCC produces different results.
79
80 Problems often result from expressions with two increment operators,
81 as in @code{f (*p++, *p++)}.  Your previous compiler might have
82 interpreted that expression the way you intended; GCC might
83 interpret it another way.  Neither compiler is wrong.  The bug is
84 in your code.
85
86 After you have localized the error to a single source line, it should
87 be easy to check for these things.  If your program is correct and
88 well defined, you have found a compiler bug.
89
90 @item
91 If the compiler produces an error message for valid input, that is a
92 compiler bug.
93
94 @cindex invalid input
95 @item
96 If the compiler does not produce an error message for invalid input,
97 that is a compiler bug.  However, you should note that your idea of
98 ``invalid input'' might be my idea of ``an extension'' or ``support
99 for traditional practice''.
100
101 @item
102 If you are an experienced user of one of the languages GCC supports, your
103 suggestions for improvement of GCC are welcome in any case.
104 @end itemize
105
106 @node Bug Lists,Bug Reporting,Bug Criteria,Bugs
107 @section Where to Report Bugs
108 @cindex bug report mailing lists
109 @kindex gcc-bugs@@gcc.gnu.org or bug-gcc@@gnu.org
110 Send bug reports for the GNU Compiler Collection to
111 @email{gcc-bugs@@gcc.gnu.org}.  In accordance with the GNU-wide
112 convention, in which bug reports for tool ``foo'' are sent
113 to @samp{bug-foo@@gnu.org}, the address @email{bug-gcc@@gnu.org}
114 may also be used; it will forward to the address given above.
115
116 Please read @uref{http://gcc.gnu.org/bugs.html} for additional and/or
117 more up-to-date bug reporting instructions before you post a bug report.
118
119 @node Bug Reporting,gccbug,Bug Lists,Bugs
120 @section How to Report Bugs
121 @cindex compiler bugs, reporting
122
123 The fundamental principle of reporting bugs usefully is this:
124 @strong{report all the facts}.  If you are not sure whether to state a
125 fact or leave it out, state it!
126
127 Often people omit facts because they think they know what causes the
128 problem and they conclude that some details don't matter.  Thus, you might
129 assume that the name of the variable you use in an example does not matter.
130 Well, probably it doesn't, but one cannot be sure.  Perhaps the bug is a
131 stray memory reference which happens to fetch from the location where that
132 name is stored in memory; perhaps, if the name were different, the contents
133 of that location would fool the compiler into doing the right thing despite
134 the bug.  Play it safe and give a specific, complete example.  That is the
135 easiest thing for you to do, and the most helpful.
136
137 Keep in mind that the purpose of a bug report is to enable someone to
138 fix the bug if it is not known.  It isn't very important what happens if
139 the bug is already known.  Therefore, always write your bug reports on
140 the assumption that the bug is not known.
141
142 Sometimes people give a few sketchy facts and ask, ``Does this ring a
143 bell?''  This cannot help us fix a bug, so it is basically useless.  We
144 respond by asking for enough details to enable us to investigate.
145 You might as well expedite matters by sending them to begin with.
146
147 Try to make your bug report self-contained.  If we have to ask you for
148 more information, it is best if you include all the previous information
149 in your response, as well as the information that was missing.
150
151 Please report each bug in a separate message.  This makes it easier for
152 us to track which bugs have been fixed and to forward your bugs reports
153 to the appropriate maintainer.
154
155 To enable someone to investigate the bug, you should include all these
156 things:
157
158 @itemize @bullet
159 @item
160 The version of GCC@.  You can get this by running it with the
161 @option{-v} option.
162
163 Without this, we won't know whether there is any point in looking for
164 the bug in the current version of GCC@.
165
166 @item
167 A complete input file that will reproduce the bug.  If the bug is in the
168 C preprocessor, send a source file and any header files that it
169 requires.  If the bug is in the compiler proper (@file{cc1}), send the
170 preprocessor output generated by adding @option{-save-temps} to the
171 compilation command (@pxref{Debugging Options}).  When you do this, use
172 the same @option{-I}, @option{-D} or @option{-U} options that you used in
173 actual compilation.  Then send the @var{input}.i or @var{input}.ii files
174 generated.
175
176 A single statement is not enough of an example.  In order to compile it,
177 it must be embedded in a complete file of compiler input; and the bug
178 might depend on the details of how this is done.
179
180 Without a real example one can compile, all anyone can do about your bug
181 report is wish you luck.  It would be futile to try to guess how to
182 provoke the bug.  For example, bugs in register allocation and reloading
183 frequently depend on every little detail of the function they happen in.
184
185 Even if the input file that fails comes from a GNU program, you should
186 still send the complete test case.  Don't ask the GCC maintainers to
187 do the extra work of obtaining the program in question---they are all
188 overworked as it is.  Also, the problem may depend on what is in the
189 header files on your system; it is unreliable for the GCC maintainers
190 to try the problem with the header files available to them.  By sending
191 CPP output, you can eliminate this source of uncertainty and save us
192 a certain percentage of wild goose chases.
193
194 @item
195 The command arguments you gave GCC to compile that example
196 and observe the bug.  For example, did you use @option{-O}?  To guarantee
197 you won't omit something important, list all the options.
198
199 If we were to try to guess the arguments, we would probably guess wrong
200 and then we would not encounter the bug.
201
202 @item
203 The type of machine you are using, and the operating system name and
204 version number.
205
206 @item
207 The operands you gave to the @code{configure} command when you installed
208 the compiler.
209
210 @item
211 A complete list of any modifications you have made to the compiler
212 source.  (We don't promise to investigate the bug unless it happens in
213 an unmodified compiler.  But if you've made modifications and don't tell
214 us, then you are sending us on a wild goose chase.)
215
216 Be precise about these changes.  A description in English is not
217 enough---send a context diff for them.
218
219 Adding files of your own (such as a machine description for a machine we
220 don't support) is a modification of the compiler source.
221
222 @item
223 Details of any other deviations from the standard procedure for installing
224 GCC@.
225
226 @item
227 A description of what behavior you observe that you believe is
228 incorrect.  For example, ``The compiler gets a fatal signal,'' or,
229 ``The assembler instruction at line 208 in the output is incorrect.''
230
231 Of course, if the bug is that the compiler gets a fatal signal, then one
232 can't miss it.  But if the bug is incorrect output, the maintainer might
233 not notice unless it is glaringly wrong.  None of us has time to study
234 all the assembler code from a 50-line C program just on the chance that
235 one instruction might be wrong.  We need @emph{you} to do this part!
236
237 Even if the problem you experience is a fatal signal, you should still
238 say so explicitly.  Suppose something strange is going on, such as, your
239 copy of the compiler is out of synch, or you have encountered a bug in
240 the C library on your system.  (This has happened!)  Your copy might
241 crash and the copy here would not.  If you @i{said} to expect a crash,
242 then when the compiler here fails to crash, we would know that the bug
243 was not happening.  If you don't say to expect a crash, then we would
244 not know whether the bug was happening.  We would not be able to draw
245 any conclusion from our observations.
246
247 If the problem is a diagnostic when compiling GCC with some other
248 compiler, say whether it is a warning or an error.
249
250 Often the observed symptom is incorrect output when your program is run.
251 Sad to say, this is not enough information unless the program is short
252 and simple.  None of us has time to study a large program to figure out
253 how it would work if compiled correctly, much less which line of it was
254 compiled wrong.  So you will have to do that.  Tell us which source line
255 it is, and what incorrect result happens when that line is executed.  A
256 person who understands the program can find this as easily as finding a
257 bug in the program itself.
258
259 @item
260 If you send examples of assembler code output from GCC,
261 please use @option{-g} when you make them.  The debugging information
262 includes source line numbers which are essential for correlating the
263 output with the input.
264
265 @item
266 If you wish to mention something in the GCC source, refer to it by
267 context, not by line number.
268
269 The line numbers in the development sources don't match those in your
270 sources.  Your line numbers would convey no useful information to the
271 maintainers.
272
273 @item
274 Additional information from a debugger might enable someone to find a
275 problem on a machine which he does not have available.  However, you
276 need to think when you collect this information if you want it to have
277 any chance of being useful.
278
279 @cindex backtrace for bug reports
280 For example, many people send just a backtrace, but that is never
281 useful by itself.  A simple backtrace with arguments conveys little
282 about GCC because the compiler is largely data-driven; the same
283 functions are called over and over for different RTL insns, doing
284 different things depending on the details of the insn.
285
286 Most of the arguments listed in the backtrace are useless because they
287 are pointers to RTL list structure.  The numeric values of the
288 pointers, which the debugger prints in the backtrace, have no
289 significance whatever; all that matters is the contents of the objects
290 they point to (and most of the contents are other such pointers).
291
292 In addition, most compiler passes consist of one or more loops that
293 scan the RTL insn sequence.  The most vital piece of information about
294 such a loop---which insn it has reached---is usually in a local variable,
295 not in an argument.
296
297 @findex debug_rtx
298 What you need to provide in addition to a backtrace are the values of
299 the local variables for several stack frames up.  When a local
300 variable or an argument is an RTX, first print its value and then use
301 the GDB command @code{pr} to print the RTL expression that it points
302 to.  (If GDB doesn't run on your machine, use your debugger to call
303 the function @code{debug_rtx} with the RTX as an argument.)  In
304 general, whenever a variable is a pointer, its value is no use
305 without the data it points to.
306 @end itemize
307
308 Here are some things that are not necessary:
309
310 @itemize @bullet
311 @item
312 A description of the envelope of the bug.
313
314 Often people who encounter a bug spend a lot of time investigating
315 which changes to the input file will make the bug go away and which
316 changes will not affect it.
317
318 This is often time consuming and not very useful, because the way we
319 will find the bug is by running a single example under the debugger with
320 breakpoints, not by pure deduction from a series of examples.  You might
321 as well save your time for something else.
322
323 Of course, if you can find a simpler example to report @emph{instead} of
324 the original one, that is a convenience.  Errors in the output will be
325 easier to spot, running under the debugger will take less time, etc.
326 Most GCC bugs involve just one function, so the most straightforward
327 way to simplify an example is to delete all the function definitions
328 except the one where the bug occurs.  Those earlier in the file may be
329 replaced by external declarations if the crucial function depends on
330 them.  (Exception: inline functions may affect compilation of functions
331 defined later in the file.)
332
333 However, simplification is not vital; if you don't want to do this,
334 report the bug anyway and send the entire test case you used.
335
336 @item
337 In particular, some people insert conditionals @samp{#ifdef BUG} around
338 a statement which, if removed, makes the bug not happen.  These are just
339 clutter; we won't pay any attention to them anyway.  Besides, you should
340 send us cpp output, and that can't have conditionals.
341
342 @item
343 A patch for the bug.
344
345 A patch for the bug is useful if it is a good one.  But don't omit the
346 necessary information, such as the test case, on the assumption that a
347 patch is all we need.  We might see problems with your patch and decide
348 to fix the problem another way, or we might not understand it at all.
349
350 Sometimes with a program as complicated as GCC it is very hard to
351 construct an example that will make the program follow a certain path
352 through the code.  If you don't send the example, we won't be able to
353 construct one, so we won't be able to verify that the bug is fixed.
354
355 And if we can't understand what bug you are trying to fix, or why your
356 patch should be an improvement, we won't install it.  A test case will
357 help us to understand.
358
359 See @uref{http://gcc.gnu.org/contribute.html}
360 for guidelines on how to make it easy for us to
361 understand and install your patches.
362
363 @item
364 A guess about what the bug is or what it depends on.
365
366 Such guesses are usually wrong.  Even I can't guess right about such
367 things without first using the debugger to find the facts.
368
369 @item
370 A core dump file.
371
372 We have no way of examining a core dump for your type of machine
373 unless we have an identical system---and if we do have one,
374 we should be able to reproduce the crash ourselves.
375 @end itemize
376
377 @node gccbug,, Bug Reporting, Bugs
378 @section The gccbug script
379 @cindex gccbug script
380
381 To simplify creation of bug reports, and to allow better tracking of
382 reports, we use the GNATS bug tracking system.  Part of that system is
383 the @code{gccbug} script.  This is a Unix shell script, so you need a
384 shell to run it.  It is normally installed in the same directory where
385 @code{gcc} is installed.
386
387 The gccbug script is derived from send-pr, @pxref{using
388 send-pr,,Creating new Problem Reports,send-pr,Reporting Problems}.  When
389 invoked, it starts a text editor so you can fill out the various fields
390 of the report.  When the you quit the editor, the report is automatically
391 send to the bug reporting address.
392
393 A number of fields in this bug report form are specific to GCC, and are
394 explained at @uref{http://gcc.gnu.org/gnats.html}.