1# Copyright (C) 2003-2019 Free Software Foundation, Inc. 2# Contributed by Kelley Cook, June 2004. 3# Original code from Neil Booth, May 2003. 4# 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 8# later version. 9# 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. 14# 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/>. 18 19# This Awk script reads in the option records generated from 20# opt-gather.awk, combines the flags of duplicate options and generates a 21# C header file. 22# 23# This program uses functions from opt-functions.awk and code from 24# opt-read.awk. 25# Usage: awk -f opt-functions.awk -f opt-read.awk -f opth-gen.awk \ 26# < inputfile > options.h 27 28# Dump out an enumeration into a .h file. 29# Combine the flags of duplicate options. 30END { 31print "/* This file is auto-generated by opth-gen.awk. */" 32print "" 33print "#ifndef OPTIONS_H" 34print "#define OPTIONS_H" 35print "" 36print "#include \"flag-types.h\"" 37print "" 38 39if (n_extra_h_includes > 0) { 40 for (i = 0; i < n_extra_h_includes; i++) { 41 print "#include " quote extra_h_includes[i] quote 42 } 43 print "" 44} 45 46print "#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS) && !defined(IN_RTS)" 47print "#ifndef GENERATOR_FILE" 48print "#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS)" 49print "struct GTY(()) gcc_options" 50print "#else" 51print "struct gcc_options" 52print "#endif" 53print "{" 54print "#endif" 55 56for (i = 0; i < n_extra_vars; i++) { 57 var = extra_vars[i] 58 sub(" *=.*", "", var) 59 orig_var = var 60 name = var 61 type = var 62 type_after = var 63 sub("^.*[ *]", "", name) 64 sub("\\[.*\\]$", "", name) 65 sub("\\[.*\\]$", "", type) 66 sub(" *" name "$", "", type) 67 sub("^.*" name, "", type_after) 68 var_seen[name] = 1 69 print "#ifdef GENERATOR_FILE" 70 print "extern " orig_var ";" 71 print "#else" 72 print " " type " x_" name type_after ";" 73 print "#define " name " global_options.x_" name 74 print "#endif" 75} 76 77for (i = 0; i < n_opts; i++) { 78 if (flag_set_p("Save", flags[i])) 79 have_save = 1; 80 81 name = var_name(flags[i]); 82 if (name == "") 83 continue; 84 85 if (name in var_seen) 86 continue; 87 88 var_seen[name] = 1; 89 print "#ifdef GENERATOR_FILE" 90 print "extern " var_type(flags[i]) name ";" 91 print "#else" 92 print " " var_type(flags[i]) "x_" name ";" 93 print "#define " name " global_options.x_" name 94 print "#endif" 95} 96for (i = 0; i < n_opts; i++) { 97 name = static_var(opts[i], flags[i]); 98 if (name != "") { 99 print "#ifndef GENERATOR_FILE" 100 print " " var_type(flags[i]) "x_" name ";" 101 print "#define x_" name " do_not_use" 102 print "#endif" 103 } 104} 105for (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]) ";" 109 print "#endif" 110 } 111} 112print "#ifndef GENERATOR_FILE" 113print "};" 114print "extern struct gcc_options global_options;" 115print "extern const struct gcc_options global_options_init;" 116print "extern struct gcc_options global_options_set;" 117print "#define target_flags_explicit global_options_set.x_target_flags" 118print "#endif" 119print "#endif" 120print "" 121 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. 124 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. 128 129print "#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS) && !defined(IN_RTS)" 130print "" 131print "/* Structure to save/restore optimization and target specific options. */"; 132print "struct GTY(()) cl_optimization"; 133print "{"; 134 135n_opt_char = 4; 136n_opt_short = 0; 137n_opt_int = 0; 138n_opt_enum = 0; 139n_opt_other = 0; 140var_opt_char[0] = "unsigned char x_optimize"; 141var_opt_char[1] = "unsigned char x_optimize_size"; 142var_opt_char[2] = "unsigned char x_optimize_debug"; 143var_opt_char[3] = "unsigned char x_optimize_fast"; 144 145for (i = 0; i < n_opts; i++) { 146 if (flag_set_p("(Optimization|PerFunction)", flags[i])) { 147 name = var_name(flags[i]) 148 if(name == "") 149 continue; 150 151 if(name in var_opt_seen) 152 continue; 153 154 var_opt_seen[name]++; 155 otype = var_type_struct(flags[i]); 156 if (otype ~ "^((un)?signed +)?int *$") 157 var_opt_int[n_opt_int++] = otype "x_" name; 158 159 else if (otype ~ "^((un)?signed +)?short *$") 160 var_opt_short[n_opt_short++] = otype "x_" name; 161 162 else if (otype ~ "^((un)?signed +)?char *$") 163 var_opt_char[n_opt_char++] = otype "x_" name; 164 165 else if (otype ~ ("^enum +[_" alnum "]+ *$")) 166 var_opt_enum[n_opt_enum++] = otype "x_" name; 167 168 else 169 var_opt_other[n_opt_other++] = otype "x_" name; 170 } 171} 172 173for (i = 0; i < n_opt_other; i++) { 174 print " " var_opt_other[i] ";"; 175} 176 177for (i = 0; i < n_opt_int; i++) { 178 print " " var_opt_int[i] ";"; 179} 180 181for (i = 0; i < n_opt_enum; i++) { 182 print " " var_opt_enum[i] ";"; 183} 184 185for (i = 0; i < n_opt_short; i++) { 186 print " " var_opt_short[i] ";"; 187} 188 189for (i = 0; i < n_opt_char; i++) { 190 print " " var_opt_char[i] ";"; 191} 192 193print "};"; 194print ""; 195 196# Target and optimization save/restore/print functions. 197print "/* Structure to save/restore selected target specific options. */"; 198print "struct GTY(()) cl_target_option"; 199print "{"; 200 201n_target_char = 0; 202n_target_short = 0; 203n_target_int = 0; 204n_target_enum = 0; 205n_target_other = 0; 206 207for (i = 0; i < n_target_save; i++) { 208 if (target_save_decl[i] ~ "^((un)?signed +)?int +[_" alnum "]+$") 209 var_target_int[n_target_int++] = target_save_decl[i]; 210 211 else if (target_save_decl[i] ~ "^((un)?signed +)?short +[_" alnum "]+$") 212 var_target_short[n_target_short++] = target_save_decl[i]; 213 214 else if (target_save_decl[i] ~ "^((un)?signed +)?char +[_ " alnum "]+$") 215 var_target_char[n_target_char++] = target_save_decl[i]; 216 217 else if (target_save_decl[i] ~ ("^enum +[_" alnum "]+ +[_" alnum "]+$")) { 218 var_target_enum[n_target_enum++] = target_save_decl[i]; 219 } 220 else 221 var_target_other[n_target_other++] = target_save_decl[i]; 222} 223 224if (have_save) { 225 for (i = 0; i < n_opts; i++) { 226 if (flag_set_p("Save", flags[i])) { 227 name = var_name(flags[i]) 228 if(name == "") 229 name = "target_flags"; 230 231 if(name in var_save_seen) 232 continue; 233 234 var_save_seen[name]++; 235 otype = var_type_struct(flags[i]) 236 if (otype ~ "^((un)?signed +)?int *$") 237 var_target_int[n_target_int++] = otype "x_" name; 238 239 else if (otype ~ "^((un)?signed +)?short *$") 240 var_target_short[n_target_short++] = otype "x_" name; 241 242 else if (otype ~ "^((un)?signed +)?char *$") 243 var_target_char[n_target_char++] = otype "x_" name; 244 245 else if (otype ~ ("^enum +[_" alnum "]+ +[_" alnum "]+")) 246 var_target_enum[n_target_enum++] = otype "x_" name; 247 248 else 249 var_target_other[n_target_other++] = otype "x_" name; 250 } 251 } 252} else { 253 var_target_int[n_target_int++] = "int x_target_flags"; 254} 255 256for (i = 0; i < n_target_other; i++) { 257 print " " var_target_other[i] ";"; 258} 259 260for (i = 0; i < n_target_enum; i++) { 261 print " " var_target_enum[i] ";"; 262} 263 264for (i = 0; i < n_target_int; i++) { 265 print " " var_target_int[i] ";"; 266} 267 268for (i = 0; i < n_target_short; i++) { 269 print " " var_target_short[i] ";"; 270} 271 272for (i = 0; i < n_target_char; i++) { 273 print " " var_target_char[i] ";"; 274} 275 276print "};"; 277print ""; 278print ""; 279print "/* Save optimization variables into a structure. */" 280print "extern void cl_optimization_save (struct cl_optimization *, struct gcc_options *);"; 281print ""; 282print "/* Restore optimization variables from a structure. */"; 283print "extern void cl_optimization_restore (struct gcc_options *, struct cl_optimization *);"; 284print ""; 285print "/* Print optimization variables from a structure. */"; 286print "extern void cl_optimization_print (FILE *, int, struct cl_optimization *);"; 287print ""; 288print "/* Print different optimization variables from structures provided as arguments. */"; 289print "extern void cl_optimization_print_diff (FILE *, int, cl_optimization *ptr1, cl_optimization *ptr2);"; 290print ""; 291print "/* Save selected option variables into a structure. */" 292print "extern void cl_target_option_save (struct cl_target_option *, struct gcc_options *);"; 293print ""; 294print "/* Restore selected option variables from a structure. */" 295print "extern void cl_target_option_restore (struct gcc_options *, struct cl_target_option *);"; 296print ""; 297print "/* Print target option variables from a structure. */"; 298print "extern void cl_target_option_print (FILE *, int, struct cl_target_option *);"; 299print ""; 300print "/* Print different target option variables from structures provided as arguments. */"; 301print "extern void cl_target_option_print_diff (FILE *, int, cl_target_option *ptr1, cl_target_option *ptr2);"; 302print ""; 303print "/* Compare two target option variables from a structure. */"; 304print "extern bool cl_target_option_eq (const struct cl_target_option *, const struct cl_target_option *);"; 305print ""; 306print "/* Hash option variables from a structure. */"; 307print "extern hashval_t cl_target_option_hash (const struct cl_target_option *);"; 308print ""; 309print "/* Hash optimization from a structure. */"; 310print "extern hashval_t cl_optimization_hash (const struct cl_optimization *);"; 311print ""; 312print "/* Compare two optimization options. */"; 313print "extern bool cl_optimization_option_eq (cl_optimization const *ptr1, cl_optimization const *ptr2);" 314print ""; 315print "/* Generator files may not have access to location_t, and don't need these. */" 316print "#if defined(UNKNOWN_LOCATION)" 317print "bool " 318print "common_handle_option_auto (struct gcc_options *opts, " 319print " struct gcc_options *opts_set, " 320print " const struct cl_decoded_option *decoded, " 321print " unsigned int lang_mask, int kind, " 322print " location_t loc, " 323print " const struct cl_option_handlers *handlers, " 324print " diagnostic_context *dc); " 325for (i = 0; i < n_langs; i++) { 326 lang_name = lang_sanitized_name(langs[i]); 327 print "bool" 328 print lang_name "_handle_option_auto (struct gcc_options *opts," 329 print " struct gcc_options *opts_set," 330 print " size_t scode, const char *arg," 331 print " HOST_WIDE_INT value," 332 print " unsigned int lang_mask, int kind," 333 print " location_t loc," 334 print " const struct cl_option_handlers *handlers," 335 print " diagnostic_context *dc);" 336} 337print "void cpp_handle_option_auto (const struct gcc_options * opts, size_t scode," 338print " struct cpp_options * cpp_opts);" 339print "void init_global_opts_from_cpp(struct gcc_options * opts, " 340print " const struct cpp_options * cpp_opts);" 341print "#endif"; 342print "#endif"; 343print ""; 344 345for (i = 0; i < n_opts; i++) { 346 name = opt_args("Mask", flags[i]) 347 if (name == "") { 348 opt = opt_args("InverseMask", flags[i]) 349 if (opt ~ ",") 350 name = nth_arg(0, opt) 351 else 352 name = opt 353 } 354 if (name != "" && mask_bits[name] == 0) { 355 mask_bits[name] = 1 356 vname = var_name(flags[i]) 357 mask = "MASK_" 358 mask_1 = "1U" 359 if (vname != "") { 360 mask = "OPTION_MASK_" 361 if (host_wide_int[vname] == "yes") 362 mask_1 = "HOST_WIDE_INT_1U" 363 } else 364 extra_mask_bits[name] = 1 365 print "#define " mask name " (" mask_1 " << " masknum[vname]++ ")" 366 } 367} 368for (i = 0; i < n_extra_masks; i++) { 369 if (extra_mask_bits[extra_masks[i]] == 0) 370 print "#define MASK_" extra_masks[i] " (1U << " masknum[""]++ ")" 371} 372 373for (var in masknum) { 374 if (var != "" && host_wide_int[var] == "yes") { 375 print "#if defined(HOST_BITS_PER_WIDE_INT) && " masknum[var] " > HOST_BITS_PER_WIDE_INT" 376 print "#error too many masks for " var 377 print "#endif" 378 } 379 else if (masknum[var] > 32) { 380 if (var == "") 381 print "#error too many target masks" 382 else 383 print "#error too many masks for " var 384 } 385} 386print "" 387 388for (i = 0; i < n_opts; i++) { 389 name = opt_args("Mask", flags[i]) 390 if (name == "") { 391 opt = opt_args("InverseMask", flags[i]) 392 if (opt ~ ",") 393 name = nth_arg(0, opt) 394 else 395 name = opt 396 } 397 if (name != "" && mask_macros[name] == 0) { 398 mask_macros[name] = 1 399 vname = var_name(flags[i]) 400 mask = "OPTION_MASK_" 401 if (vname == "") { 402 vname = "target_flags" 403 mask = "MASK_" 404 extra_mask_macros[name] = 1 405 } 406 print "#define TARGET_" name \ 407 " ((" vname " & " mask name ") != 0)" 408 print "#define TARGET_" name "_P(" vname ")" \ 409 " (((" vname ") & " mask name ") != 0)" 410 } 411} 412for (i = 0; i < n_extra_masks; i++) { 413 if (extra_mask_macros[extra_masks[i]] == 0) 414 print "#define TARGET_" extra_masks[i] \ 415 " ((target_flags & MASK_" extra_masks[i] ") != 0)" 416} 417print "" 418 419for (i = 0; i < n_opts; i++) { 420 opt = opt_args("InverseMask", flags[i]) 421 if (opt ~ ",") { 422 vname = var_name(flags[i]) 423 mask = "OPTION_MASK_" 424 if (vname == "") { 425 vname = "target_flags" 426 mask = "MASK_" 427 } 428 print "#define TARGET_" nth_arg(1, opt) \ 429 " ((" vname " & " mask nth_arg(0, opt) ") == 0)" 430 } 431} 432print "" 433 434for (i = 0; i < n_langs; i++) { 435 macros[i] = "CL_" lang_sanitized_name(langs[i]) 436 s = substr(" ", length (macros[i])) 437 print "#define " macros[i] s " (1U << " i ")" 438 } 439print "#define CL_LANG_ALL ((1U << " n_langs ") - 1)" 440 441print "" 442print "enum opt_code" 443print "{" 444 445for (i = 0; i < n_opts; i++) 446 back_chain[i] = "N_OPTS"; 447 448enum_value = 0 449for (i = 0; i < n_opts; i++) { 450 # Combine the flags of identical switches. Switches 451 # appear many times if they are handled by many front 452 # ends, for example. 453 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) { 454 flags[i + 1] = flags[i] " " flags[i + 1]; 455 i++; 456 } 457 458 len = length (opts[i]); 459 enum = opt_enum(opts[i]) 460 enum_string = enum " = " enum_value "," 461 462 # Aliases do not get enumeration names. 463 if ((flag_set_p("Alias.*", flags[i]) \ 464 && !flag_set_p("SeparateAlias", flags[i])) \ 465 || flag_set_p("Ignore", flags[i])) { 466 enum_string = "/* " enum_string " */" 467 } 468 469 # If this switch takes joined arguments, back-chain all 470 # subsequent switches to it for which it is a prefix. If 471 # a later switch S is a longer prefix of a switch T, T 472 # will be back-chained to S in a later iteration of this 473 # for() loop, which is what we want. 474 if (flag_set_p("Joined.*", flags[i])) { 475 for (j = i + 1; j < n_opts; j++) { 476 if (substr (opts[j], 1, len) != opts[i]) 477 break; 478 back_chain[j] = enum; 479 } 480 } 481 482 s = substr(" ", 483 length (enum_string)) 484 485 if (help[i] == "") 486 hlp = "0" 487 else 488 hlp = "N_(\"" help[i] "\")"; 489 490 print " " enum_string s "/* -" opts[i] " */" 491 enum_value++ 492} 493 494print " N_OPTS," 495print " OPT_SPECIAL_unknown," 496print " OPT_SPECIAL_ignore," 497print " OPT_SPECIAL_deprecated," 498print " OPT_SPECIAL_program_name," 499print " OPT_SPECIAL_input_file" 500print "};" 501print "" 502print "#ifdef GCC_C_COMMON_C" 503print "/* Mapping from cpp message reasons to the options that enable them. */" 504print "#include <cpplib.h>" 505print "struct cpp_reason_option_codes_t" 506print "{" 507print " /* cpplib message reason. */" 508print " const enum cpp_warning_reason reason;" 509print " /* gcc option that controls this message. */" 510print " const int option_code;" 511print "};" 512print "" 513print "static const struct cpp_reason_option_codes_t cpp_reason_option_codes[] = {" 514for (i = 0; i < n_opts; i++) { 515 # With identical flags, pick only the last one. The 516 # earlier loop ensured that it has all flags merged, 517 # and a nonempty help text if one of the texts was nonempty. 518 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) { 519 i++; 520 } 521 cpp_reason = nth_arg(0, opt_args("CppReason", flags[i])); 522 if (cpp_reason != "") { 523 cpp_reason = cpp_reason ","; 524 printf(" {%-40s %s},\n", cpp_reason, opt_enum(opts[i])) 525 } 526} 527printf(" {%-40s 0},\n", "CPP_W_NONE,") 528print "};" 529print "#endif" 530print "" 531print "#endif /* OPTIONS_H */" 532} 533