OSDN Git Service

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