1 # Copyright (C) 2003-2014 Free Software Foundation, Inc.
2 # Contributed by Kelley Cook, June 2004.
3 # Original code from Neil Booth, May 2003.
5 # This program is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by the
7 # Free Software Foundation; either version 3, or (at your option) any
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; see the file COPYING3. If not see
17 # <http://www.gnu.org/licenses/>.
19 # This Awk script reads in the option records generated from
20 # opt-gather.awk, combines the flags of duplicate options and generates a
23 # This program uses functions from opt-functions.awk and code from
25 # Usage: awk -f opt-functions.awk -f opt-read.awk -f opth-gen.awk \
26 # < inputfile > options.h
28 # Dump out an enumeration into a .h file.
29 # Combine the flags of duplicate options.
31 print "/* This file is auto-generated by opth-gen.awk. */"
33 print "#ifndef OPTIONS_H"
34 print "#define OPTIONS_H"
36 print "#include \"flag-types.h\""
39 if (n_extra_h_includes
> 0) {
40 for (i =
0; i
< n_extra_h_includes
; i
++) {
41 print "#include " quote extra_h_includes
[i
] quote
46 print "#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS) && !defined(IN_RTS)"
47 print "#ifndef GENERATOR_FILE"
48 print "#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS)"
49 print "struct GTY(()) gcc_options"
51 print "struct gcc_options"
56 for (i =
0; i
< n_extra_vars
; i
++) {
63 sub("^.*[ *]", "", name
)
64 sub("\\[.*\\]$", "", name
)
65 sub("\\[.*\\]$", "", type
)
66 sub(" *" name
"$", "", type
)
67 sub("^.*" name
, "", type_after
)
69 print "#ifdef GENERATOR_FILE"
70 print "extern " orig_var
";"
72 print " " type
" x_" name type_after
";"
73 print "#define " name
" global_options.x_" name
77 for (i =
0; i
< n_opts
; i
++) {
78 if (flag_set_p
("Save", flags
[i
]))
81 name = var_name
(flags
[i
]);
89 print "#ifdef GENERATOR_FILE"
90 print "extern " var_type
(flags
[i
]) name
";"
92 print " " var_type
(flags
[i
]) "x_" name
";"
93 print "#define " name
" global_options.x_" name
96 for (i =
0; i
< n_opts
; i
++) {
97 name = static_var
(opts
[i
], flags
[i
]);
99 print "#ifndef GENERATOR_FILE"
100 print " " var_type
(flags
[i
]) "x_" name
";"
101 print "#define x_" name
" do_not_use"
105 for (i =
0; i
< n_opts
; i
++) {
106 if (flag_set_p
("SetByCombined", flags
[i
])) {
107 print "#ifndef GENERATOR_FILE"
108 print " bool frontend_set_" var_name
(flags
[i
]) ";"
112 print "#ifndef GENERATOR_FILE"
114 print "extern struct gcc_options global_options;"
115 print "extern const struct gcc_options global_options_init;"
116 print "extern struct gcc_options global_options_set;"
117 print "#define target_flags_explicit global_options_set.x_target_flags"
122 # All of the optimization switches gathered together so they can be saved and restored.
123 # This will allow attribute((cold)) to turn on space optimization.
125 # Change the type of normal switches from int to unsigned char to save space.
126 # Also, order the structure so that pointer fields occur first, then int
127 # fields, and then char fields to provide the best packing.
129 print "#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS) && !defined(IN_RTS)"
131 print "/* Structure to save/restore optimization and target specific options. */";
132 print "struct GTY(()) cl_optimization";
140 var_opt_char
[0] =
"unsigned char x_optimize";
141 var_opt_char
[1] =
"unsigned char x_optimize_size";
142 var_opt_enum
[0] =
"enum fp_contract_mode x_flag_fp_contract_mode";
144 for (i =
0; i
< n_opts
; i
++) {
145 if (flag_set_p
("Optimization", flags
[i
])) {
146 name = var_name
(flags
[i
])
150 if(name in var_opt_seen
)
153 var_opt_seen
[name
]++;
154 otype = var_type_struct
(flags
[i
]);
155 if (otype ~
"^((un)?signed +)?int *$")
156 var_opt_int
[n_opt_int
++] = otype
"x_" name
;
158 else if (otype ~
"^((un)?signed +)?short *$")
159 var_opt_short
[n_opt_short
++] = otype
"x_" name
;
161 else if (otype ~
"^((un)?signed +)?char *$")
162 var_opt_char
[n_opt_char
++] = otype
"x_" name
;
164 else if (otype ~
("^enum +[_" alnum
"]+ *$"))
165 var_opt_enum
[n_opt_enum
++] = otype
"x_" name
;
168 var_opt_other
[n_opt_other
++] = otype
"x_" name
;
172 for (i =
0; i
< n_opt_other
; i
++) {
173 print " " var_opt_other
[i
] ";";
176 for (i =
0; i
< n_opt_int
; i
++) {
177 print " " var_opt_int
[i
] ";";
180 for (i =
0; i
< n_opt_enum
; i
++) {
181 print " " var_opt_enum
[i
] ";";
184 for (i =
0; i
< n_opt_short
; i
++) {
185 print " " var_opt_short
[i
] ";";
188 for (i =
0; i
< n_opt_char
; i
++) {
189 print " " var_opt_char
[i
] ";";
195 # Target and optimization save/restore/print functions.
196 print "/* Structure to save/restore selected target specific options. */";
197 print "struct GTY(()) cl_target_option";
206 for (i =
0; i
< n_target_save
; i
++) {
207 if (target_save_decl
[i
] ~
"^((un)?signed +)?int +[_" alnum
"]+$")
208 var_target_int
[n_target_int
++] = target_save_decl
[i
];
210 else if (target_save_decl
[i
] ~
"^((un)?signed +)?short +[_" alnum
"]+$")
211 var_target_short
[n_target_short
++] = target_save_decl
[i
];
213 else if (target_save_decl
[i
] ~
"^((un)?signed +)?char +[_ " alnum
"]+$")
214 var_target_char
[n_target_char
++] = target_save_decl
[i
];
216 else if (target_save_decl
[i
] ~
("^enum +[_" alnum
"]+ +[_" alnum
"]+$")) {
217 var_target_enum
[n_target_enum
++] = target_save_decl
[i
];
220 var_target_other
[n_target_other
++] = target_save_decl
[i
];
224 for (i =
0; i
< n_opts
; i
++) {
225 if (flag_set_p
("Save", flags
[i
])) {
226 name = var_name
(flags
[i
])
228 name =
"target_flags";
230 if(name in var_save_seen
)
233 var_save_seen
[name
]++;
234 otype = var_type_struct
(flags
[i
])
235 if (otype ~
"^((un)?signed +)?int *$")
236 var_target_int
[n_target_int
++] = otype
"x_" name
;
238 else if (otype ~
"^((un)?signed +)?short *$")
239 var_target_short
[n_target_short
++] = otype
"x_" name
;
241 else if (otype ~
"^((un)?signed +)?char *$")
242 var_target_char
[n_target_char
++] = otype
"x_" name
;
244 else if (otype ~
("^enum +[_" alnum
"]+ +[_" alnum
"]+"))
245 var_target_enum
[n_target_enum
++] = otype
"x_" name
;
248 var_target_other
[n_target_other
++] = otype
"x_" name
;
252 var_target_int
[n_target_int
++] =
"int x_target_flags";
255 for (i =
0; i
< n_target_other
; i
++) {
256 print " " var_target_other
[i
] ";";
259 for (i =
0; i
< n_target_enum
; i
++) {
260 print " " var_target_enum
[i
] ";";
263 for (i =
0; i
< n_target_int
; i
++) {
264 print " " var_target_int
[i
] ";";
267 for (i =
0; i
< n_target_short
; i
++) {
268 print " " var_target_short
[i
] ";";
271 for (i =
0; i
< n_target_char
; i
++) {
272 print " " var_target_char
[i
] ";";
278 print "/* Save optimization variables into a structure. */"
279 print "extern void cl_optimization_save (struct cl_optimization *, struct gcc_options *);";
281 print "/* Restore optimization variables from a structure. */";
282 print "extern void cl_optimization_restore (struct gcc_options *, struct cl_optimization *);";
284 print "/* Print optimization variables from a structure. */";
285 print "extern void cl_optimization_print (FILE *, int, struct cl_optimization *);";
287 print "/* Save selected option variables into a structure. */"
288 print "extern void cl_target_option_save (struct cl_target_option *, struct gcc_options *);";
290 print "/* Restore selected option variables from a structure. */"
291 print "extern void cl_target_option_restore (struct gcc_options *, struct cl_target_option *);";
293 print "/* Print target option variables from a structure. */";
294 print "extern void cl_target_option_print (FILE *, int, struct cl_target_option *);";
296 print "/* Anything that includes tm.h, does not necessarily need this. */"
297 print "#if !defined(GCC_TM_H)"
298 print "#include \"input.h\" /* for location_t */"
300 print "common_handle_option_auto (struct gcc_options *opts, "
301 print " struct gcc_options *opts_set, "
302 print " const struct cl_decoded_option *decoded, "
303 print " unsigned int lang_mask, int kind, "
304 print " location_t loc, "
305 print " const struct cl_option_handlers *handlers, "
306 print " diagnostic_context *dc); "
307 for (i =
0; i
< n_langs
; i
++) {
308 lang_name = lang_sanitized_name
(langs
[i
]);
310 print lang_name
"_handle_option_auto (struct gcc_options *opts, "
311 print " struct gcc_options *opts_set, "
312 print " size_t scode, const char *arg, int value, "
313 print " unsigned int lang_mask, int kind, "
314 print " location_t loc, "
315 print " const struct cl_option_handlers *handlers, "
316 print " diagnostic_context *dc); "
322 for (i =
0; i
< n_opts
; i
++) {
323 name = opt_args
("Mask", flags
[i
])
325 opt = opt_args
("InverseMask", flags
[i
])
327 name = nth_arg
(0, opt
)
331 if (name
!= "" && mask_bits
[name
] ==
0) {
333 vname = var_name
(flags
[i
])
337 mask =
"OPTION_MASK_"
338 if (host_wide_int
[vname
] ==
"yes")
339 mask_1 =
"HOST_WIDE_INT_1"
341 extra_mask_bits
[name
] =
1
342 print "#define " mask name
" (" mask_1
" << " masknum
[vname
]++ ")"
345 for (i =
0; i
< n_extra_masks
; i
++) {
346 if (extra_mask_bits
[extra_masks
[i
]] ==
0)
347 print "#define MASK_" extra_masks
[i
] " (1 << " masknum
[""]++ ")"
350 for (var in masknum
) {
351 if (var
!= "" && host_wide_int
[var
] ==
"yes") {
352 print" #if defined(HOST_BITS_PER_WIDE_INT) && " masknum
[var
] " >= HOST_BITS_PER_WIDE_INT"
353 print "#error too many masks for " var
356 else if (masknum
[var
] > 31) {
358 print "#error too many target masks"
360 print "#error too many masks for " var
365 for (i =
0; i
< n_opts
; i
++) {
366 name = opt_args
("Mask", flags
[i
])
368 opt = opt_args
("InverseMask", flags
[i
])
370 name = nth_arg
(0, opt
)
374 if (name
!= "" && mask_macros
[name
] ==
0) {
375 mask_macros
[name
] =
1
376 vname = var_name
(flags
[i
])
377 mask =
"OPTION_MASK_"
379 vname =
"target_flags"
381 extra_mask_macros
[name
] =
1
383 print "#define TARGET_" name \
384 " ((" vname
" & " mask name
") != 0)"
385 print "#define TARGET_" name
"_P(" vname
")" \
386 " ((" vname
" & " mask name
") != 0)"
389 for (i =
0; i
< n_extra_masks
; i
++) {
390 if (extra_mask_macros
[extra_masks
[i
]] ==
0)
391 print "#define TARGET_" extra_masks
[i
] \
392 " ((target_flags & MASK_" extra_masks
[i
] ") != 0)"
396 for (i =
0; i
< n_opts
; i
++) {
397 opt = opt_args
("InverseMask", flags
[i
])
399 vname = var_name
(flags
[i
])
400 mask =
"OPTION_MASK_"
402 vname =
"target_flags"
405 print "#define TARGET_" nth_arg
(1, opt
) \
406 " ((" vname
" & " mask nth_arg
(0, opt
) ") == 0)"
411 for (i =
0; i
< n_langs
; i
++) {
412 macros
[i
] =
"CL_" lang_sanitized_name
(langs
[i
])
413 s =
substr(" ", length (macros
[i
]))
414 print "#define " macros
[i
] s
" (1U << " i
")"
416 print "#define CL_LANG_ALL ((1U << " n_langs
") - 1)"
419 print "enum opt_code"
422 for (i =
0; i
< n_opts
; i
++)
423 back_chain
[i
] =
"N_OPTS";
426 for (i =
0; i
< n_opts
; i
++) {
427 # Combine the flags of identical switches. Switches
428 # appear many times if they are handled by many front
430 while( i
+ 1 != n_opts
&& opts
[i
] == opts
[i
+ 1] ) {
431 flags
[i
+ 1] = flags
[i
] " " flags
[i
+ 1];
435 len =
length (opts
[i
]);
436 enum = opt_enum
(opts
[i
])
437 enum_string = enum
" = " enum_value
","
439 # Aliases do not get enumeration names.
440 if ((flag_set_p
("Alias.*", flags
[i
]) \
441 && !flag_set_p
("SeparateAlias", flags
[i
])) \
442 || flag_set_p
("Ignore", flags
[i
])) {
443 enum_string =
"/* " enum_string
" */"
446 # If this switch takes joined arguments, back-chain all
447 # subsequent switches to it for which it is a prefix. If
448 # a later switch S is a longer prefix of a switch T, T
449 # will be back-chained to S in a later iteration of this
450 # for() loop, which is what we want.
451 if (flag_set_p
("Joined.*", flags
[i
])) {
452 for (j = i
+ 1; j
< n_opts
; j
++) {
453 if (substr (opts
[j
], 1, len
) != opts
[i
])
455 back_chain
[j
] = enum
;
460 length (enum_string
))
465 hlp =
"N_(\"" help
[i
] "\")";
467 print " " enum_string s
"/* -" opts
[i
] " */"
472 print " OPT_SPECIAL_unknown,"
473 print " OPT_SPECIAL_ignore,"
474 print " OPT_SPECIAL_program_name,"
475 print " OPT_SPECIAL_input_file"
478 print "#endif /* OPTIONS_H */"