Fix bootstrap/PR63632
[official-gcc.git] / gcc / toplev.h
blobb845843307a8cae3866b7fe3bd26401ce4b133c0
1 /* toplev.h - Various declarations for functions found in toplev.c
2 Copyright (C) 1998-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_TOPLEV_H
21 #define GCC_TOPLEV_H
23 /* Decoded options, and number of such options. */
24 extern struct cl_decoded_option *save_decoded_options;
25 extern unsigned int save_decoded_options_count;
27 /* Invoking the compiler. */
28 class toplev
30 public:
31 toplev (bool use_TV_TOTAL);
32 ~toplev ();
34 int main (int argc, char **argv);
36 void finalize ();
38 private:
40 void start_timevars ();
42 bool m_use_TV_TOTAL;
45 extern void rest_of_decl_compilation (tree, int, int);
46 extern void rest_of_type_compilation (tree, int);
47 extern void init_optimization_passes (void);
48 extern bool enable_rtl_dump_file (void);
50 /* In except.c. Initialize exception handling. This is used by the Ada
51 and LTO front ends to initialize EH "on demand". See lto-streamer-in.c
52 and ada/gcc-interface/misc.c. */
53 extern void init_eh (void);
55 extern void announce_function (tree);
57 extern void wrapup_global_declaration_1 (tree);
58 extern bool wrapup_global_declaration_2 (tree);
59 extern bool wrapup_global_declarations (tree *, int);
60 extern void check_global_declaration_1 (tree);
61 extern void check_global_declarations (tree *, int);
62 extern void emit_debug_global_declarations (tree *, int);
63 extern void write_global_declarations (void);
65 extern void dump_memory_report (bool);
66 extern void dump_profile_report (void);
68 extern void target_reinit (void);
70 /* A unique local time stamp, might be zero if none is available. */
71 extern unsigned local_tick;
73 /* True if the user has tagged the function with the 'section'
74 attribute. */
76 extern bool user_defined_section_attribute;
78 /* See toplev.c. */
79 extern int flag_rerun_cse_after_global_opts;
81 extern void print_version (FILE *, const char *);
83 /* The hashtable, so that the C front ends can pass it to cpplib. */
84 extern struct ht *ident_hash;
86 /* Functions used to get and set GCC's notion of in what directory
87 compilation was started. */
89 extern const char *get_src_pwd (void);
90 extern bool set_src_pwd (const char *);
92 /* Functions used to manipulate the random seed. */
94 extern HOST_WIDE_INT get_random_seed (bool);
95 extern const char *set_random_seed (const char *);
97 extern void initialize_rtl (void);
99 #endif /* ! GCC_TOPLEV_H */