aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/opts.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/opts.h')
-rw-r--r--gcc-4.9/gcc/opts.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/opts.h b/gcc-4.9/gcc/opts.h
index f69408234..3f07ec203 100644
--- a/gcc-4.9/gcc/opts.h
+++ b/gcc-4.9/gcc/opts.h
@@ -306,6 +306,15 @@ extern const char **in_fnames;
extern unsigned num_in_fnames;
+/* GCC command-line arguments used during profile-gen, that are saved to the
+ profile data file. During profile-use, these can be compared to make sure
+ only those auxiliary modules are actually imported that use a compatible
+ set of GCC flags as the primary module. */
+extern const char **lipo_cl_args;
+
+/* The size of the above mentioned mentioned array. */
+extern unsigned num_lipo_cl_args;
+
extern char *opts_concat (const char *first, ...);
/* Obstack for option strings. */
@@ -370,6 +379,11 @@ extern void control_warning_option (unsigned int opt_index, int kind,
struct gcc_options *opts_set,
diagnostic_context *dc);
extern void print_ignored_options (void);
+extern void add_input_filename (const char *filename);
+extern void add_module_info (unsigned mod_id, bool is_primary, int index);
+extern void set_lipo_c_parsing_context (struct cpp_reader *parse_in, int i, bool verbose);
+extern void coverage_note_define (const char *cpp_def, bool is_def);
+extern void coverage_note_include (const char *filename);
extern void handle_common_deferred_options (void);
extern bool common_handle_option (struct gcc_options *opts,
struct gcc_options *opts_set,
@@ -401,4 +415,6 @@ extern void set_struct_debug_option (struct gcc_options *opts,
const char *value);
extern bool opt_enum_arg_to_value (size_t opt_index, const char *arg,
int *value, unsigned int lang_mask);
+extern void write_compilation_info_to_asm (void);
+extern void write_compilation_flags_to_asm (void);
#endif