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.
5 This file is part of GCC.
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
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
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
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. */
28 #undef FLOAT /* This is for hpux. They should change hpux. */
29 #undef FFS /* Some systems define this in param.h. */
31 #include "coretypes.h"
35 #ifdef HAVE_SYS_RESOURCE_H
36 # include <sys/resource.h>
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
50 #include "insn-attr.h"
51 #include "insn-config.h"
52 #include "insn-flags.h"
53 #include "hard-reg-set.h"
60 #include "basic-block.h"
66 #include "diagnostic.h"
69 #include "dwarf2asm.h"
70 #include "integrate.h"
74 #include "langhooks.h"
75 #include "cfglayout.h"
77 #include "hosthooks.h"
81 #include "value-prof.h"
82 #include "alloc-pool.h"
84 #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO)
85 #include "dwarf2out.h"
88 #if defined(DBX_DEBUGGING_INFO) || defined(XCOFF_DEBUGGING_INFO)
92 #ifdef SDB_DEBUGGING_INFO
96 #ifdef XCOFF_DEBUGGING_INFO
97 #include "xcoffout.h" /* Needed for external data
98 declarations for e.g. AIX 4.x. */
101 static void general_init (const char *);
102 static void do_compile (void);
103 static void process_options (void);
104 static void backend_init (void);
105 static int lang_dependent_init (const char *);
106 static void init_asm_output (const char *);
107 static void finalize (void);
109 static void crash_signal (int) ATTRIBUTE_NORETURN
;
110 static void setup_core_dumping (void);
111 static void compile_file (void);
113 static int print_single_switch (FILE *, int, int, const char *,
114 const char *, const char *,
115 const char *, const char *);
116 static void print_switch_values (FILE *, int, int, const char *,
117 const char *, const char *);
119 /* Nonzero to dump debug info whilst parsing (-dy option). */
120 static int set_yydebug
;
122 /* True if we don't need a backend (e.g. preprocessing only). */
123 static bool no_backend
;
125 /* Length of line when printing switch values. */
128 /* Name of program invoked, sans directories. */
130 const char *progname
;
132 /* Copy of argument vector to toplev_main. */
133 static const char **save_argv
;
135 /* Name of top-level original source file (what was input to cpp).
136 This comes from the #-command at the beginning of the actual input.
137 If there isn't any there, then this is the cc1 input file name. */
139 const char *main_input_filename
;
141 #ifndef USE_MAPPED_LOCATION
142 location_t unknown_location
= { NULL
, 0 };
145 /* Used to enable -fvar-tracking, -fweb and -frename-registers according
146 to optimize and default_debug_hooks in process_options (). */
147 #define AUTODETECT_FLAG_VAR_TRACKING 2
149 /* Current position in real source file. */
151 location_t input_location
;
153 struct line_maps line_table
;
155 /* Nonzero if it is unsafe to create any new pseudo registers. */
158 /* Stack of currently pending input files. */
160 struct file_stack
*input_file_stack
;
162 /* Incremented on each change to input_file_stack. */
163 int input_file_stack_tick
;
165 /* Name to use as base of names for dump output files. */
167 const char *dump_base_name
;
169 /* Name to use as a base for auxiliary output files. */
171 const char *aux_base_name
;
173 /* Bit flags that specify the machine subtype we are compiling for.
174 Bits are tested using macros TARGET_... defined in the tm.h file
175 and set by `-m...' switches. Must be defined in rtlanal.c. */
177 extern int target_flags
;
179 /* A mask of target_flags that includes bit X if X was set or cleared
180 on the command line. */
182 int target_flags_explicit
;
184 /* Debug hooks - dependent upon command line options. */
186 const struct gcc_debug_hooks
*debug_hooks
;
188 /* Debug hooks - target default. */
190 static const struct gcc_debug_hooks
*default_debug_hooks
;
192 /* Other flags saying which kinds of debugging dump have been requested. */
194 int rtl_dump_and_exit
;
195 int flag_print_asm_name
;
196 enum graph_dump_types graph_dump_format
;
198 /* Name for output file of assembly code, specified with -o. */
200 const char *asm_file_name
;
202 /* Nonzero means do optimizations. -O.
203 Particular numeric values stand for particular amounts of optimization;
204 thus, -O2 stores 2 here. However, the optimizations beyond the basic
205 ones are not controlled directly by this variable. Instead, they are
206 controlled by individual `flag_...' variables that are defaulted
207 based on this variable. */
211 /* Nonzero means optimize for size. -Os.
212 The only valid values are zero and nonzero. When optimize_size is
213 nonzero, optimize defaults to 2, but certain individual code
214 bloating optimizations are disabled. */
216 int optimize_size
= 0;
218 /* The FUNCTION_DECL for the function currently being compiled,
219 or 0 if between functions. */
220 tree current_function_decl
;
222 /* Set to the FUNC_BEGIN label of the current function, or NULL
224 const char * current_function_func_begin_label
;
226 /* Temporarily suppress certain warnings.
227 This is set while reading code from a system header file. */
229 int in_system_header
= 0;
231 /* Nonzero means to collect statistics which might be expensive
232 and to print them when we are done. */
233 int flag_detailed_statistics
= 0;
235 /* A random sequence of characters, unless overridden by user. */
236 const char *flag_random_seed
;
238 /* A local time stamp derived from the time of compilation. It will be
239 zero if the system cannot provide a time. It will be -1u, if the
240 user has specified a particular random seed. */
245 /* Nonzero means `char' should be signed. */
247 int flag_signed_char
;
249 /* Nonzero means give an enum type only as many bytes as it needs. A value
250 of 2 means it has not yet been initialized. */
252 int flag_short_enums
;
254 /* Nonzero if structures and unions should be returned in memory.
256 This should only be defined if compatibility with another compiler or
257 with an ABI is needed, because it results in slower code. */
259 #ifndef DEFAULT_PCC_STRUCT_RETURN
260 #define DEFAULT_PCC_STRUCT_RETURN 1
263 /* Nonzero for -fpcc-struct-return: return values the same way PCC does. */
265 int flag_pcc_struct_return
= DEFAULT_PCC_STRUCT_RETURN
;
267 /* 0 means straightforward implementation of complex divide acceptable.
268 1 means wide ranges of inputs must work for complex divide.
269 2 means C99-like requirements for complex divide (not yet implemented). */
271 int flag_complex_divide_method
= 0;
273 /* Nonzero means that we don't want inlining by virtue of -fno-inline,
274 not just because the tree inliner turned us off. */
276 int flag_really_no_inline
= 2;
278 /* Nonzero means we should be saving declaration info into a .X file. */
280 int flag_gen_aux_info
= 0;
282 /* Specified name of aux-info file. */
284 const char *aux_info_file_name
;
286 /* Nonzero if we are compiling code for a shared library, zero for
291 /* Set to the default thread-local storage (tls) model to use. */
293 enum tls_model flag_tls_default
= TLS_MODEL_GLOBAL_DYNAMIC
;
295 /* Nonzero means change certain warnings into errors.
296 Usually these are warnings about failure to conform to some standard. */
298 int flag_pedantic_errors
= 0;
300 /* -dA causes debug commentary information to be produced in
301 the generated assembly code (to make it more readable). This option
302 is generally only of use to those who actually need to read the
303 generated assembly code (perhaps while debugging the compiler itself).
304 Currently, this switch is only used by dwarfout.c; however, it is intended
305 to be a catchall for printing debug information in the assembler file. */
307 int flag_debug_asm
= 0;
309 /* -dP causes the rtl to be emitted as a comment in assembly. */
311 int flag_dump_rtl_in_asm
= 0;
313 /* When non-NULL, indicates that whenever space is allocated on the
314 stack, the resulting stack pointer must not pass this
315 address---that is, for stacks that grow downward, the stack pointer
316 must always be greater than or equal to this address; for stacks
317 that grow upward, the stack pointer must be less than this address.
318 At present, the rtx may be either a REG or a SYMBOL_REF, although
319 the support provided depends on the backend. */
322 /* If one, renumber instruction UIDs to reduce the number of
323 unused UIDs if there are a lot of instructions. If greater than
324 one, unconditionally renumber instruction UIDs. */
325 int flag_renumber_insns
= 1;
327 /* Nonzero if we should track variables. When
328 flag_var_tracking == AUTODETECT_FLAG_VAR_TRACKING it will be set according
329 to optimize, debug_info_level and debug_hooks in process_options (). */
330 int flag_var_tracking
= AUTODETECT_FLAG_VAR_TRACKING
;
332 /* True if the user has tagged the function with the 'section'
335 bool user_defined_section_attribute
= false;
337 /* Values of the -falign-* flags: how much to align labels in code.
338 0 means `use default', 1 means `don't align'.
339 For each variable, there is an _log variant which is the power
340 of two not less than the variable, for .align output. */
343 int align_loops_max_skip
;
345 int align_jumps_max_skip
;
346 int align_labels_log
;
347 int align_labels_max_skip
;
348 int align_functions_log
;
350 /* Like align_functions_log above, but used by front-ends to force the
351 minimum function alignment. Zero means no alignment is forced. */
352 int force_align_functions_log
;
356 const char *const string
;
360 lang_independent_options
;
362 /* Nonzero if subexpressions must be evaluated from left-to-right. */
363 int flag_evaluation_order
= 0;
365 /* The user symbol prefix after having resolved same. */
366 const char *user_label_prefix
;
368 static const param_info lang_independent_params
[] = {
369 #define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \
370 { OPTION, DEFAULT, HELP },
371 #include "params.def"
376 /* Here is a table, controlled by the tm.h file, listing each -m switch
377 and which bits in `target_switches' it should set or clear.
378 If VALUE is positive, it is bits to set.
379 If VALUE is negative, -VALUE is bits to clear.
380 (The sign bit is not used so there is no confusion.) */
384 const char *const name
;
386 const char *const description
;
388 target_switches
[] = TARGET_SWITCHES
;
390 /* This table is similar, but allows the switch to have a value. */
392 #ifdef TARGET_OPTIONS
395 const char *const prefix
;
396 const char **const variable
;
397 const char *const description
;
398 const char *const value
;
400 target_options
[] = TARGET_OPTIONS
;
403 /* Nonzero means warn about function definitions that default the return type
404 or that use a null return and have a return-type other than void. */
406 int warn_return_type
;
408 /* Output files for assembler code (real compiler output)
409 and debugging dumps. */
413 FILE *dump_file
= NULL
;
414 char *dump_file_name
;
416 /* The current working directory of a translation. It's generally the
417 directory from which compilation was initiated, but a preprocessed
418 file may specify the original directory in which it was
421 static const char *src_pwd
;
423 /* Initialize src_pwd with the given string, and return true. If it
424 was already initialized, return false. As a special case, it may
425 be called with a NULL argument to test whether src_pwd has NOT been
429 set_src_pwd (const char *pwd
)
433 if (strcmp (src_pwd
, pwd
) == 0)
439 src_pwd
= xstrdup (pwd
);
443 /* Return the directory from which the translation unit was initiated,
444 in case set_src_pwd() was not called before to assign it a
456 /* Called when the start of a function definition is parsed,
457 this function prints on stderr the name of the function. */
459 announce_function (tree decl
)
463 if (rtl_dump_and_exit
)
464 verbatim ("%s ", IDENTIFIER_POINTER (DECL_NAME (decl
)));
466 verbatim (" %s", lang_hooks
.decl_printable_name (decl
, 2));
468 pp_needs_newline (global_dc
->printer
) = true;
469 diagnostic_set_last_function (global_dc
);
473 /* Set up a default flag_random_seed and local_tick, unless the user
474 already specified one. */
479 if (!flag_random_seed
)
481 unsigned HOST_WIDE_INT value
;
482 static char random_seed
[HOST_BITS_PER_WIDE_INT
/ 4 + 3];
484 /* Get some more or less random data. */
485 #ifdef HAVE_GETTIMEOFDAY
489 gettimeofday (&tv
, NULL
);
490 local_tick
= tv
.tv_sec
* 1000 + tv
.tv_usec
/ 1000;
494 time_t now
= time (NULL
);
496 if (now
!= (time_t)-1)
497 local_tick
= (unsigned) now
;
500 value
= local_tick
^ getpid ();
502 sprintf (random_seed
, HOST_WIDE_INT_PRINT_HEX
, value
);
503 flag_random_seed
= random_seed
;
505 else if (!local_tick
)
510 /* Decode the string P as an integral parameter.
511 If the string is indeed an integer return its numeric value else
512 issue an Invalid Option error for the option PNAME and return DEFVAL.
513 If PNAME is zero just return DEFVAL, do not call error. */
516 read_integral_parameter (const char *p
, const char *pname
, const int defval
)
518 const char *endp
= p
;
531 error ("invalid option argument %qs", pname
);
538 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X.
539 If X is 0, return -1.
541 This should be used via the floor_log2 macro. */
544 floor_log2_wide (unsigned HOST_WIDE_INT x
)
549 if (sizeof (HOST_WIDE_INT
) * 8 > 64)
550 if (x
>= (unsigned HOST_WIDE_INT
) 1 << (t
+ 64))
552 if (sizeof (HOST_WIDE_INT
) * 8 > 32)
553 if (x
>= ((unsigned HOST_WIDE_INT
) 1) << (t
+ 32))
555 if (x
>= ((unsigned HOST_WIDE_INT
) 1) << (t
+ 16))
557 if (x
>= ((unsigned HOST_WIDE_INT
) 1) << (t
+ 8))
559 if (x
>= ((unsigned HOST_WIDE_INT
) 1) << (t
+ 4))
561 if (x
>= ((unsigned HOST_WIDE_INT
) 1) << (t
+ 2))
563 if (x
>= ((unsigned HOST_WIDE_INT
) 1) << (t
+ 1))
568 /* Return the logarithm of X, base 2, considering X unsigned,
569 if X is a power of 2. Otherwise, returns -1.
571 This should be used via the `exact_log2' macro. */
574 exact_log2_wide (unsigned HOST_WIDE_INT x
)
576 /* Test for 0 or a power of 2. */
577 if (x
== 0 || x
!= (x
& -x
))
579 return floor_log2_wide (x
);
582 /* Handler for fatal signals, such as SIGSEGV. These are transformed
583 into ICE messages, which is much more user friendly. In case the
584 error printer crashes, reset the signal to prevent infinite recursion. */
587 crash_signal (int signo
)
589 signal (signo
, SIG_DFL
);
591 /* If we crashed while processing an ASM statement, then be a little more
592 graceful. It's most likely the user's fault. */
593 if (this_is_asm_operands
)
595 output_operand_lossage ("unrecoverable error");
596 exit (FATAL_EXIT_CODE
);
599 internal_error ("%s", strsignal (signo
));
602 /* Arrange to dump core on error. (The regular error message is still
603 printed first, except in the case of abort().) */
606 setup_core_dumping (void)
609 signal (SIGABRT
, SIG_DFL
);
611 #if defined(HAVE_SETRLIMIT)
614 if (getrlimit (RLIMIT_CORE
, &rlim
) != 0)
615 fatal_error ("getting core file size maximum limit: %m");
616 rlim
.rlim_cur
= rlim
.rlim_max
;
617 if (setrlimit (RLIMIT_CORE
, &rlim
) != 0)
618 fatal_error ("setting core file size limit to maximum: %m");
621 diagnostic_abort_on_error (global_dc
);
625 /* Strip off a legitimate source ending from the input string NAME of
626 length LEN. Rather than having to know the names used by all of
627 our front ends, we strip off an ending of a period followed by
628 up to five characters. (Java uses ".class".) */
631 strip_off_ending (char *name
, int len
)
634 for (i
= 2; i
< 6 && len
> i
; i
++)
636 if (name
[len
- i
] == '.')
638 name
[len
- i
] = '\0';
644 /* Output a quoted string. */
647 output_quoted_string (FILE *asm_file
, const char *string
)
649 #ifdef OUTPUT_QUOTED_STRING
650 OUTPUT_QUOTED_STRING (asm_file
, string
);
654 putc ('\"', asm_file
);
655 while ((c
= *string
++) != 0)
659 if (c
== '\"' || c
== '\\')
660 putc ('\\', asm_file
);
664 fprintf (asm_file
, "\\%03o", (unsigned char) c
);
666 putc ('\"', asm_file
);
670 /* Output a file name in the form wanted by System V. */
673 output_file_directive (FILE *asm_file
, const char *input_name
)
678 if (input_name
== NULL
)
679 input_name
= "<stdin>";
681 len
= strlen (input_name
);
682 na
= input_name
+ len
;
684 /* NA gets INPUT_NAME sans directory names. */
685 while (na
> input_name
)
687 if (IS_DIR_SEPARATOR (na
[-1]))
692 #ifdef ASM_OUTPUT_SOURCE_FILENAME
693 ASM_OUTPUT_SOURCE_FILENAME (asm_file
, na
);
695 fprintf (asm_file
, "\t.file\t");
696 output_quoted_string (asm_file
, na
);
697 fputc ('\n', asm_file
);
701 /* Do any final processing required for the declarations in VEC, of
702 which there are LEN. We write out inline functions and variables
703 that have been deferred until this point, but which are required.
704 Returns nonzero if anything was put out. */
707 wrapup_global_declarations (tree
*vec
, int len
)
712 int output_something
= 0;
714 for (i
= 0; i
< len
; i
++)
718 /* We're not deferring this any longer. Assignment is
719 conditional to avoid needlessly dirtying PCH pages. */
720 if (DECL_DEFER_OUTPUT (decl
) != 0)
721 DECL_DEFER_OUTPUT (decl
) = 0;
723 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_SIZE (decl
) == 0)
724 lang_hooks
.finish_incomplete_decl (decl
);
727 /* Now emit any global variables or functions that we have been
728 putting off. We need to loop in case one of the things emitted
729 here references another one which comes earlier in the list. */
733 for (i
= 0; i
< len
; i
++)
737 if (TREE_ASM_WRITTEN (decl
) || DECL_EXTERNAL (decl
))
740 /* Don't write out static consts, unless we still need them.
742 We also keep static consts if not optimizing (for debugging),
743 unless the user specified -fno-keep-static-consts.
744 ??? They might be better written into the debug information.
745 This is possible when using DWARF.
747 A language processor that wants static constants to be always
748 written out (even if it is not used) is responsible for
749 calling rest_of_decl_compilation itself. E.g. the C front-end
750 calls rest_of_decl_compilation from finish_decl.
751 One motivation for this is that is conventional in some
752 environments to write things like:
753 static const char rcsid[] = "... version string ...";
754 intending to force the string to be in the executable.
756 A language processor that would prefer to have unneeded
757 static constants "optimized away" would just defer writing
758 them out until here. E.g. C++ does this, because static
759 constants are often defined in header files.
761 ??? A tempting alternative (for both C and C++) would be
762 to force a constant to be written if and only if it is
763 defined in a main file, as opposed to an include file. */
765 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
))
767 struct cgraph_varpool_node
*node
;
769 node
= cgraph_varpool_node (decl
);
771 if (flag_unit_at_a_time
&& node
->finalized
)
773 else if ((flag_unit_at_a_time
&& !cgraph_global_info_ready
)
775 || TREE_USED (DECL_ASSEMBLER_NAME (decl
))))
777 else if (node
->needed
)
779 else if (DECL_COMDAT (decl
))
781 else if (TREE_READONLY (decl
) && !TREE_PUBLIC (decl
)
782 && (optimize
|| !flag_keep_static_consts
783 || DECL_ARTIFICIAL (decl
)))
789 rest_of_decl_compilation (decl
, 1, 1);
795 output_something
= 1;
799 return output_something
;
802 /* Issue appropriate warnings for the global declarations in VEC (of
803 which there are LEN). Output debugging information for them. */
806 check_global_declarations (tree
*vec
, int len
)
811 for (i
= 0; i
< len
; i
++)
815 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
)
816 && ! TREE_ASM_WRITTEN (decl
))
817 /* Cancel the RTL for this decl so that, if debugging info
818 output for global variables is still to come,
819 this one will be omitted. */
820 SET_DECL_RTL (decl
, NULL_RTX
);
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
))))
836 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
)))
837 pedwarn ("%J%qF used but never defined", decl
, decl
);
839 warning ("%J%qF declared %<static%> but never defined",
841 /* This symbol is effectively an "extern" declaration now. */
842 TREE_PUBLIC (decl
) = 1;
843 assemble_external (decl
);
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
);
867 /* Avoid confusing the debug information machinery when there are
869 if (errorcount
== 0 && sorrycount
== 0)
871 timevar_push (TV_SYMOUT
);
872 (*debug_hooks
->global_decl
) (decl
);
873 timevar_pop (TV_SYMOUT
);
878 /* Warn about a use of an identifier which was marked deprecated. */
880 warn_deprecated_use (tree node
)
882 if (node
== 0 || !warn_deprecated_decl
)
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
);
892 else if (TYPE_P (node
))
894 const char *what
= NULL
;
895 tree decl
= TYPE_STUB_DECL (node
);
897 if (TYPE_NAME (node
))
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
)));
908 expanded_location xloc
909 = expand_location (DECL_SOURCE_LOCATION (decl
));
911 warning ("%qs is deprecated (declared at %s:%d)", what
,
912 xloc
.file
, xloc
.line
);
914 warning ("type is deprecated (declared at %s:%d)",
915 xloc
.file
, xloc
.line
);
920 warning ("%qs is deprecated", what
);
922 warning ("type is deprecated");
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. */
932 #ifdef USE_MAPPED_LOCATION
933 push_srcloc (location_t fline
)
935 push_srcloc (const char *file
, int line
)
938 struct file_stack
*fs
;
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
;
946 input_filename
= file
;
949 input_file_stack
= fs
;
950 input_file_stack_tick
++;
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
960 struct file_stack
*fs
;
962 fs
= input_file_stack
;
963 input_location
= fs
->location
;
964 input_file_stack
= fs
->next
;
966 input_file_stack_tick
++;
969 /* Compile an entire translation unit. Write a file of assembly
970 output and various debugging dumps. */
975 /* Initialize yet another pass. */
978 init_final (main_input_filename
);
979 coverage_init (aux_base_name
);
981 timevar_push (TV_PARSE
);
983 /* Call the parser, which parses the entire file (calling
984 rest_of_compilation for each function). */
985 lang_hooks
.parse_file (set_yydebug
);
987 /* In case there were missing block closers,
988 get us back to the global binding level. */
989 lang_hooks
.clear_binding_stack ();
991 /* Compilation is now finished except for writing
992 what's left of the symbol table output. */
993 timevar_pop (TV_PARSE
);
995 if (flag_syntax_only
)
998 lang_hooks
.decls
.final_write_globals ();
1000 cgraph_varpool_assemble_pending_decls ();
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. */
1007 /* Write out any pending weak symbol declarations. */
1011 /* Do dbx symbols. */
1012 timevar_push (TV_SYMOUT
);
1014 #ifdef DWARF2_UNWIND_INFO
1015 if (dwarf2out_do_frame ())
1016 dwarf2out_frame_finish ();
1019 (*debug_hooks
->finish
) (main_input_filename
);
1020 timevar_pop (TV_SYMOUT
);
1022 /* Output some stuff at end of file if nec. */
1024 dw2_output_indirect_constants ();
1026 /* Attach a special .ident directive to the end of the file to identify
1027 the version of GCC which compiled this code. The format of the .ident
1028 string is patterned after the ones produced by native SVR4 compilers. */
1031 fprintf (asm_out_file
, "%s\"GCC: (GNU) %s\"\n",
1032 IDENT_ASM_OP
, version_string
);
1035 /* This must be at the end. Some target ports emit end of file directives
1036 into the assembly file here, and hence we can not output anything to the
1037 assembly file after this point. */
1038 targetm
.asm_out
.file_end ();
1041 /* Display help for target options. */
1043 display_target_options (void)
1046 static bool displayed
= false;
1048 /* Avoid double printing for --help --target-help. */
1054 if (ARRAY_SIZE (target_switches
) > 1
1055 #ifdef TARGET_OPTIONS
1056 || ARRAY_SIZE (target_options
) > 1
1064 printf (_("\nTarget specific options:\n"));
1066 for (i
= ARRAY_SIZE (target_switches
); i
--;)
1068 const char *option
= target_switches
[i
].name
;
1069 const char *description
= target_switches
[i
].description
;
1071 if (option
== NULL
|| *option
== 0)
1073 else if (description
== NULL
)
1078 printf (_(" -m%-23s [undocumented]\n"), option
);
1080 else if (*description
!= 0)
1081 doc
+= printf (" -m%-23s %s\n", option
, _(description
));
1084 #ifdef TARGET_OPTIONS
1085 for (i
= ARRAY_SIZE (target_options
); i
--;)
1087 const char *option
= target_options
[i
].prefix
;
1088 const char *description
= target_options
[i
].description
;
1090 if (option
== NULL
|| *option
== 0)
1092 else if (description
== NULL
)
1097 printf (_(" -m%-23s [undocumented]\n"), option
);
1099 else if (*description
!= 0)
1100 doc
+= printf (" -m%-23s %s\n", option
, _(description
));
1106 printf (_("\nThere are undocumented target specific options as well.\n"));
1108 printf (_(" They exist, but they are not documented.\n"));
1113 /* Parse a -d... command line switch. */
1116 decode_d_option (const char *arg
)
1127 flag_print_asm_name
= 1;
1130 flag_dump_rtl_in_asm
= 1;
1131 flag_print_asm_name
= 1;
1134 graph_dump_format
= vcg
;
1137 rtl_dump_and_exit
= 1;
1142 case 'D': /* These are handled by the preprocessor. */
1146 setup_core_dumping();
1151 if (!enable_rtl_dump_file (c
))
1152 warning ("unrecognized gcc debugging option: %c", c
);
1157 /* Indexed by enum debug_info_type. */
1158 const char *const debug_type_names
[] =
1160 "none", "stabs", "coff", "dwarf-1", "dwarf-2", "xcoff", "vms"
1163 /* Decode -m switches. */
1164 /* Decode the switch -mNAME. */
1167 set_target_switch (const char *name
)
1170 int valid_target_option
= 0;
1172 for (j
= 0; j
< ARRAY_SIZE (target_switches
); j
++)
1173 if (!strcmp (target_switches
[j
].name
, name
))
1175 if (target_switches
[j
].value
< 0)
1176 target_flags
&= ~-target_switches
[j
].value
;
1178 target_flags
|= target_switches
[j
].value
;
1181 if (target_switches
[j
].value
< 0)
1182 target_flags_explicit
|= -target_switches
[j
].value
;
1184 target_flags_explicit
|= target_switches
[j
].value
;
1186 valid_target_option
= 1;
1189 #ifdef TARGET_OPTIONS
1190 if (!valid_target_option
)
1191 for (j
= 0; j
< ARRAY_SIZE (target_options
); j
++)
1193 int len
= strlen (target_options
[j
].prefix
);
1194 if (target_options
[j
].value
)
1196 if (!strcmp (target_options
[j
].prefix
, name
))
1198 *target_options
[j
].variable
= target_options
[j
].value
;
1199 valid_target_option
= 1;
1204 if (!strncmp (target_options
[j
].prefix
, name
, len
))
1206 *target_options
[j
].variable
= name
+ len
;
1207 valid_target_option
= 1;
1213 if (!valid_target_option
)
1214 error ("invalid option %qs", name
);
1217 /* Print version information to FILE.
1218 Each line begins with INDENT (for the case where FILE is the
1219 assembler output file). */
1222 print_version (FILE *file
, const char *indent
)
1225 #define __VERSION__ "[?]"
1229 "%s%s%s version %s (%s)\n%s\tcompiled by GNU C version %s.\n"
1231 "%s%s%s version %s (%s) compiled by CC.\n"
1233 , indent
, *indent
!= 0 ? " " : "",
1234 lang_hooks
.name
, version_string
, TARGET_NAME
,
1235 indent
, __VERSION__
);
1236 fnotice (file
, "%s%sGGC heuristics: --param ggc-min-expand=%d --param ggc-min-heapsize=%d\n",
1237 indent
, *indent
!= 0 ? " " : "",
1238 PARAM_VALUE (GGC_MIN_EXPAND
), PARAM_VALUE (GGC_MIN_HEAPSIZE
));
1241 /* Print an option value and return the adjusted position in the line.
1242 ??? We don't handle error returns from fprintf (disk full); presumably
1243 other code will catch a disk full though. */
1246 print_single_switch (FILE *file
, int pos
, int max
,
1247 const char *indent
, const char *sep
, const char *term
,
1248 const char *type
, const char *name
)
1250 /* The ultrix fprintf returns 0 on success, so compute the result we want
1251 here since we need it for the following test. */
1252 int len
= strlen (sep
) + strlen (type
) + strlen (name
);
1257 fprintf (file
, "%s", term
);
1262 fprintf (file
, "%s", indent
);
1263 pos
= strlen (indent
);
1265 fprintf (file
, "%s%s%s", sep
, type
, name
);
1270 /* Print active target switches to FILE.
1271 POS is the current cursor position and MAX is the size of a "line".
1272 Each line begins with INDENT and ends with TERM.
1273 Each switch is separated from the next by SEP. */
1276 print_switch_values (FILE *file
, int pos
, int max
,
1277 const char *indent
, const char *sep
, const char *term
)
1282 /* Fill in the -frandom-seed option, if the user didn't pass it, so
1283 that it can be printed below. This helps reproducibility. */
1286 /* Print the options as passed. */
1287 pos
= print_single_switch (file
, pos
, max
, indent
, *indent
? " " : "", term
,
1288 _("options passed: "), "");
1290 for (p
= &save_argv
[1]; *p
!= NULL
; p
++)
1294 if (strcmp (*p
, "-o") == 0)
1300 if (strcmp (*p
, "-quiet") == 0)
1302 if (strcmp (*p
, "-version") == 0)
1307 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
, *p
, "");
1310 fprintf (file
, "%s", term
);
1312 /* Print the -f and -m options that have been enabled.
1313 We don't handle language specific options but printing argv
1316 pos
= print_single_switch (file
, 0, max
, indent
, *indent
? " " : "", term
,
1317 _("options enabled: "), "");
1319 for (j
= 0; j
< cl_options_count
; j
++)
1321 if (!cl_options
[j
].flag_var
1322 || !(cl_options
[j
].flags
& CL_REPORT
))
1325 if (cl_options
[j
].has_set_value
)
1327 if (*cl_options
[j
].flag_var
!= cl_options
[j
].set_value
)
1332 if (!*cl_options
[j
].flag_var
)
1336 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
,
1337 "", cl_options
[j
].opt_text
);
1340 /* Print target specific options. */
1342 for (j
= 0; j
< ARRAY_SIZE (target_switches
); j
++)
1343 if (target_switches
[j
].name
[0] != '\0'
1344 && target_switches
[j
].value
> 0
1345 && ((target_switches
[j
].value
& target_flags
)
1346 == target_switches
[j
].value
))
1348 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
,
1349 "-m", target_switches
[j
].name
);
1352 #ifdef TARGET_OPTIONS
1353 for (j
= 0; j
< ARRAY_SIZE (target_options
); j
++)
1354 if (*target_options
[j
].variable
!= NULL
)
1357 sprintf (prefix
, "-m%s", target_options
[j
].prefix
);
1358 pos
= print_single_switch (file
, pos
, max
, indent
, sep
, term
,
1359 prefix
, *target_options
[j
].variable
);
1363 fprintf (file
, "%s", term
);
1366 /* Open assembly code output file. Do this even if -fsyntax-only is
1367 on, because then the driver will have provided the name of a
1368 temporary file or bit bucket for us. NAME is the file specified on
1369 the command line, possibly NULL. */
1371 init_asm_output (const char *name
)
1373 if (name
== NULL
&& asm_file_name
== 0)
1374 asm_out_file
= stdout
;
1377 if (asm_file_name
== 0)
1379 int len
= strlen (dump_base_name
);
1380 char *dumpname
= xmalloc (len
+ 6);
1381 memcpy (dumpname
, dump_base_name
, len
+ 1);
1382 strip_off_ending (dumpname
, len
);
1383 strcat (dumpname
, ".s");
1384 asm_file_name
= dumpname
;
1386 if (!strcmp (asm_file_name
, "-"))
1387 asm_out_file
= stdout
;
1389 asm_out_file
= fopen (asm_file_name
, "w+b");
1390 if (asm_out_file
== 0)
1391 fatal_error ("can%'t open %s for writing: %m", asm_file_name
);
1394 #ifdef IO_BUFFER_SIZE
1395 setvbuf (asm_out_file
, xmalloc (IO_BUFFER_SIZE
),
1396 _IOFBF
, IO_BUFFER_SIZE
);
1399 if (!flag_syntax_only
)
1401 targetm
.asm_out
.file_start ();
1403 #ifdef ASM_COMMENT_START
1404 if (flag_verbose_asm
)
1406 /* Print the list of options in effect. */
1407 print_version (asm_out_file
, ASM_COMMENT_START
);
1408 print_switch_values (asm_out_file
, 0, MAX_LINE
,
1409 ASM_COMMENT_START
, " ", "\n");
1410 /* Add a blank line here so it appears in assembler output but not
1412 fprintf (asm_out_file
, "\n");
1418 /* Default version of get_pch_validity.
1419 By default, every flag difference is fatal; that will be mostly right for
1420 most targets, but completely right for very few. */
1423 default_get_pch_validity (size_t *len
)
1425 #ifdef TARGET_OPTIONS
1430 *len
= sizeof (target_flags
) + 2;
1431 #ifdef TARGET_OPTIONS
1432 for (i
= 0; i
< ARRAY_SIZE (target_options
); i
++)
1435 if (*target_options
[i
].variable
)
1436 *len
+= strlen (*target_options
[i
].variable
);
1440 result
= r
= xmalloc (*len
);
1444 memcpy (r
, &target_flags
, sizeof (target_flags
));
1445 r
+= sizeof (target_flags
);
1447 #ifdef TARGET_OPTIONS
1448 for (i
= 0; i
< ARRAY_SIZE (target_options
); i
++)
1450 const char *str
= *target_options
[i
].variable
;
1454 l
= strlen (str
) + 1;
1463 /* Default version of pch_valid_p. */
1466 default_pch_valid_p (const void *data_p
, size_t len
)
1468 const char *data
= (const char *)data_p
;
1469 const char *flag_that_differs
= NULL
;
1472 /* -fpic and -fpie also usually make a PCH invalid. */
1473 if (data
[0] != flag_pic
)
1474 return _("created and used with different settings of -fpic");
1475 if (data
[1] != flag_pie
)
1476 return _("created and used with different settings of -fpie");
1479 /* Check target_flags. */
1480 if (memcmp (data
, &target_flags
, sizeof (target_flags
)) != 0)
1482 for (i
= 0; i
< ARRAY_SIZE (target_switches
); i
++)
1487 memcpy (&tf
, data
, sizeof (target_flags
));
1489 bits
= target_switches
[i
].value
;
1492 if ((target_flags
& bits
) != (tf
& bits
))
1494 flag_that_differs
= target_switches
[i
].name
;
1500 data
+= sizeof (target_flags
);
1501 len
-= sizeof (target_flags
);
1503 /* Check string options. */
1504 #ifdef TARGET_OPTIONS
1505 for (i
= 0; i
< ARRAY_SIZE (target_options
); i
++)
1507 const char *str
= *target_options
[i
].variable
;
1511 l
= strlen (str
) + 1;
1512 if (len
< l
|| memcmp (data
, str
, l
) != 0)
1514 flag_that_differs
= target_options
[i
].prefix
;
1527 asprintf (&r
, _("created and used with differing settings of '-m%s'"),
1530 return _("out of memory");
1535 /* Default tree printer. Handles declarations only. */
1537 default_tree_printer (pretty_printer
* pp
, text_info
*text
)
1539 switch (*text
->format_spec
)
1545 tree t
= va_arg (*text
->args_ptr
, tree
);
1546 const char *n
= DECL_NAME (t
)
1547 ? lang_hooks
.decl_printable_name (t
, 2)
1558 /* Initialization of the front end environment, before command line
1559 options are parsed. Signal handlers, internationalization etc.
1560 ARGV0 is main's argv[0]. */
1562 general_init (const char *argv0
)
1566 p
= argv0
+ strlen (argv0
);
1567 while (p
!= argv0
&& !IS_DIR_SEPARATOR (p
[-1]))
1571 xmalloc_set_program_name (progname
);
1575 gcc_init_libintl ();
1577 /* Initialize the diagnostics reporting machinery, so option parsing
1578 can give warnings and errors. */
1579 diagnostic_initialize (global_dc
);
1580 /* Set a default printer. Language specific initializations will
1581 override it later. */
1582 pp_format_decoder (global_dc
->printer
) = &default_tree_printer
;
1584 /* Trap fatal signals, e.g. SIGSEGV, and convert them to ICE messages. */
1586 signal (SIGSEGV
, crash_signal
);
1589 signal (SIGILL
, crash_signal
);
1592 signal (SIGBUS
, crash_signal
);
1595 signal (SIGABRT
, crash_signal
);
1597 #if defined SIGIOT && (!defined SIGABRT || SIGABRT != SIGIOT)
1598 signal (SIGIOT
, crash_signal
);
1601 signal (SIGFPE
, crash_signal
);
1604 /* Other host-specific signal setup. */
1605 (*host_hooks
.extra_signals
)();
1607 /* Initialize the garbage-collector, string pools and tree type hash
1611 linemap_init (&line_table
);
1614 /* Initialize register usage now so switches may override. */
1617 /* Register the language-independent parameters. */
1618 add_params (lang_independent_params
, LAST_PARAM
);
1620 /* This must be done after add_params but before argument processing. */
1621 init_ggc_heuristics();
1622 init_tree_optimization_passes ();
1625 /* Process the options that have been parsed. */
1627 process_options (void)
1629 /* Allow the front end to perform consistency checks and do further
1630 initialization based on the command line options. This hook also
1631 sets the original filename if appropriate (e.g. foo.i -> foo.c)
1632 so we can correctly initialize debug output. */
1633 no_backend
= lang_hooks
.post_options (&main_input_filename
);
1634 #ifndef USE_MAPPED_LOCATION
1635 input_filename
= main_input_filename
;
1638 #ifdef OVERRIDE_OPTIONS
1639 /* Some machines may reject certain combinations of options. */
1643 if (flag_short_enums
== 2)
1644 flag_short_enums
= targetm
.default_short_enums ();
1646 /* Set aux_base_name if not already set. */
1649 else if (main_input_filename
)
1651 char *name
= xstrdup (lbasename (main_input_filename
));
1653 strip_off_ending (name
, strlen (name
));
1654 aux_base_name
= name
;
1657 aux_base_name
= "gccaux";
1659 /* Set up the align_*_log variables, defaulting them to 1 if they
1660 were still unset. */
1661 if (align_loops
<= 0) align_loops
= 1;
1662 if (align_loops_max_skip
> align_loops
|| !align_loops
)
1663 align_loops_max_skip
= align_loops
- 1;
1664 align_loops_log
= floor_log2 (align_loops
* 2 - 1);
1665 if (align_jumps
<= 0) align_jumps
= 1;
1666 if (align_jumps_max_skip
> align_jumps
|| !align_jumps
)
1667 align_jumps_max_skip
= align_jumps
- 1;
1668 align_jumps_log
= floor_log2 (align_jumps
* 2 - 1);
1669 if (align_labels
<= 0) align_labels
= 1;
1670 align_labels_log
= floor_log2 (align_labels
* 2 - 1);
1671 if (align_labels_max_skip
> align_labels
|| !align_labels
)
1672 align_labels_max_skip
= align_labels
- 1;
1673 if (align_functions
<= 0) align_functions
= 1;
1674 align_functions_log
= floor_log2 (align_functions
* 2 - 1);
1676 /* Unrolling all loops implies that standard loop unrolling must also
1678 if (flag_unroll_all_loops
)
1679 flag_unroll_loops
= 1;
1681 /* The loop unrolling code assumes that cse will be run after loop. */
1682 if (flag_unroll_loops
|| flag_peel_loops
)
1683 flag_rerun_cse_after_loop
= 1;
1685 /* If explicitly asked to run new loop optimizer, switch off the old
1687 if (flag_loop_optimize2
)
1688 flag_loop_optimize
= 0;
1690 /* Enable new loop optimizer pass if any of its optimizations is called. */
1691 if (flag_move_loop_invariants
1692 || flag_unswitch_loops
1694 || flag_unroll_loops
1695 || flag_branch_on_count_reg
)
1696 flag_loop_optimize2
= 1;
1698 if (flag_non_call_exceptions
)
1699 flag_asynchronous_unwind_tables
= 1;
1700 if (flag_asynchronous_unwind_tables
)
1701 flag_unwind_tables
= 1;
1703 /* Disable unit-at-a-time mode for frontends not supporting callgraph
1705 if (flag_unit_at_a_time
&& ! lang_hooks
.callgraph
.expand_function
)
1706 flag_unit_at_a_time
= 0;
1708 if (flag_value_profile_transformations
)
1709 flag_profile_values
= 1;
1711 /* Speculative prefetching implies the value profiling. We also switch off
1712 the prefetching in the loop optimizer, so that we do not emit double
1713 prefetches. TODO -- we should teach these two to cooperate; the loop
1714 based prefetching may sometimes do a better job, especially in connection
1715 with reuse analysis. */
1716 if (flag_speculative_prefetching
)
1718 flag_profile_values
= 1;
1719 flag_prefetch_loop_arrays
= 0;
1722 /* Warn about options that are not supported on this machine. */
1723 #ifndef INSN_SCHEDULING
1724 if (flag_schedule_insns
|| flag_schedule_insns_after_reload
)
1725 warning ("instruction scheduling not supported on this target machine");
1728 if (flag_delayed_branch
)
1729 warning ("this target machine does not have delayed branches");
1732 if (flag_tree_based_profiling
&& flag_profile_values
)
1733 sorry ("value-based profiling not yet implemented in trees.");
1735 user_label_prefix
= USER_LABEL_PREFIX
;
1736 if (flag_leading_underscore
!= -1)
1738 /* If the default prefix is more complicated than "" or "_",
1739 issue a warning and ignore this option. */
1740 if (user_label_prefix
[0] == 0 ||
1741 (user_label_prefix
[0] == '_' && user_label_prefix
[1] == 0))
1743 user_label_prefix
= flag_leading_underscore
? "_" : "";
1746 warning ("-f%sleading-underscore not supported on this target machine",
1747 flag_leading_underscore
? "" : "no-");
1750 /* If we are in verbose mode, write out the version and maybe all the
1751 option flags in use. */
1754 print_version (stderr
, "");
1756 print_switch_values (stderr
, 0, MAX_LINE
, "", " ", "\n");
1759 if (flag_syntax_only
)
1761 write_symbols
= NO_DEBUG
;
1765 /* A lot of code assumes write_symbols == NO_DEBUG if the debugging
1767 if (debug_info_level
== DINFO_LEVEL_NONE
)
1768 write_symbols
= NO_DEBUG
;
1770 /* Now we know write_symbols, set up the debug hooks based on it.
1771 By default we do nothing for debug output. */
1772 if (PREFERRED_DEBUGGING_TYPE
== NO_DEBUG
)
1773 default_debug_hooks
= &do_nothing_debug_hooks
;
1774 #if defined(DBX_DEBUGGING_INFO)
1775 else if (PREFERRED_DEBUGGING_TYPE
== DBX_DEBUG
)
1776 default_debug_hooks
= &dbx_debug_hooks
;
1778 #if defined(XCOFF_DEBUGGING_INFO)
1779 else if (PREFERRED_DEBUGGING_TYPE
== XCOFF_DEBUG
)
1780 default_debug_hooks
= &xcoff_debug_hooks
;
1782 #ifdef SDB_DEBUGGING_INFO
1783 else if (PREFERRED_DEBUGGING_TYPE
== SDB_DEBUG
)
1784 default_debug_hooks
= &sdb_debug_hooks
;
1786 #ifdef DWARF2_DEBUGGING_INFO
1787 else if (PREFERRED_DEBUGGING_TYPE
== DWARF2_DEBUG
)
1788 default_debug_hooks
= &dwarf2_debug_hooks
;
1790 #ifdef VMS_DEBUGGING_INFO
1791 else if (PREFERRED_DEBUGGING_TYPE
== VMS_DEBUG
1792 || PREFERRED_DEBUGGING_TYPE
== VMS_AND_DWARF2_DEBUG
)
1793 default_debug_hooks
= &vmsdbg_debug_hooks
;
1796 debug_hooks
= &do_nothing_debug_hooks
;
1797 if (write_symbols
== NO_DEBUG
)
1799 #if defined(DBX_DEBUGGING_INFO)
1800 else if (write_symbols
== DBX_DEBUG
)
1801 debug_hooks
= &dbx_debug_hooks
;
1803 #if defined(XCOFF_DEBUGGING_INFO)
1804 else if (write_symbols
== XCOFF_DEBUG
)
1805 debug_hooks
= &xcoff_debug_hooks
;
1807 #ifdef SDB_DEBUGGING_INFO
1808 else if (write_symbols
== SDB_DEBUG
)
1809 debug_hooks
= &sdb_debug_hooks
;
1811 #ifdef DWARF2_DEBUGGING_INFO
1812 else if (write_symbols
== DWARF2_DEBUG
)
1813 debug_hooks
= &dwarf2_debug_hooks
;
1815 #ifdef VMS_DEBUGGING_INFO
1816 else if (write_symbols
== VMS_DEBUG
|| write_symbols
== VMS_AND_DWARF2_DEBUG
)
1817 debug_hooks
= &vmsdbg_debug_hooks
;
1820 error ("target system does not support the \"%s\" debug format",
1821 debug_type_names
[write_symbols
]);
1823 /* Now we know which debug output will be used so we can set
1824 flag_var_tracking, flag_rename_registers if the user has
1825 not specified them. */
1826 if (debug_info_level
< DINFO_LEVEL_NORMAL
1827 || debug_hooks
->var_location
== do_nothing_debug_hooks
.var_location
)
1829 if (flag_var_tracking
== 1)
1831 if (debug_info_level
< DINFO_LEVEL_NORMAL
)
1832 warning ("variable tracking requested, but useless unless "
1833 "producing debug info");
1835 warning ("variable tracking requested, but not supported "
1836 "by this debug format");
1838 flag_var_tracking
= 0;
1841 if (flag_rename_registers
== AUTODETECT_FLAG_VAR_TRACKING
)
1842 flag_rename_registers
= default_debug_hooks
->var_location
1843 != do_nothing_debug_hooks
.var_location
;
1845 if (flag_var_tracking
== AUTODETECT_FLAG_VAR_TRACKING
)
1846 flag_var_tracking
= optimize
>= 1;
1848 /* If auxiliary info generation is desired, open the output file.
1849 This goes in the same directory as the source file--unlike
1850 all the other output files. */
1851 if (flag_gen_aux_info
)
1853 aux_info_file
= fopen (aux_info_file_name
, "w");
1854 if (aux_info_file
== 0)
1855 fatal_error ("can%'t open %s: %m", aux_info_file_name
);
1858 if (! targetm
.have_named_sections
)
1860 if (flag_function_sections
)
1862 warning ("-ffunction-sections not supported for this target");
1863 flag_function_sections
= 0;
1865 if (flag_data_sections
)
1867 warning ("-fdata-sections not supported for this target");
1868 flag_data_sections
= 0;
1872 if (flag_function_sections
&& profile_flag
)
1874 warning ("-ffunction-sections disabled; it makes profiling impossible");
1875 flag_function_sections
= 0;
1878 #ifndef HAVE_prefetch
1879 if (flag_prefetch_loop_arrays
)
1881 warning ("-fprefetch-loop-arrays not supported for this target");
1882 flag_prefetch_loop_arrays
= 0;
1884 if (flag_speculative_prefetching
)
1886 if (flag_speculative_prefetching_set
)
1887 warning ("-fspeculative-prefetching not supported for this target");
1888 flag_speculative_prefetching
= 0;
1891 if (flag_prefetch_loop_arrays
&& !HAVE_prefetch
)
1893 warning ("-fprefetch-loop-arrays not supported for this target (try -march switches)");
1894 flag_prefetch_loop_arrays
= 0;
1896 if (flag_speculative_prefetching
&& !HAVE_prefetch
)
1898 if (flag_speculative_prefetching_set
)
1899 warning ("-fspeculative-prefetching not supported for this target (try -march switches)");
1900 flag_speculative_prefetching
= 0;
1904 /* This combination of options isn't handled for i386 targets and doesn't
1905 make much sense anyway, so don't allow it. */
1906 if (flag_prefetch_loop_arrays
&& optimize_size
)
1908 warning ("-fprefetch-loop-arrays is not supported with -Os");
1909 flag_prefetch_loop_arrays
= 0;
1912 #ifndef OBJECT_FORMAT_ELF
1913 if (flag_function_sections
&& write_symbols
!= NO_DEBUG
)
1914 warning ("-ffunction-sections may affect debugging on some targets");
1917 /* The presence of IEEE signaling NaNs, implies all math can trap. */
1918 if (flag_signaling_nans
)
1919 flag_trapping_math
= 1;
1922 /* Initialize the compiler back end. */
1926 init_adjust_machine_modes ();
1928 init_emit_once (debug_info_level
== DINFO_LEVEL_NORMAL
1929 || debug_info_level
== DINFO_LEVEL_VERBOSE
1930 #ifdef VMS_DEBUGGING_INFO
1931 /* Enable line number info for traceback. */
1932 || debug_info_level
> DINFO_LEVEL_NONE
1934 || flag_test_coverage
);
1937 init_fake_stack_mems ();
1941 init_function_once ();
1942 init_varasm_once ();
1944 /* The following initialization functions need to generate rtl, so
1945 provide a dummy function context for them. */
1946 init_dummy_function_start ();
1948 if (flag_caller_saves
)
1949 init_caller_save ();
1950 expand_dummy_function_end ();
1953 /* Language-dependent initialization. Returns nonzero on success. */
1955 lang_dependent_init (const char *name
)
1957 location_t save_loc
= input_location
;
1958 if (dump_base_name
== 0)
1959 dump_base_name
= name
&& name
[0] ? name
: "gccdump";
1961 /* Other front-end initialization. */
1962 #ifdef USE_MAPPED_LOCATION
1963 input_location
= BUILTINS_LOCATION
;
1965 input_filename
= "<built-in>";
1968 if (lang_hooks
.init () == 0)
1970 input_location
= save_loc
;
1972 init_asm_output (name
);
1974 /* These create various _DECL nodes, so need to be called after the
1975 front end is initialized. */
1979 /* The following initialization functions need to generate rtl, so
1980 provide a dummy function context for them. */
1981 init_dummy_function_start ();
1983 expand_dummy_function_end ();
1985 /* If dbx symbol table desired, initialize writing it and output the
1986 predefined types. */
1987 timevar_push (TV_SYMOUT
);
1989 #ifdef DWARF2_UNWIND_INFO
1990 if (dwarf2out_do_frame ())
1991 dwarf2out_frame_init ();
1994 /* Now we have the correct original filename, we can initialize
1996 (*debug_hooks
->init
) (name
);
1998 timevar_pop (TV_SYMOUT
);
2003 /* Clean up: close opened files, etc. */
2008 /* Close the dump files. */
2009 if (flag_gen_aux_info
)
2011 fclose (aux_info_file
);
2013 unlink (aux_info_file_name
);
2016 /* Close non-debugging input and output files. Take special care to note
2017 whether fclose returns an error, since the pages might still be on the
2018 buffer chain while the file is open. */
2022 if (ferror (asm_out_file
) != 0)
2023 fatal_error ("error writing to %s: %m", asm_file_name
);
2024 if (fclose (asm_out_file
) != 0)
2025 fatal_error ("error closing %s: %m", asm_file_name
);
2028 finish_optimization_passes ();
2032 ggc_print_statistics ();
2033 stringpool_statistics ();
2034 dump_tree_statistics ();
2035 dump_rtx_statistics ();
2036 dump_varray_statistics ();
2037 dump_alloc_pool_statistics ();
2038 dump_ggc_loc_statistics ();
2041 /* Free up memory for the benefit of leak detectors. */
2044 /* Language-specific end of compilation actions. */
2045 lang_hooks
.finish ();
2048 /* Initialize the compiler, and compile the input file. */
2052 /* Initialize timing first. The C front ends read the main file in
2053 the post_options hook, and C++ does file timings. */
2054 if (time_report
|| !quiet_flag
|| flag_detailed_statistics
)
2056 timevar_start (TV_TOTAL
);
2060 /* Don't do any more if an error has already occurred. */
2063 /* Set up the back-end if requested. */
2067 /* Language-dependent initialization. Returns true on success. */
2068 if (lang_dependent_init (main_input_filename
))
2074 /* Stop timing and print the times. */
2075 timevar_stop (TV_TOTAL
);
2076 timevar_print (stderr
);
2079 /* Entry point of cc1, cc1plus, jc1, f771, etc.
2080 Exit code is FATAL_EXIT_CODE if can't open files or if there were
2081 any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
2083 It is not safe to call this function more than once. */
2086 toplev_main (unsigned int argc
, const char **argv
)
2090 /* Initialization of GCC's environment, and diagnostics. */
2091 general_init (argv
[0]);
2093 /* Parse the options and do minimal processing; basically just
2094 enough to default flags appropriately. */
2095 decode_options (argc
, argv
);
2099 /* Exit early if we can (e.g. -help). */
2100 if (!exit_after_options
)
2103 if (errorcount
|| sorrycount
)
2104 return (FATAL_EXIT_CODE
);
2106 return (SUCCESS_EXIT_CODE
);