]> gcc.gnu.org Git - gcc.git/blob - gcc/toplev.c
re PR c++/18416 (ICE in import_export_decl)
[gcc.git] / gcc / toplev.c
1 /* Top level of GCC compilers (cc1, cc1plus, etc.)
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21
22 /* This is the top level of cc1/c++.
23 It parses command args, opens files, invokes the various passes
24 in the proper order, and counts the time used by each.
25 Error messages and low-level interface to malloc also handled here. */
26
27 #include "config.h"
28 #undef FLOAT /* This is for hpux. They should change hpux. */
29 #undef FFS /* Some systems define this in param.h. */
30 #include "system.h"
31 #include "coretypes.h"
32 #include "tm.h"
33 #include <signal.h>
34
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
37 #endif
38
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
41 #endif
42
43 #include "line-map.h"
44 #include "input.h"
45 #include "tree.h"
46 #include "version.h"
47 #include "rtl.h"
48 #include "tm_p.h"
49 #include "flags.h"
50 #include "insn-attr.h"
51 #include "insn-config.h"
52 #include "insn-flags.h"
53 #include "hard-reg-set.h"
54 #include "recog.h"
55 #include "output.h"
56 #include "except.h"
57 #include "function.h"
58 #include "toplev.h"
59 #include "expr.h"
60 #include "basic-block.h"
61 #include "intl.h"
62 #include "ggc.h"
63 #include "graph.h"
64 #include "regs.h"
65 #include "timevar.h"
66 #include "diagnostic.h"
67 #include "params.h"
68 #include "reload.h"
69 #include "dwarf2asm.h"
70 #include "integrate.h"
71 #include "real.h"
72 #include "debug.h"
73 #include "target.h"
74 #include "langhooks.h"
75 #include "cfglayout.h"
76 #include "cfgloop.h"
77 #include "hosthooks.h"
78 #include "cgraph.h"
79 #include "opts.h"
80 #include "coverage.h"
81 #include "value-prof.h"
82 #include "alloc-pool.h"
83 #include "tree-mudflap.h"
84
85 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
86 #include "dwarf2out.h"
87 #endif
88
89 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
90 #include "dbxout.h"
91 #endif
92
93 #ifdef SDB_DEBUGGING_INFO
94 #include "sdbout.h"
95 #endif
96
97 #ifdef XCOFF_DEBUGGING_INFO
98 #include "xcoffout.h" /* Needed for external data
99 declarations for e.g. AIX 4.x. */
100 #endif
101
102 static void general_init (const char *);
103 static void do_compile (void);
104 static void process_options (void);
105 static void backend_init (void);
106 static int lang_dependent_init (const char *);
107 static void init_asm_output (const char *);
108 static void finalize (void);
109
110 static void crash_signal (int) ATTRIBUTE_NORETURN;
111 static void setup_core_dumping (void);
112 static void compile_file (void);
113
114 static int print_single_switch (FILE *, int, int, const char *,
115 const char *, const char *,
116 const char *, const char *);
117 static void print_switch_values (FILE *, int, int, const char *,
118 const char *, const char *);
119
120 /* Nonzero to dump debug info whilst parsing (-dy option). */
121 static int set_yydebug;
122
123 /* True if we don't need a backend (e.g. preprocessing only). */
124 static bool no_backend;
125
126 /* Length of line when printing switch values. */
127 #define MAX_LINE 75
128
129 /* Name of program invoked, sans directories. */
130
131 const char *progname;
132
133 /* Copy of argument vector to toplev_main. */
134 static const char **save_argv;
135
136 /* Name of top-level original source file (what was input to cpp).
137 This comes from the #-command at the beginning of the actual input.
138 If there isn't any there, then this is the cc1 input file name. */
139
140 const char *main_input_filename;
141
142 #ifndef USE_MAPPED_LOCATION
143 location_t unknown_location = { NULL, 0 };
144 #endif
145
146 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
147 to optimize and default_debug_hooks in process_options (). */
148 #define AUTODETECT_FLAG_VAR_TRACKING 2
149
150 /* Current position in real source file. */
151
152 location_t input_location;
153
154 struct line_maps line_table;
155
156 /* Nonzero if it is unsafe to create any new pseudo registers. */
157 int no_new_pseudos;
158
159 /* Stack of currently pending input files. */
160
161 struct file_stack *input_file_stack;
162
163 /* Incremented on each change to input_file_stack. */
164 int input_file_stack_tick;
165
166 /* Name to use as base of names for dump output files. */
167
168 const char *dump_base_name;
169
170 /* Name to use as a base for auxiliary output files. */
171
172 const char *aux_base_name;
173
174 /* Bit flags that specify the machine subtype we are compiling for.
175 Bits are tested using macros TARGET_... defined in the tm.h file
176 and set by `-m...' switches. Must be defined in rtlanal.c. */
177
178 extern int target_flags;
179
180 /* A mask of target_flags that includes bit X if X was set or cleared
181 on the command line. */
182
183 int target_flags_explicit;
184
185 /* Debug hooks - dependent upon command line options. */
186
187 const struct gcc_debug_hooks *debug_hooks;
188
189 /* Debug hooks - target default. */
190
191 static const struct gcc_debug_hooks *default_debug_hooks;
192
193 /* Other flags saying which kinds of debugging dump have been requested. */
194
195 int rtl_dump_and_exit;
196 int flag_print_asm_name;
197 enum graph_dump_types graph_dump_format;
198
199 /* Name for output file of assembly code, specified with -o. */
200
201 const char *asm_file_name;
202
203 /* Nonzero means do optimizations. -O.
204 Particular numeric values stand for particular amounts of optimization;
205 thus, -O2 stores 2 here. However, the optimizations beyond the basic
206 ones are not controlled directly by this variable. Instead, they are
207 controlled by individual `flag_...' variables that are defaulted
208 based on this variable. */
209
210 int optimize = 0;
211
212 /* Nonzero means optimize for size. -Os.
213 The only valid values are zero and nonzero. When optimize_size is
214 nonzero, optimize defaults to 2, but certain individual code
215 bloating optimizations are disabled. */
216
217 int optimize_size = 0;
218
219 /* The FUNCTION_DECL for the function currently being compiled,
220 or 0 if between functions. */
221 tree current_function_decl;
222
223 /* Set to the FUNC_BEGIN label of the current function, or NULL
224 if none. */
225 const char * current_function_func_begin_label;
226
227 /* Temporarily suppress certain warnings.
228 This is set while reading code from a system header file. */
229
230 int in_system_header = 0;
231
232 /* Nonzero means to collect statistics which might be expensive
233 and to print them when we are done. */
234 int flag_detailed_statistics = 0;
235
236 /* A random sequence of characters, unless overridden by user. */
237 const char *flag_random_seed;
238
239 /* A local time stamp derived from the time of compilation. It will be
240 zero if the system cannot provide a time. It will be -1u, if the
241 user has specified a particular random seed. */
242 unsigned local_tick;
243
244 /* -f flags. */
245
246 /* Nonzero means `char' should be signed. */
247
248 int flag_signed_char;
249
250 /* Nonzero means give an enum type only as many bytes as it needs. A value
251 of 2 means it has not yet been initialized. */
252
253 int flag_short_enums;
254
255 /* Nonzero if structures and unions should be returned in memory.
256
257 This should only be defined if compatibility with another compiler or
258 with an ABI is needed, because it results in slower code. */
259
260 #ifndef DEFAULT_PCC_STRUCT_RETURN
261 #define DEFAULT_PCC_STRUCT_RETURN 1
262 #endif
263
264 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
265
266 int flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
267
268 /* 0 means straightforward implementation of complex divide acceptable.
269 1 means wide ranges of inputs must work for complex divide.
270 2 means C99-like requirements for complex divide (not yet implemented). */
271
272 int flag_complex_divide_method = 0;
273
274 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
275 not just because the tree inliner turned us off. */
276
277 int flag_really_no_inline = 2;
278
279 /* Nonzero means we should be saving declaration info into a .X file. */
280
281 int flag_gen_aux_info = 0;
282
283 /* Specified name of aux-info file. */
284
285 const char *aux_info_file_name;
286
287 /* Nonzero if we are compiling code for a shared library, zero for
288 executable. */
289
290 int flag_shlib;
291
292 /* Set to the default thread-local storage (tls) model to use. */
293
294 enum tls_model flag_tls_default = TLS_MODEL_GLOBAL_DYNAMIC;
295
296 /* Nonzero means change certain warnings into errors.
297 Usually these are warnings about failure to conform to some standard. */
298
299 int flag_pedantic_errors = 0;
300
301 /* -dA causes debug commentary information to be produced in
302 the generated assembly code (to make it more readable). This option
303 is generally only of use to those who actually need to read the
304 generated assembly code (perhaps while debugging the compiler itself).
305 Currently, this switch is only used by dwarfout.c; however, it is intended
306 to be a catchall for printing debug information in the assembler file. */
307
308 int flag_debug_asm = 0;
309
310 /* -dP causes the rtl to be emitted as a comment in assembly. */
311
312 int flag_dump_rtl_in_asm = 0;
313
314 /* When non-NULL, indicates that whenever space is allocated on the
315 stack, the resulting stack pointer must not pass this
316 address---that is, for stacks that grow downward, the stack pointer
317 must always be greater than or equal to this address; for stacks
318 that grow upward, the stack pointer must be less than this address.
319 At present, the rtx may be either a REG or a SYMBOL_REF, although
320 the support provided depends on the backend. */
321 rtx stack_limit_rtx;
322
323 /* If one, renumber instruction UIDs to reduce the number of
324 unused UIDs if there are a lot of instructions. If greater than
325 one, unconditionally renumber instruction UIDs. */
326 int flag_renumber_insns = 1;
327
328 /* Nonzero if we should track variables. When
329 flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING it will be set according
330 to optimize, debug_info_level and debug_hooks in process_options (). */
331 int flag_var_tracking = AUTODETECT_FLAG_VAR_TRACKING;
332
333 /* True if the user has tagged the function with the 'section'
334 attribute. */
335
336 bool user_defined_section_attribute = false;
337
338 /* Values of the -falign-* flags: how much to align labels in code.
339 0 means `use default', 1 means `don't align'.
340 For each variable, there is an _log variant which is the power
341 of two not less than the variable, for .align output. */
342
343 int align_loops_log;
344 int align_loops_max_skip;
345 int align_jumps_log;
346 int align_jumps_max_skip;
347 int align_labels_log;
348 int align_labels_max_skip;
349 int align_functions_log;
350
351 /* Like align_functions_log above, but used by front-ends to force the
352 minimum function alignment. Zero means no alignment is forced. */
353 int force_align_functions_log;
354
355 typedef struct
356 {
357 const char *const string;
358 int *const variable;
359 const int on_value;
360 }
361 lang_independent_options;
362
363 /* Nonzero if subexpressions must be evaluated from left-to-right. */
364 int flag_evaluation_order = 0;
365
366 /* The user symbol prefix after having resolved same. */
367 const char *user_label_prefix;
368
369 static const param_info lang_independent_params[] = {
370 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
371 { OPTION, DEFAULT, HELP },
372 #include "params.def"
373 #undef DEFPARAM
374 { NULL, 0, NULL }
375 };
376
377 /* Here is a table, controlled by the tm.h file, listing each -m switch
378 and which bits in `target_switches' it should set or clear.
379 If VALUE is positive, it is bits to set.
380 If VALUE is negative, -VALUE is bits to clear.
381 (The sign bit is not used so there is no confusion.) */
382
383 static const struct
384 {
385 const char *const name;
386 const int value;
387 const char *const description;
388 }
389 target_switches[] = TARGET_SWITCHES;
390
391 /* This table is similar, but allows the switch to have a value. */
392
393 #ifdef TARGET_OPTIONS
394 static const struct
395 {
396 const char *const prefix;
397 const char **const variable;
398 const char *const description;
399 const char *const value;
400 }
401 target_options[] = TARGET_OPTIONS;
402 #endif
403
404 /* Nonzero means warn about function definitions that default the return type
405 or that use a null return and have a return-type other than void. */
406
407 int warn_return_type;
408
409 /* Output files for assembler code (real compiler output)
410 and debugging dumps. */
411
412 FILE *asm_out_file;
413 FILE *aux_info_file;
414 FILE *dump_file = NULL;
415 const char *dump_file_name;
416
417 /* The current working directory of a translation. It's generally the
418 directory from which compilation was initiated, but a preprocessed
419 file may specify the original directory in which it was
420 created. */
421
422 static const char *src_pwd;
423
424 /* Initialize src_pwd with the given string, and return true. If it
425 was already initialized, return false. As a special case, it may
426 be called with a NULL argument to test whether src_pwd has NOT been
427 initialized yet. */
428
429 bool
430 set_src_pwd (const char *pwd)
431 {
432 if (src_pwd)
433 {
434 if (strcmp (src_pwd, pwd) == 0)
435 return true;
436 else
437 return false;
438 }
439
440 src_pwd = xstrdup (pwd);
441 return true;
442 }
443
444 /* Return the directory from which the translation unit was initiated,
445 in case set_src_pwd() was not called before to assign it a
446 different value. */
447
448 const char *
449 get_src_pwd (void)
450 {
451 if (! src_pwd)
452 src_pwd = getpwd ();
453
454 return src_pwd;
455 }
456
457 /* Called when the start of a function definition is parsed,
458 this function prints on stderr the name of the function. */
459 void
460 announce_function (tree decl)
461 {
462 if (!quiet_flag)
463 {
464 if (rtl_dump_and_exit)
465 verbatim ("%s ", IDENTIFIER_POINTER (DECL_NAME (decl)));
466 else
467 verbatim (" %s", lang_hooks.decl_printable_name (decl, 2));
468 fflush (stderr);
469 pp_needs_newline (global_dc->printer) = true;
470 diagnostic_set_last_function (global_dc);
471 }
472 }
473
474 /* Set up a default flag_random_seed and local_tick, unless the user
475 already specified one. */
476
477 static void
478 randomize (void)
479 {
480 if (!flag_random_seed)
481 {
482 unsigned HOST_WIDE_INT value;
483 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
484
485 /* Get some more or less random data. */
486 #ifdef HAVE_GETTIMEOFDAY
487 {
488 struct timeval tv;
489
490 gettimeofday (&tv, NULL);
491 local_tick = tv.tv_sec * 1000 + tv.tv_usec / 1000;
492 }
493 #else
494 {
495 time_t now = time (NULL);
496
497 if (now != (time_t)-1)
498 local_tick = (unsigned) now;
499 }
500 #endif
501 value = local_tick ^ getpid ();
502
503 sprintf (random_seed, HOST_WIDE_INT_PRINT_HEX, value);
504 flag_random_seed = random_seed;
505 }
506 else if (!local_tick)
507 local_tick = -1;
508 }
509
510
511 /* Decode the string P as an integral parameter.
512 If the string is indeed an integer return its numeric value else
513 issue an Invalid Option error for the option PNAME and return DEFVAL.
514 If PNAME is zero just return DEFVAL, do not call error. */
515
516 int
517 read_integral_parameter (const char *p, const char *pname, const int defval)
518 {
519 const char *endp = p;
520
521 while (*endp)
522 {
523 if (ISDIGIT (*endp))
524 endp++;
525 else
526 break;
527 }
528
529 if (*endp != 0)
530 {
531 if (pname != 0)
532 error ("invalid option argument %qs", pname);
533 return defval;
534 }
535
536 return atoi (p);
537 }
538
539 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
540 If X is 0, return -1. */
541
542 int
543 floor_log2 (unsigned HOST_WIDE_INT x)
544 {
545 int t = 0;
546
547 if (x == 0)
548 return -1;
549
550 #ifdef CLZ_HWI
551 t = HOST_BITS_PER_WIDE_INT - 1 - (int) CLZ_HWI (x);
552 #else
553 if (HOST_BITS_PER_WIDE_INT > 64)
554 if (x >= (unsigned HOST_WIDE_INT) 1 << (t + 64))
555 t += 64;
556 if (HOST_BITS_PER_WIDE_INT > 32)
557 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 32))
558 t += 32;
559 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 16))
560 t += 16;
561 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 8))
562 t += 8;
563 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 4))
564 t += 4;
565 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 2))
566 t += 2;
567 if (x >= ((unsigned HOST_WIDE_INT) 1) << (t + 1))
568 t += 1;
569 #endif
570
571 return t;
572 }
573
574 /* Return the logarithm of X, base 2, considering X unsigned,
575 if X is a power of 2. Otherwise, returns -1. */
576
577 int
578 exact_log2 (unsigned HOST_WIDE_INT x)
579 {
580 if (x != (x & -x))
581 return -1;
582 #ifdef CTZ_HWI
583 return x ? CTZ_HWI (x) : -1;
584 #else
585 return floor_log2 (x);
586 #endif
587 }
588
589 /* Handler for fatal signals, such as SIGSEGV. These are transformed
590 into ICE messages, which is much more user friendly. In case the
591 error printer crashes, reset the signal to prevent infinite recursion. */
592
593 static void
594 crash_signal (int signo)
595 {
596 signal (signo, SIG_DFL);
597
598 /* If we crashed while processing an ASM statement, then be a little more
599 graceful. It's most likely the user's fault. */
600 if (this_is_asm_operands)
601 {
602 output_operand_lossage ("unrecoverable error");
603 exit (FATAL_EXIT_CODE);
604 }
605
606 internal_error ("%s", strsignal (signo));
607 }
608
609 /* Arrange to dump core on error. (The regular error message is still
610 printed first, except in the case of abort().) */
611
612 static void
613 setup_core_dumping (void)
614 {
615 #ifdef SIGABRT
616 signal (SIGABRT, SIG_DFL);
617 #endif
618 #if defined(HAVE_SETRLIMIT)
619 {
620 struct rlimit rlim;
621 if (getrlimit (RLIMIT_CORE, &rlim) != 0)
622 fatal_error ("getting core file size maximum limit: %m");
623 rlim.rlim_cur = rlim.rlim_max;
624 if (setrlimit (RLIMIT_CORE, &rlim) != 0)
625 fatal_error ("setting core file size limit to maximum: %m");
626 }
627 #endif
628 diagnostic_abort_on_error (global_dc);
629 }
630
631
632 /* Strip off a legitimate source ending from the input string NAME of
633 length LEN. Rather than having to know the names used by all of
634 our front ends, we strip off an ending of a period followed by
635 up to five characters. (Java uses ".class".) */
636
637 void
638 strip_off_ending (char *name, int len)
639 {
640 int i;
641 for (i = 2; i < 6 && len > i; i++)
642 {
643 if (name[len - i] == '.')
644 {
645 name[len - i] = '\0';
646 break;
647 }
648 }
649 }
650
651 /* Output a quoted string. */
652
653 void
654 output_quoted_string (FILE *asm_file, const char *string)
655 {
656 #ifdef OUTPUT_QUOTED_STRING
657 OUTPUT_QUOTED_STRING (asm_file, string);
658 #else
659 char c;
660
661 putc ('\"', asm_file);
662 while ((c = *string++) != 0)
663 {
664 if (ISPRINT (c))
665 {
666 if (c == '\"' || c == '\\')
667 putc ('\\', asm_file);
668 putc (c, asm_file);
669 }
670 else
671 fprintf (asm_file, "\\%03o", (unsigned char) c);
672 }
673 putc ('\"', asm_file);
674 #endif
675 }
676
677 /* Output a file name in the form wanted by System V. */
678
679 void
680 output_file_directive (FILE *asm_file, const char *input_name)
681 {
682 int len;
683 const char *na;
684
685 if (input_name == NULL)
686 input_name = "<stdin>";
687
688 len = strlen (input_name);
689 na = input_name + len;
690
691 /* NA gets INPUT_NAME sans directory names. */
692 while (na > input_name)
693 {
694 if (IS_DIR_SEPARATOR (na[-1]))
695 break;
696 na--;
697 }
698
699 #ifdef ASM_OUTPUT_SOURCE_FILENAME
700 ASM_OUTPUT_SOURCE_FILENAME (asm_file, na);
701 #else
702 fprintf (asm_file, "\t.file\t");
703 output_quoted_string (asm_file, na);
704 fputc ('\n', asm_file);
705 #endif
706 }
707
708 /* Do any final processing required for the declarations in VEC, of
709 which there are LEN. We write out inline functions and variables
710 that have been deferred until this point, but which are required.
711 Returns nonzero if anything was put out. */
712
713 int
714 wrapup_global_declarations (tree *vec, int len)
715 {
716 tree decl;
717 int i;
718 int reconsider;
719 int output_something = 0;
720
721 for (i = 0; i < len; i++)
722 {
723 decl = vec[i];
724
725 /* We're not deferring this any longer. Assignment is
726 conditional to avoid needlessly dirtying PCH pages. */
727 if (DECL_DEFER_OUTPUT (decl) != 0)
728 DECL_DEFER_OUTPUT (decl) = 0;
729
730 if (TREE_CODE (decl) == VAR_DECL && DECL_SIZE (decl) == 0)
731 lang_hooks.finish_incomplete_decl (decl);
732 }
733
734 /* Now emit any global variables or functions that we have been
735 putting off. We need to loop in case one of the things emitted
736 here references another one which comes earlier in the list. */
737 do
738 {
739 reconsider = 0;
740 for (i = 0; i < len; i++)
741 {
742 decl = vec[i];
743
744 if (TREE_ASM_WRITTEN (decl) || DECL_EXTERNAL (decl))
745 continue;
746
747 /* Don't write out static consts, unless we still need them.
748
749 We also keep static consts if not optimizing (for debugging),
750 unless the user specified -fno-keep-static-consts.
751 ??? They might be better written into the debug information.
752 This is possible when using DWARF.
753
754 A language processor that wants static constants to be always
755 written out (even if it is not used) is responsible for
756 calling rest_of_decl_compilation itself. E.g. the C front-end
757 calls rest_of_decl_compilation from finish_decl.
758 One motivation for this is that is conventional in some
759 environments to write things like:
760 static const char rcsid[] = "... version string ...";
761 intending to force the string to be in the executable.
762
763 A language processor that would prefer to have unneeded
764 static constants "optimized away" would just defer writing
765 them out until here. E.g. C++ does this, because static
766 constants are often defined in header files.
767
768 ??? A tempting alternative (for both C and C++) would be
769 to force a constant to be written if and only if it is
770 defined in a main file, as opposed to an include file. */
771
772 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
773 {
774 struct cgraph_varpool_node *node;
775 bool needed = 1;
776 node = cgraph_varpool_node (decl);
777
778 if (flag_unit_at_a_time && node->finalized)
779 needed = 0;
780 else if ((flag_unit_at_a_time && !cgraph_global_info_ready)
781 && (TREE_USED (decl)
782 || TREE_USED (DECL_ASSEMBLER_NAME (decl))))
783 /* needed */;
784 else if (node->needed)
785 /* needed */;
786 else if (DECL_COMDAT (decl))
787 needed = 0;
788 else if (TREE_READONLY (decl) && !TREE_PUBLIC (decl)
789 && (optimize || !flag_keep_static_consts
790 || DECL_ARTIFICIAL (decl)))
791 needed = 0;
792
793 if (needed)
794 {
795 reconsider = 1;
796 rest_of_decl_compilation (decl, 1, 1);
797 }
798 }
799 }
800
801 if (reconsider)
802 output_something = 1;
803 }
804 while (reconsider);
805
806 return output_something;
807 }
808
809 /* Issue appropriate warnings for the global declarations in VEC (of
810 which there are LEN). Output debugging information for them. */
811
812 void
813 check_global_declarations (tree *vec, int len)
814 {
815 tree decl;
816 int i;
817
818 for (i = 0; i < len; i++)
819 {
820 decl = vec[i];
821
822 /* Warn about any function
823 declared static but not defined.
824 We don't warn about variables,
825 because many programs have static variables
826 that exist only to get some text into the object file. */
827 if (TREE_CODE (decl) == FUNCTION_DECL
828 && DECL_INITIAL (decl) == 0
829 && DECL_EXTERNAL (decl)
830 && ! DECL_ARTIFICIAL (decl)
831 && ! TREE_NO_WARNING (decl)
832 && ! TREE_PUBLIC (decl)
833 && (warn_unused_function
834 || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))))
835 {
836 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl)))
837 pedwarn ("%J%qF used but never defined", decl, decl);
838 else
839 warning ("%J%qF declared %<static%> but never defined",
840 decl, decl);
841 /* This symbol is effectively an "extern" declaration now. */
842 TREE_PUBLIC (decl) = 1;
843 assemble_external (decl);
844 }
845
846 /* Warn about static fns or vars defined but not used. */
847 if (((warn_unused_function && TREE_CODE (decl) == FUNCTION_DECL)
848 /* We don't warn about "static const" variables because the
849 "rcs_id" idiom uses that construction. */
850 || (warn_unused_variable
851 && TREE_CODE (decl) == VAR_DECL && ! TREE_READONLY (decl)))
852 && ! DECL_IN_SYSTEM_HEADER (decl)
853 && ! TREE_USED (decl)
854 /* The TREE_USED bit for file-scope decls is kept in the identifier,
855 to handle multiple external decls in different scopes. */
856 && ! TREE_USED (DECL_NAME (decl))
857 && ! DECL_EXTERNAL (decl)
858 && ! TREE_PUBLIC (decl)
859 /* A volatile variable might be used in some non-obvious way. */
860 && ! TREE_THIS_VOLATILE (decl)
861 /* Global register variables must be declared to reserve them. */
862 && ! (TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
863 /* Otherwise, ask the language. */
864 && lang_hooks.decls.warn_unused_global (decl))
865 warning ("%J%qD defined but not used", decl, decl);
866
867 /* Avoid confusing the debug information machinery when there are
868 errors. */
869 if (errorcount == 0 && sorrycount == 0)
870 {
871 timevar_push (TV_SYMOUT);
872 (*debug_hooks->global_decl) (decl);
873 timevar_pop (TV_SYMOUT);
874 }
875 }
876 }
877
878 /* Warn about a use of an identifier which was marked deprecated. */
879 void
880 warn_deprecated_use (tree node)
881 {
882 if (node == 0 || !warn_deprecated_decl)
883 return;
884
885 if (DECL_P (node))
886 {
887 expanded_location xloc = expand_location (DECL_SOURCE_LOCATION (node));
888 warning ("%qs is deprecated (declared at %s:%d)",
889 IDENTIFIER_POINTER (DECL_NAME (node)),
890 xloc.file, xloc.line);
891 }
892 else if (TYPE_P (node))
893 {
894 const char *what = NULL;
895 tree decl = TYPE_STUB_DECL (node);
896
897 if (TYPE_NAME (node))
898 {
899 if (TREE_CODE (TYPE_NAME (node)) == IDENTIFIER_NODE)
900 what = IDENTIFIER_POINTER (TYPE_NAME (node));
901 else if (TREE_CODE (TYPE_NAME (node)) == TYPE_DECL
902 && DECL_NAME (TYPE_NAME (node)))
903 what = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (node)));
904 }
905
906 if (decl)
907 {
908 expanded_location xloc
909 = expand_location (DECL_SOURCE_LOCATION (decl));
910 if (what)
911 warning ("%qs is deprecated (declared at %s:%d)", what,
912 xloc.file, xloc.line);
913 else
914 warning ("type is deprecated (declared at %s:%d)",
915 xloc.file, xloc.line);
916 }
917 else
918 {
919 if (what)
920 warning ("%qs is deprecated", what);
921 else
922 warning ("type is deprecated");
923 }
924 }
925 }
926
927 /* Save the current INPUT_LOCATION on the top entry in the
928 INPUT_FILE_STACK. Push a new entry for FILE and LINE, and set the
929 INPUT_LOCATION accordingly. */
930
931 void
932 #ifdef USE_MAPPED_LOCATION
933 push_srcloc (location_t fline)
934 #else
935 push_srcloc (const char *file, int line)
936 #endif
937 {
938 struct file_stack *fs;
939
940 fs = xmalloc (sizeof (struct file_stack));
941 fs->location = input_location;
942 fs->next = input_file_stack;
943 #ifdef USE_MAPPED_LOCATION
944 input_location = fline;
945 #else
946 input_filename = file;
947 input_line = line;
948 #endif
949 input_file_stack = fs;
950 input_file_stack_tick++;
951 }
952
953 /* Pop the top entry off the stack of presently open source files.
954 Restore the INPUT_LOCATION from the new topmost entry on the
955 stack. */
956
957 void
958 pop_srcloc (void)
959 {
960 struct file_stack *fs;
961
962 fs = input_file_stack;
963 input_location = fs->location;
964 input_file_stack = fs->next;
965 free (fs);
966 input_file_stack_tick++;
967 }
968
969 /* Compile an entire translation unit. Write a file of assembly
970 output and various debugging dumps. */
971
972 static void
973 compile_file (void)
974 {
975 /* Initialize yet another pass. */
976
977 init_cgraph ();
978 init_final (main_input_filename);
979 coverage_init (aux_base_name);
980
981 timevar_push (TV_PARSE);
982
983 /* Call the parser, which parses the entire file (calling
984 rest_of_compilation for each function). */
985 lang_hooks.parse_file (set_yydebug);
986
987 /* In case there were missing block closers,
988 get us back to the global binding level. */
989 lang_hooks.clear_binding_stack ();
990
991 /* Compilation is now finished except for writing
992 what's left of the symbol table output. */
993 timevar_pop (TV_PARSE);
994
995 if (flag_syntax_only)
996 return;
997
998 lang_hooks.decls.final_write_globals ();
999
1000 cgraph_varpool_assemble_pending_decls ();
1001
1002 /* This must occur after the loop to output deferred functions.
1003 Else the coverage initializer would not be emitted if all the
1004 functions in this compilation unit were deferred. */
1005 coverage_finish ();
1006
1007 /* Likewise for mudflap static object registrations. */
1008 if (flag_mudflap)
1009 mudflap_finish_file ();
1010
1011 /* Write out any pending weak symbol declarations. */
1012
1013 weak_finish ();
1014
1015 /* Do dbx symbols. */
1016 timevar_push (TV_SYMOUT);
1017
1018 #ifdef DWARF2_UNWIND_INFO
1019 if (dwarf2out_do_frame ())
1020 dwarf2out_frame_finish ();
1021 #endif
1022
1023 (*debug_hooks->finish) (main_input_filename);
1024 timevar_pop (TV_SYMOUT);
1025
1026 /* Output some stuff at end of file if nec. */
1027
1028 dw2_output_indirect_constants ();
1029
1030 /* Attach a special .ident directive to the end of the file to identify
1031 the version of GCC which compiled this code. The format of the .ident
1032 string is patterned after the ones produced by native SVR4 compilers. */
1033 #ifdef IDENT_ASM_OP
1034 if (!flag_no_ident)
1035 fprintf (asm_out_file, "%s\"GCC: (GNU) %s\"\n",
1036 IDENT_ASM_OP, version_string);
1037 #endif
1038
1039 /* This must be at the end. Some target ports emit end of file directives
1040 into the assembly file here, and hence we can not output anything to the
1041 assembly file after this point. */
1042 targetm.asm_out.file_end ();
1043 }
1044
1045 /* Display help for target options. */
1046 void
1047 display_target_options (void)
1048 {
1049 int undoc, i;
1050 static bool displayed = false;
1051
1052 /* Avoid double printing for --help --target-help. */
1053 if (displayed)
1054 return;
1055
1056 displayed = true;
1057
1058 if (ARRAY_SIZE (target_switches) > 1
1059 #ifdef TARGET_OPTIONS
1060 || ARRAY_SIZE (target_options) > 1
1061 #endif
1062 )
1063 {
1064 int doc = 0;
1065
1066 undoc = 0;
1067
1068 printf (_("\nTarget specific options:\n"));
1069
1070 for (i = ARRAY_SIZE (target_switches); i--;)
1071 {
1072 const char *option = target_switches[i].name;
1073 const char *description = target_switches[i].description;
1074
1075 if (option == NULL || *option == 0)
1076 continue;
1077 else if (description == NULL)
1078 {
1079 undoc = 1;
1080
1081 if (extra_warnings)
1082 printf (_(" -m%-23s [undocumented]\n"), option);
1083 }
1084 else if (*description != 0)
1085 doc += printf (" -m%-23s %s\n", option, _(description));
1086 }
1087
1088 #ifdef TARGET_OPTIONS
1089 for (i = ARRAY_SIZE (target_options); i--;)
1090 {
1091 const char *option = target_options[i].prefix;
1092 const char *description = target_options[i].description;
1093
1094 if (option == NULL || *option == 0)
1095 continue;
1096 else if (description == NULL)
1097 {
1098 undoc = 1;
1099
1100 if (extra_warnings)
1101 printf (_(" -m%-23s [undocumented]\n"), option);
1102 }
1103 else if (*description != 0)
1104 doc += printf (" -m%-23s %s\n", option, _(description));
1105 }
1106 #endif
1107 if (undoc)
1108 {
1109 if (doc)
1110 printf (_("\nThere are undocumented target specific options as well.\n"));
1111 else
1112 printf (_(" They exist, but they are not documented.\n"));
1113 }
1114 }
1115 }
1116
1117 /* Parse a -d... command line switch. */
1118
1119 void
1120 decode_d_option (const char *arg)
1121 {
1122 int c;
1123
1124 while (*arg)
1125 switch (c = *arg++)
1126 {
1127 case 'A':
1128 flag_debug_asm = 1;
1129 break;
1130 case 'p':
1131 flag_print_asm_name = 1;
1132 break;
1133 case 'P':
1134 flag_dump_rtl_in_asm = 1;
1135 flag_print_asm_name = 1;
1136 break;
1137 case 'v':
1138 graph_dump_format = vcg;
1139 break;
1140 case 'x':
1141 rtl_dump_and_exit = 1;
1142 break;
1143 case 'y':
1144 set_yydebug = 1;
1145 break;
1146 case 'D': /* These are handled by the preprocessor. */
1147 case 'I':
1148 break;
1149 case 'H':
1150 setup_core_dumping();
1151 break;
1152
1153 case 'a':
1154 default:
1155 if (!enable_rtl_dump_file (c))
1156 warning ("unrecognized gcc debugging option: %c", c);
1157 break;
1158 }
1159 }
1160
1161 /* Indexed by enum debug_info_type. */
1162 const char *const debug_type_names[] =
1163 {
1164 "none", "stabs", "coff", "dwarf-2", "xcoff", "vms"
1165 };
1166
1167 /* Decode -m switches. */
1168 /* Decode the switch -mNAME. */
1169
1170 void
1171 set_target_switch (const char *name)
1172 {
1173 size_t j;
1174 int valid_target_option = 0;
1175
1176 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
1177 if (!strcmp (target_switches[j].name, name))
1178 {
1179 if (target_switches[j].value < 0)
1180 target_flags &= ~-target_switches[j].value;
1181 else
1182 target_flags |= target_switches[j].value;
1183 if (name[0] != 0)
1184 {
1185 if (target_switches[j].value < 0)
1186 target_flags_explicit |= -target_switches[j].value;
1187 else
1188 target_flags_explicit |= target_switches[j].value;
1189 }
1190 valid_target_option = 1;
1191 }
1192
1193 #ifdef TARGET_OPTIONS
1194 if (!valid_target_option)
1195 for (j = 0; j < ARRAY_SIZE (target_options); j++)
1196 {
1197 int len = strlen (target_options[j].prefix);
1198 if (target_options[j].value)
1199 {
1200 if (!strcmp (target_options[j].prefix, name))
1201 {
1202 *target_options[j].variable = target_options[j].value;
1203 valid_target_option = 1;
1204 }
1205 }
1206 else
1207 {
1208 if (!strncmp (target_options[j].prefix, name, len))
1209 {
1210 *target_options[j].variable = name + len;
1211 valid_target_option = 1;
1212 }
1213 }
1214 }
1215 #endif
1216
1217 if (!valid_target_option)
1218 error ("invalid option %qs", name);
1219 }
1220
1221 /* Print version information to FILE.
1222 Each line begins with INDENT (for the case where FILE is the
1223 assembler output file). */
1224
1225 void
1226 print_version (FILE *file, const char *indent)
1227 {
1228 #ifndef __VERSION__
1229 #define __VERSION__ "[?]"
1230 #endif
1231 fnotice (file,
1232 #ifdef __GNUC__
1233 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
1234 #else
1235 "%s%s%s version %s (%s) compiled by CC.\n"
1236 #endif
1237 , indent, *indent != 0 ? " " : "",
1238 lang_hooks.name, version_string, TARGET_NAME,
1239 indent, __VERSION__);
1240 fnotice (file, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n",
1241 indent, *indent != 0 ? " " : "",
1242 PARAM_VALUE (GGC_MIN_EXPAND), PARAM_VALUE (GGC_MIN_HEAPSIZE));
1243 }
1244
1245 /* Print an option value and return the adjusted position in the line.
1246 ??? We don't handle error returns from fprintf (disk full); presumably
1247 other code will catch a disk full though. */
1248
1249 static int
1250 print_single_switch (FILE *file, int pos, int max,
1251 const char *indent, const char *sep, const char *term,
1252 const char *type, const char *name)
1253 {
1254 /* The ultrix fprintf returns 0 on success, so compute the result we want
1255 here since we need it for the following test. */
1256 int len = strlen (sep) + strlen (type) + strlen (name);
1257
1258 if (pos != 0
1259 && pos + len > max)
1260 {
1261 fprintf (file, "%s", term);
1262 pos = 0;
1263 }
1264 if (pos == 0)
1265 {
1266 fprintf (file, "%s", indent);
1267 pos = strlen (indent);
1268 }
1269 fprintf (file, "%s%s%s", sep, type, name);
1270 pos += len;
1271 return pos;
1272 }
1273
1274 /* Print active target switches to FILE.
1275 POS is the current cursor position and MAX is the size of a "line".
1276 Each line begins with INDENT and ends with TERM.
1277 Each switch is separated from the next by SEP. */
1278
1279 static void
1280 print_switch_values (FILE *file, int pos, int max,
1281 const char *indent, const char *sep, const char *term)
1282 {
1283 size_t j;
1284 const char **p;
1285
1286 /* Fill in the -frandom-seed option, if the user didn't pass it, so
1287 that it can be printed below. This helps reproducibility. */
1288 randomize ();
1289
1290 /* Print the options as passed. */
1291 pos = print_single_switch (file, pos, max, indent, *indent ? " " : "", term,
1292 _("options passed: "), "");
1293
1294 for (p = &save_argv[1]; *p != NULL; p++)
1295 if (**p == '-')
1296 {
1297 /* Ignore these. */
1298 if (strcmp (*p, "-o") == 0)
1299 {
1300 if (p[1] != NULL)
1301 p++;
1302 continue;
1303 }
1304 if (strcmp (*p, "-quiet") == 0)
1305 continue;
1306 if (strcmp (*p, "-version") == 0)
1307 continue;
1308 if ((*p)[1] == 'd')
1309 continue;
1310
1311 pos = print_single_switch (file, pos, max, indent, sep, term, *p, "");
1312 }
1313 if (pos > 0)
1314 fprintf (file, "%s", term);
1315
1316 /* Print the -f and -m options that have been enabled.
1317 We don't handle language specific options but printing argv
1318 should suffice. */
1319
1320 pos = print_single_switch (file, 0, max, indent, *indent ? " " : "", term,
1321 _("options enabled: "), "");
1322
1323 for (j = 0; j < cl_options_count; j++)
1324 {
1325 if (!cl_options[j].flag_var
1326 || !(cl_options[j].flags & CL_REPORT))
1327 continue;
1328
1329 if (cl_options[j].has_set_value)
1330 {
1331 if (*cl_options[j].flag_var != cl_options[j].set_value)
1332 continue;
1333 }
1334 else
1335 {
1336 if (!*cl_options[j].flag_var)
1337 continue;
1338 }
1339
1340 pos = print_single_switch (file, pos, max, indent, sep, term,
1341 "", cl_options[j].opt_text);
1342 }
1343
1344 /* Print target specific options. */
1345
1346 for (j = 0; j < ARRAY_SIZE (target_switches); j++)
1347 if (target_switches[j].name[0] != '\0'
1348 && target_switches[j].value > 0
1349 && ((target_switches[j].value & target_flags)
1350 == target_switches[j].value))
1351 {
1352 pos = print_single_switch (file, pos, max, indent, sep, term,
1353 "-m", target_switches[j].name);
1354 }
1355
1356 #ifdef TARGET_OPTIONS
1357 for (j = 0; j < ARRAY_SIZE (target_options); j++)
1358 if (*target_options[j].variable != NULL)
1359 {
1360 char prefix[256];
1361 sprintf (prefix, "-m%s", target_options[j].prefix);
1362 pos = print_single_switch (file, pos, max, indent, sep, term,
1363 prefix, *target_options[j].variable);
1364 }
1365 #endif
1366
1367 fprintf (file, "%s", term);
1368 }
1369
1370 /* Open assembly code output file. Do this even if -fsyntax-only is
1371 on, because then the driver will have provided the name of a
1372 temporary file or bit bucket for us. NAME is the file specified on
1373 the command line, possibly NULL. */
1374 static void
1375 init_asm_output (const char *name)
1376 {
1377 if (name == NULL && asm_file_name == 0)
1378 asm_out_file = stdout;
1379 else
1380 {
1381 if (asm_file_name == 0)
1382 {
1383 int len = strlen (dump_base_name);
1384 char *dumpname = xmalloc (len + 6);
1385 memcpy (dumpname, dump_base_name, len + 1);
1386 strip_off_ending (dumpname, len);
1387 strcat (dumpname, ".s");
1388 asm_file_name = dumpname;
1389 }
1390 if (!strcmp (asm_file_name, "-"))
1391 asm_out_file = stdout;
1392 else
1393 asm_out_file = fopen (asm_file_name, "w+b");
1394 if (asm_out_file == 0)
1395 fatal_error ("can%'t open %s for writing: %m", asm_file_name);
1396 }
1397
1398 #ifdef IO_BUFFER_SIZE
1399 setvbuf (asm_out_file, xmalloc (IO_BUFFER_SIZE),
1400 _IOFBF, IO_BUFFER_SIZE);
1401 #endif
1402
1403 if (!flag_syntax_only)
1404 {
1405 targetm.asm_out.file_start ();
1406
1407 #ifdef ASM_COMMENT_START
1408 if (flag_verbose_asm)
1409 {
1410 /* Print the list of options in effect. */
1411 print_version (asm_out_file, ASM_COMMENT_START);
1412 print_switch_values (asm_out_file, 0, MAX_LINE,
1413 ASM_COMMENT_START, " ", "\n");
1414 /* Add a blank line here so it appears in assembler output but not
1415 screen output. */
1416 fprintf (asm_out_file, "\n");
1417 }
1418 #endif
1419 }
1420 }
1421
1422 /* Default version of get_pch_validity.
1423 By default, every flag difference is fatal; that will be mostly right for
1424 most targets, but completely right for very few. */
1425
1426 void *
1427 default_get_pch_validity (size_t *len)
1428 {
1429 #ifdef TARGET_OPTIONS
1430 size_t i;
1431 #endif
1432 char *result, *r;
1433
1434 *len = sizeof (target_flags) + 2;
1435 #ifdef TARGET_OPTIONS
1436 for (i = 0; i < ARRAY_SIZE (target_options); i++)
1437 {
1438 *len += 1;
1439 if (*target_options[i].variable)
1440 *len += strlen (*target_options[i].variable);
1441 }
1442 #endif
1443
1444 result = r = xmalloc (*len);
1445 r[0] = flag_pic;
1446 r[1] = flag_pie;
1447 r += 2;
1448 memcpy (r, &target_flags, sizeof (target_flags));
1449 r += sizeof (target_flags);
1450
1451 #ifdef TARGET_OPTIONS
1452 for (i = 0; i < ARRAY_SIZE (target_options); i++)
1453 {
1454 const char *str = *target_options[i].variable;
1455 size_t l;
1456 if (! str)
1457 str = "";
1458 l = strlen (str) + 1;
1459 memcpy (r, str, l);
1460 r += l;
1461 }
1462 #endif
1463
1464 return result;
1465 }
1466
1467 /* Default version of pch_valid_p. */
1468
1469 const char *
1470 default_pch_valid_p (const void *data_p, size_t len)
1471 {
1472 const char *data = (const char *)data_p;
1473 const char *flag_that_differs = NULL;
1474 size_t i;
1475
1476 /* -fpic and -fpie also usually make a PCH invalid. */
1477 if (data[0] != flag_pic)
1478 return _("created and used with different settings of -fpic");
1479 if (data[1] != flag_pie)
1480 return _("created and used with different settings of -fpie");
1481 data += 2;
1482
1483 /* Check target_flags. */
1484 if (memcmp (data, &target_flags, sizeof (target_flags)) != 0)
1485 {
1486 for (i = 0; i < ARRAY_SIZE (target_switches); i++)
1487 {
1488 int bits;
1489 int tf;
1490
1491 memcpy (&tf, data, sizeof (target_flags));
1492
1493 bits = target_switches[i].value;
1494 if (bits < 0)
1495 bits = -bits;
1496 if ((target_flags & bits) != (tf & bits))
1497 {
1498 flag_that_differs = target_switches[i].name;
1499 goto make_message;
1500 }
1501 }
1502 gcc_unreachable ();
1503 }
1504 data += sizeof (target_flags);
1505 len -= sizeof (target_flags);
1506
1507 /* Check string options. */
1508 #ifdef TARGET_OPTIONS
1509 for (i = 0; i < ARRAY_SIZE (target_options); i++)
1510 {
1511 const char *str = *target_options[i].variable;
1512 size_t l;
1513 if (! str)
1514 str = "";
1515 l = strlen (str) + 1;
1516 if (len < l || memcmp (data, str, l) != 0)
1517 {
1518 flag_that_differs = target_options[i].prefix;
1519 goto make_message;
1520 }
1521 data += l;
1522 len -= l;
1523 }
1524 #endif
1525
1526 return NULL;
1527
1528 make_message:
1529 {
1530 char *r;
1531 asprintf (&r, _("created and used with differing settings of '-m%s'"),
1532 flag_that_differs);
1533 if (r == NULL)
1534 return _("out of memory");
1535 return r;
1536 }
1537 }
1538
1539 /* Default tree printer. Handles declarations only. */
1540 static bool
1541 default_tree_printer (pretty_printer * pp, text_info *text)
1542 {
1543 switch (*text->format_spec)
1544 {
1545 case 'D':
1546 case 'F':
1547 case 'T':
1548 {
1549 tree t = va_arg (*text->args_ptr, tree);
1550 const char *n = DECL_NAME (t)
1551 ? lang_hooks.decl_printable_name (t, 2)
1552 : "<anonymous>";
1553 pp_string (pp, n);
1554 }
1555 return true;
1556
1557 default:
1558 return false;
1559 }
1560 }
1561
1562 /* Initialization of the front end environment, before command line
1563 options are parsed. Signal handlers, internationalization etc.
1564 ARGV0 is main's argv[0]. */
1565 static void
1566 general_init (const char *argv0)
1567 {
1568 const char *p;
1569
1570 p = argv0 + strlen (argv0);
1571 while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
1572 --p;
1573 progname = p;
1574
1575 xmalloc_set_program_name (progname);
1576
1577 hex_init ();
1578
1579 gcc_init_libintl ();
1580
1581 /* Initialize the diagnostics reporting machinery, so option parsing
1582 can give warnings and errors. */
1583 diagnostic_initialize (global_dc);
1584 /* Set a default printer. Language specific initializations will
1585 override it later. */
1586 pp_format_decoder (global_dc->printer) = &default_tree_printer;
1587
1588 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1589 #ifdef SIGSEGV
1590 signal (SIGSEGV, crash_signal);
1591 #endif
1592 #ifdef SIGILL
1593 signal (SIGILL, crash_signal);
1594 #endif
1595 #ifdef SIGBUS
1596 signal (SIGBUS, crash_signal);
1597 #endif
1598 #ifdef SIGABRT
1599 signal (SIGABRT, crash_signal);
1600 #endif
1601 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1602 signal (SIGIOT, crash_signal);
1603 #endif
1604 #ifdef SIGFPE
1605 signal (SIGFPE, crash_signal);
1606 #endif
1607
1608 /* Other host-specific signal setup. */
1609 (*host_hooks.extra_signals)();
1610
1611 /* Initialize the garbage-collector, string pools and tree type hash
1612 table. */
1613 init_ggc ();
1614 init_stringpool ();
1615 linemap_init (&line_table);
1616 init_ttree ();
1617
1618 /* Initialize register usage now so switches may override. */
1619 init_reg_sets ();
1620
1621 /* Register the language-independent parameters. */
1622 add_params (lang_independent_params, LAST_PARAM);
1623
1624 /* This must be done after add_params but before argument processing. */
1625 init_ggc_heuristics();
1626 init_tree_optimization_passes ();
1627 }
1628
1629 /* Process the options that have been parsed. */
1630 static void
1631 process_options (void)
1632 {
1633 /* Allow the front end to perform consistency checks and do further
1634 initialization based on the command line options. This hook also
1635 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1636 so we can correctly initialize debug output. */
1637 no_backend = lang_hooks.post_options (&main_input_filename);
1638 #ifndef USE_MAPPED_LOCATION
1639 input_filename = main_input_filename;
1640 #endif
1641
1642 #ifdef OVERRIDE_OPTIONS
1643 /* Some machines may reject certain combinations of options. */
1644 OVERRIDE_OPTIONS;
1645 #endif
1646
1647 if (flag_short_enums == 2)
1648 flag_short_enums = targetm.default_short_enums ();
1649
1650 /* Set aux_base_name if not already set. */
1651 if (aux_base_name)
1652 ;
1653 else if (main_input_filename)
1654 {
1655 char *name = xstrdup (lbasename (main_input_filename));
1656
1657 strip_off_ending (name, strlen (name));
1658 aux_base_name = name;
1659 }
1660 else
1661 aux_base_name = "gccaux";
1662
1663 /* Set up the align_*_log variables, defaulting them to 1 if they
1664 were still unset. */
1665 if (align_loops <= 0) align_loops = 1;
1666 if (align_loops_max_skip > align_loops || !align_loops)
1667 align_loops_max_skip = align_loops - 1;
1668 align_loops_log = floor_log2 (align_loops * 2 - 1);
1669 if (align_jumps <= 0) align_jumps = 1;
1670 if (align_jumps_max_skip > align_jumps || !align_jumps)
1671 align_jumps_max_skip = align_jumps - 1;
1672 align_jumps_log = floor_log2 (align_jumps * 2 - 1);
1673 if (align_labels <= 0) align_labels = 1;
1674 align_labels_log = floor_log2 (align_labels * 2 - 1);
1675 if (align_labels_max_skip > align_labels || !align_labels)
1676 align_labels_max_skip = align_labels - 1;
1677 if (align_functions <= 0) align_functions = 1;
1678 align_functions_log = floor_log2 (align_functions * 2 - 1);
1679
1680 /* Unrolling all loops implies that standard loop unrolling must also
1681 be done. */
1682 if (flag_unroll_all_loops)
1683 flag_unroll_loops = 1;
1684
1685 /* The loop unrolling code assumes that cse will be run after loop. */
1686 if (flag_unroll_loops || flag_peel_loops)
1687 flag_rerun_cse_after_loop = 1;
1688
1689 /* If explicitly asked to run new loop optimizer, switch off the old
1690 one. */
1691 if (flag_loop_optimize2)
1692 flag_loop_optimize = 0;
1693
1694 /* Enable new loop optimizer pass if any of its optimizations is called. */
1695 if (flag_move_loop_invariants
1696 || flag_unswitch_loops
1697 || flag_peel_loops
1698 || flag_unroll_loops
1699 || flag_branch_on_count_reg)
1700 flag_loop_optimize2 = 1;
1701
1702 if (flag_non_call_exceptions)
1703 flag_asynchronous_unwind_tables = 1;
1704 if (flag_asynchronous_unwind_tables)
1705 flag_unwind_tables = 1;
1706
1707 /* Disable unit-at-a-time mode for frontends not supporting callgraph
1708 interface. */
1709 if (flag_unit_at_a_time && ! lang_hooks.callgraph.expand_function)
1710 flag_unit_at_a_time = 0;
1711
1712 if (flag_value_profile_transformations)
1713 flag_profile_values = 1;
1714
1715 /* Speculative prefetching implies the value profiling. We also switch off
1716 the prefetching in the loop optimizer, so that we do not emit double
1717 prefetches. TODO -- we should teach these two to cooperate; the loop
1718 based prefetching may sometimes do a better job, especially in connection
1719 with reuse analysis. */
1720 if (flag_speculative_prefetching)
1721 {
1722 flag_profile_values = 1;
1723 flag_prefetch_loop_arrays = 0;
1724 }
1725
1726 /* Warn about options that are not supported on this machine. */
1727 #ifndef INSN_SCHEDULING
1728 if (flag_schedule_insns || flag_schedule_insns_after_reload)
1729 warning ("instruction scheduling not supported on this target machine");
1730 #endif
1731 #ifndef DELAY_SLOTS
1732 if (flag_delayed_branch)
1733 warning ("this target machine does not have delayed branches");
1734 #endif
1735
1736 if (flag_tree_based_profiling && flag_profile_values)
1737 sorry ("value-based profiling not yet implemented in trees.");
1738
1739 user_label_prefix = USER_LABEL_PREFIX;
1740 if (flag_leading_underscore != -1)
1741 {
1742 /* If the default prefix is more complicated than "" or "_",
1743 issue a warning and ignore this option. */
1744 if (user_label_prefix[0] == 0 ||
1745 (user_label_prefix[0] == '_' && user_label_prefix[1] == 0))
1746 {
1747 user_label_prefix = flag_leading_underscore ? "_" : "";
1748 }
1749 else
1750 warning ("-f%sleading-underscore not supported on this target machine",
1751 flag_leading_underscore ? "" : "no-");
1752 }
1753
1754 /* If we are in verbose mode, write out the version and maybe all the
1755 option flags in use. */
1756 if (version_flag)
1757 {
1758 print_version (stderr, "");
1759 if (! quiet_flag)
1760 print_switch_values (stderr, 0, MAX_LINE, "", " ", "\n");
1761 }
1762
1763 if (flag_syntax_only)
1764 {
1765 write_symbols = NO_DEBUG;
1766 profile_flag = 0;
1767 }
1768
1769 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1770 level is 0. */
1771 if (debug_info_level == DINFO_LEVEL_NONE)
1772 write_symbols = NO_DEBUG;
1773
1774 /* Now we know write_symbols, set up the debug hooks based on it.
1775 By default we do nothing for debug output. */
1776 if (PREFERRED_DEBUGGING_TYPE == NO_DEBUG)
1777 default_debug_hooks = &do_nothing_debug_hooks;
1778 #if defined(DBX_DEBUGGING_INFO)
1779 else if (PREFERRED_DEBUGGING_TYPE == DBX_DEBUG)
1780 default_debug_hooks = &dbx_debug_hooks;
1781 #endif
1782 #if defined(XCOFF_DEBUGGING_INFO)
1783 else if (PREFERRED_DEBUGGING_TYPE == XCOFF_DEBUG)
1784 default_debug_hooks = &xcoff_debug_hooks;
1785 #endif
1786 #ifdef SDB_DEBUGGING_INFO
1787 else if (PREFERRED_DEBUGGING_TYPE == SDB_DEBUG)
1788 default_debug_hooks = &sdb_debug_hooks;
1789 #endif
1790 #ifdef DWARF2_DEBUGGING_INFO
1791 else if (PREFERRED_DEBUGGING_TYPE == DWARF2_DEBUG)
1792 default_debug_hooks = &dwarf2_debug_hooks;
1793 #endif
1794 #ifdef VMS_DEBUGGING_INFO
1795 else if (PREFERRED_DEBUGGING_TYPE == VMS_DEBUG
1796 || PREFERRED_DEBUGGING_TYPE == VMS_AND_DWARF2_DEBUG)
1797 default_debug_hooks = &vmsdbg_debug_hooks;
1798 #endif
1799
1800 debug_hooks = &do_nothing_debug_hooks;
1801 if (write_symbols == NO_DEBUG)
1802 ;
1803 #if defined(DBX_DEBUGGING_INFO)
1804 else if (write_symbols == DBX_DEBUG)
1805 debug_hooks = &dbx_debug_hooks;
1806 #endif
1807 #if defined(XCOFF_DEBUGGING_INFO)
1808 else if (write_symbols == XCOFF_DEBUG)
1809 debug_hooks = &xcoff_debug_hooks;
1810 #endif
1811 #ifdef SDB_DEBUGGING_INFO
1812 else if (write_symbols == SDB_DEBUG)
1813 debug_hooks = &sdb_debug_hooks;
1814 #endif
1815 #ifdef DWARF2_DEBUGGING_INFO
1816 else if (write_symbols == DWARF2_DEBUG)
1817 debug_hooks = &dwarf2_debug_hooks;
1818 #endif
1819 #ifdef VMS_DEBUGGING_INFO
1820 else if (write_symbols == VMS_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
1821 debug_hooks = &vmsdbg_debug_hooks;
1822 #endif
1823 else
1824 error ("target system does not support the \"%s\" debug format",
1825 debug_type_names[write_symbols]);
1826
1827 /* Now we know which debug output will be used so we can set
1828 flag_var_tracking, flag_rename_registers if the user has
1829 not specified them. */
1830 if (debug_info_level < DINFO_LEVEL_NORMAL
1831 || debug_hooks->var_location == do_nothing_debug_hooks.var_location)
1832 {
1833 if (flag_var_tracking == 1)
1834 {
1835 if (debug_info_level < DINFO_LEVEL_NORMAL)
1836 warning ("variable tracking requested, but useless unless "
1837 "producing debug info");
1838 else
1839 warning ("variable tracking requested, but not supported "
1840 "by this debug format");
1841 }
1842 flag_var_tracking = 0;
1843 }
1844
1845 if (flag_rename_registers == AUTODETECT_FLAG_VAR_TRACKING)
1846 flag_rename_registers = default_debug_hooks->var_location
1847 != do_nothing_debug_hooks.var_location;
1848
1849 if (flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING)
1850 flag_var_tracking = optimize >= 1;
1851
1852 /* If auxiliary info generation is desired, open the output file.
1853 This goes in the same directory as the source file--unlike
1854 all the other output files. */
1855 if (flag_gen_aux_info)
1856 {
1857 aux_info_file = fopen (aux_info_file_name, "w");
1858 if (aux_info_file == 0)
1859 fatal_error ("can%'t open %s: %m", aux_info_file_name);
1860 }
1861
1862 if (! targetm.have_named_sections)
1863 {
1864 if (flag_function_sections)
1865 {
1866 warning ("-ffunction-sections not supported for this target");
1867 flag_function_sections = 0;
1868 }
1869 if (flag_data_sections)
1870 {
1871 warning ("-fdata-sections not supported for this target");
1872 flag_data_sections = 0;
1873 }
1874 }
1875
1876 if (flag_function_sections && profile_flag)
1877 {
1878 warning ("-ffunction-sections disabled; it makes profiling impossible");
1879 flag_function_sections = 0;
1880 }
1881
1882 #ifndef HAVE_prefetch
1883 if (flag_prefetch_loop_arrays)
1884 {
1885 warning ("-fprefetch-loop-arrays not supported for this target");
1886 flag_prefetch_loop_arrays = 0;
1887 }
1888 if (flag_speculative_prefetching)
1889 {
1890 if (flag_speculative_prefetching_set)
1891 warning ("-fspeculative-prefetching not supported for this target");
1892 flag_speculative_prefetching = 0;
1893 }
1894 #else
1895 if (flag_prefetch_loop_arrays && !HAVE_prefetch)
1896 {
1897 warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
1898 flag_prefetch_loop_arrays = 0;
1899 }
1900 if (flag_speculative_prefetching && !HAVE_prefetch)
1901 {
1902 if (flag_speculative_prefetching_set)
1903 warning ("-fspeculative-prefetching not supported for this target (try -march switches)");
1904 flag_speculative_prefetching = 0;
1905 }
1906 #endif
1907
1908 /* This combination of options isn't handled for i386 targets and doesn't
1909 make much sense anyway, so don't allow it. */
1910 if (flag_prefetch_loop_arrays && optimize_size)
1911 {
1912 warning ("-fprefetch-loop-arrays is not supported with -Os");
1913 flag_prefetch_loop_arrays = 0;
1914 }
1915
1916 #ifndef OBJECT_FORMAT_ELF
1917 if (flag_function_sections && write_symbols != NO_DEBUG)
1918 warning ("-ffunction-sections may affect debugging on some targets");
1919 #endif
1920
1921 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1922 if (flag_signaling_nans)
1923 flag_trapping_math = 1;
1924 }
1925
1926 /* Initialize the compiler back end. */
1927 static void
1928 backend_init (void)
1929 {
1930 init_adjust_machine_modes ();
1931
1932 init_emit_once (debug_info_level == DINFO_LEVEL_NORMAL
1933 || debug_info_level == DINFO_LEVEL_VERBOSE
1934 #ifdef VMS_DEBUGGING_INFO
1935 /* Enable line number info for traceback. */
1936 || debug_info_level > DINFO_LEVEL_NONE
1937 #endif
1938 || flag_test_coverage);
1939
1940 init_regs ();
1941 init_fake_stack_mems ();
1942 init_alias_once ();
1943 init_loop ();
1944 init_reload ();
1945 init_function_once ();
1946 init_varasm_once ();
1947
1948 /* The following initialization functions need to generate rtl, so
1949 provide a dummy function context for them. */
1950 init_dummy_function_start ();
1951 init_expmed ();
1952 if (flag_caller_saves)
1953 init_caller_save ();
1954 expand_dummy_function_end ();
1955 }
1956
1957 /* Language-dependent initialization. Returns nonzero on success. */
1958 static int
1959 lang_dependent_init (const char *name)
1960 {
1961 location_t save_loc = input_location;
1962 if (dump_base_name == 0)
1963 dump_base_name = name && name[0] ? name : "gccdump";
1964
1965 /* Other front-end initialization. */
1966 #ifdef USE_MAPPED_LOCATION
1967 input_location = BUILTINS_LOCATION;
1968 #else
1969 input_filename = "<built-in>";
1970 input_line = 0;
1971 #endif
1972 if (lang_hooks.init () == 0)
1973 return 0;
1974 input_location = save_loc;
1975
1976 init_asm_output (name);
1977
1978 /* These create various _DECL nodes, so need to be called after the
1979 front end is initialized. */
1980 init_eh ();
1981 init_optabs ();
1982
1983 /* The following initialization functions need to generate rtl, so
1984 provide a dummy function context for them. */
1985 init_dummy_function_start ();
1986 init_expr_once ();
1987 expand_dummy_function_end ();
1988
1989 /* If dbx symbol table desired, initialize writing it and output the
1990 predefined types. */
1991 timevar_push (TV_SYMOUT);
1992
1993 #ifdef DWARF2_UNWIND_INFO
1994 if (dwarf2out_do_frame ())
1995 dwarf2out_frame_init ();
1996 #endif
1997
1998 /* Now we have the correct original filename, we can initialize
1999 debug output. */
2000 (*debug_hooks->init) (name);
2001
2002 timevar_pop (TV_SYMOUT);
2003
2004 return 1;
2005 }
2006
2007 /* Clean up: close opened files, etc. */
2008
2009 static void
2010 finalize (void)
2011 {
2012 /* Close the dump files. */
2013 if (flag_gen_aux_info)
2014 {
2015 fclose (aux_info_file);
2016 if (errorcount)
2017 unlink (aux_info_file_name);
2018 }
2019
2020 /* Close non-debugging input and output files. Take special care to note
2021 whether fclose returns an error, since the pages might still be on the
2022 buffer chain while the file is open. */
2023
2024 if (asm_out_file)
2025 {
2026 if (ferror (asm_out_file) != 0)
2027 fatal_error ("error writing to %s: %m", asm_file_name);
2028 if (fclose (asm_out_file) != 0)
2029 fatal_error ("error closing %s: %m", asm_file_name);
2030 }
2031
2032 finish_optimization_passes ();
2033
2034 if (mem_report)
2035 {
2036 ggc_print_statistics ();
2037 stringpool_statistics ();
2038 dump_tree_statistics ();
2039 dump_rtx_statistics ();
2040 dump_varray_statistics ();
2041 dump_alloc_pool_statistics ();
2042 dump_ggc_loc_statistics ();
2043 }
2044
2045 /* Free up memory for the benefit of leak detectors. */
2046 free_reg_info ();
2047
2048 /* Language-specific end of compilation actions. */
2049 lang_hooks.finish ();
2050 }
2051
2052 /* Initialize the compiler, and compile the input file. */
2053 static void
2054 do_compile (void)
2055 {
2056 /* Initialize timing first. The C front ends read the main file in
2057 the post_options hook, and C++ does file timings. */
2058 if (time_report || !quiet_flag || flag_detailed_statistics)
2059 timevar_init ();
2060 timevar_start (TV_TOTAL);
2061
2062 process_options ();
2063
2064 /* Don't do any more if an error has already occurred. */
2065 if (!errorcount)
2066 {
2067 /* Set up the back-end if requested. */
2068 if (!no_backend)
2069 backend_init ();
2070
2071 /* Language-dependent initialization. Returns true on success. */
2072 if (lang_dependent_init (main_input_filename))
2073 compile_file ();
2074
2075 finalize ();
2076 }
2077
2078 /* Stop timing and print the times. */
2079 timevar_stop (TV_TOTAL);
2080 timevar_print (stderr);
2081 }
2082
2083 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2084 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2085 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2086
2087 It is not safe to call this function more than once. */
2088
2089 int
2090 toplev_main (unsigned int argc, const char **argv)
2091 {
2092 save_argv = argv;
2093
2094 /* Initialization of GCC's environment, and diagnostics. */
2095 general_init (argv[0]);
2096
2097 /* Parse the options and do minimal processing; basically just
2098 enough to default flags appropriately. */
2099 decode_options (argc, argv);
2100
2101 randomize ();
2102
2103 /* Exit early if we can (e.g. -help). */
2104 if (!exit_after_options)
2105 do_compile ();
2106
2107 if (errorcount || sorrycount)
2108 return (FATAL_EXIT_CODE);
2109
2110 return (SUCCESS_EXIT_CODE);
2111 }
This page took 0.12846 seconds and 6 git commands to generate.