gcc-defs.exp (dg-additional-files-options): Extend regsub for dg-additional-files...
[official-gcc.git] / gcc / lto-opts.c
blobc9d4e03d00c787b004274a378e61a5bd84724001
1 /* LTO IL options.
3 Copyright (C) 2009-2013 Free Software Foundation, Inc.
4 Contributed by Simon Baldwin <simonb@google.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "tree.h"
26 #include "gimple.h"
27 #include "hashtab.h"
28 #include "ggc.h"
29 #include "vec.h"
30 #include "bitmap.h"
31 #include "flags.h"
32 #include "opts.h"
33 #include "options.h"
34 #include "common/common-target.h"
35 #include "diagnostic.h"
36 #include "lto-streamer.h"
37 #include "toplev.h"
39 /* Append the option piece OPT to the COLLECT_GCC_OPTIONS string
40 set up by OB, appropriately quoted and separated by spaces
41 (if !*FIRST_P). */
43 static void
44 append_to_collect_gcc_options (struct obstack *ob,
45 bool *first_p, const char *opt)
47 const char *p, *q = opt;
48 if (!*first_p)
49 obstack_grow (ob, " ", 1);
50 obstack_grow (ob, "'", 1);
51 while ((p = strchr (q, '\'')))
53 obstack_grow (ob, q, p - q);
54 obstack_grow (ob, "'\\''", 4);
55 q = ++p;
57 obstack_grow (ob, q, strlen (q));
58 obstack_grow (ob, "'", 1);
59 *first_p = false;
62 /* Write currently held options to an LTO IL section. */
64 void
65 lto_write_options (void)
67 struct lto_output_stream stream;
68 char *section_name;
69 struct obstack temporary_obstack;
70 unsigned int i, j;
71 char *args;
72 bool first_p = true;
74 section_name = lto_get_section_name (LTO_section_opts, NULL, NULL);
75 lto_begin_section (section_name, false);
76 memset (&stream, 0, sizeof (stream));
78 obstack_init (&temporary_obstack);
80 /* Output options that affect GIMPLE IL semantics and are implicitly
81 enabled by the frontend.
82 This for now includes an explicit set of options that we also handle
83 explicitly in lto-wrapper.c. In the end the effects on GIMPLE IL
84 semantics should be explicitely encoded in the IL or saved per
85 function rather than per compilation unit. */
86 /* -fexceptions causes the EH machinery to be initialized, enabling
87 generation of unwind data so that explicit throw() calls work. */
88 if (global_options.x_flag_exceptions)
89 append_to_collect_gcc_options (&temporary_obstack, &first_p,
90 "-fexceptions");
91 /* -fnon-call-exceptions changes the generation of exception
92 regions. It is enabled implicitly by the Go frontend. */
93 if (global_options.x_flag_non_call_exceptions)
94 append_to_collect_gcc_options (&temporary_obstack, &first_p,
95 "-fnon-call-exceptions");
97 /* Output explicitly passed options. */
98 for (i = 1; i < save_decoded_options_count; ++i)
100 struct cl_decoded_option *option = &save_decoded_options[i];
102 /* Skip explicitly some common options that we do not need. */
103 switch (option->opt_index)
105 case OPT_dumpbase:
106 case OPT_SPECIAL_unknown:
107 case OPT_SPECIAL_ignore:
108 case OPT_SPECIAL_program_name:
109 case OPT_SPECIAL_input_file:
110 continue;
112 default:
113 break;
116 /* Skip frontend and driver specific options here. */
117 if (!(cl_options[option->opt_index].flags & (CL_COMMON|CL_TARGET|CL_LTO)))
118 continue;
120 /* Drop options created from the gcc driver that will be rejected
121 when passed on to the driver again. */
122 if (cl_options[option->opt_index].cl_reject_driver)
123 continue;
125 /* Also drop all options that are handled by the driver as well,
126 which includes things like -o and -v or -fhelp for example.
127 We do not need those. Also drop all diagnostic options. */
128 if (cl_options[option->opt_index].flags & (CL_DRIVER|CL_WARNING))
129 continue;
131 for (j = 0; j < option->canonical_option_num_elements; ++j)
132 append_to_collect_gcc_options (&temporary_obstack, &first_p,
133 option->canonical_option[j]);
135 obstack_grow (&temporary_obstack, "\0", 1);
136 args = XOBFINISH (&temporary_obstack, char *);
137 lto_output_data_stream (&stream, args, strlen (args) + 1);
139 lto_write_stream (&stream);
140 lto_end_section ();
142 obstack_free (&temporary_obstack, NULL);
143 free (section_name);