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