]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/opth-gen.awk
Correct a function pre/postcondition [PR102403].
[thirdparty/gcc.git] / gcc / opth-gen.awk
CommitLineData
99dee823 1# Copyright (C) 2003-2021 Free Software Foundation, Inc.
776dc15d
KC
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
9dcd6f09 7# Free Software Foundation; either version 3, or (at your option) any
776dc15d
KC
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
9dcd6f09
NC
16# along with this program; see the file COPYING3. If not see
17# <http://www.gnu.org/licenses/>.
776dc15d
KC
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#
86fa5de4
JM
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
776dc15d
KC
27
28# Dump out an enumeration into a .h file.
29# Combine the flags of duplicate options.
30END {
14078ff6 31print "/* This file is auto-generated by opth-gen.awk. */"
776dc15d
KC
32print ""
33print "#ifndef OPTIONS_H"
34print "#define OPTIONS_H"
35print ""
f938f60c
JM
36print "#include \"flag-types.h\""
37print ""
776dc15d 38
fd438373
MM
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}
ab442df7 45
a75bfaa6 46print "#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS) && !defined(IN_RTS)"
e3339d0f 47print "#ifndef GENERATOR_FILE"
57dfdff0 48print "#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS)"
fd438373
MM
49print "struct GTY(()) gcc_options"
50print "#else"
51print "struct gcc_options"
52print "#endif"
53print "{"
e3339d0f
JM
54print "#endif"
55
e90afde6
JM
56for (i = 0; i < n_extra_vars; i++) {
57 var = extra_vars[i]
58 sub(" *=.*", "", var)
e3339d0f
JM
59 orig_var = var
60 name = var
61 type = var
69ccdddb 62 type_after = var
e3339d0f 63 sub("^.*[ *]", "", name)
69ccdddb
JM
64 sub("\\[.*\\]$", "", name)
65 sub("\\[.*\\]$", "", type)
e3339d0f 66 sub(" *" name "$", "", type)
69ccdddb 67 sub("^.*" name, "", type_after)
e3339d0f
JM
68 var_seen[name] = 1
69 print "#ifdef GENERATOR_FILE"
70 print "extern " orig_var ";"
71 print "#else"
69ccdddb 72 print " " type " x_" name type_after ";"
e3339d0f
JM
73 print "#define " name " global_options.x_" name
74 print "#endif"
e90afde6
JM
75}
76
776dc15d 77for (i = 0; i < n_opts; i++) {
ab442df7
MM
78 if (flag_set_p("Save", flags[i]))
79 have_save = 1;
80
776dc15d
KC
81 name = var_name(flags[i]);
82 if (name == "")
83 continue;
84
ab442df7
MM
85 if (name in var_seen)
86 continue;
87
88 var_seen[name] = 1;
e3339d0f 89 print "#ifdef GENERATOR_FILE"
55bea00a 90 print "extern " var_type(flags[i]) name ";"
e3339d0f
JM
91 print "#else"
92 print " " var_type(flags[i]) "x_" name ";"
93 print "#define " name " global_options.x_" name
94 print "#endif"
55bea00a 95}
46625112
JM
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}
5e46b0c6
ILT
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}
e3339d0f
JM
112print "#ifndef GENERATOR_FILE"
113print "};"
114print "extern struct gcc_options global_options;"
a75bfaa6 115print "extern const struct gcc_options global_options_init;"
d4d24ba4 116print "extern struct gcc_options global_options_set;"
70e8b89b 117print "#define target_flags_explicit global_options_set.x_target_flags"
e3339d0f 118print "#endif"
a75bfaa6 119print "#endif"
55bea00a 120print ""
776dc15d 121
ab442df7
MM
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
f6d08ab2 129print "#if !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS) && !defined(IN_RTS)"
ab442df7
MM
130print ""
131print "/* Structure to save/restore optimization and target specific options. */";
d1b38208 132print "struct GTY(()) cl_optimization";
ab442df7
MM
133print "{";
134
f521d9d8 135n_opt_char = 4;
ab442df7
MM
136n_opt_short = 0;
137n_opt_int = 0;
bea30e0d 138n_opt_enum = 0;
ab442df7 139n_opt_other = 0;
ba948b37 140n_opt_explicit = 4;
e3339d0f
JM
141var_opt_char[0] = "unsigned char x_optimize";
142var_opt_char[1] = "unsigned char x_optimize_size";
b16650ac 143var_opt_char[2] = "unsigned char x_optimize_debug";
f521d9d8 144var_opt_char[3] = "unsigned char x_optimize_fast";
ab442df7
MM
145
146for (i = 0; i < n_opts; i++) {
ff98fa95 147 if (flag_set_p("(Optimization|PerFunction)", flags[i])) {
ab442df7
MM
148 name = var_name(flags[i])
149 if(name == "")
150 continue;
151
152 if(name in var_opt_seen)
153 continue;
154
155 var_opt_seen[name]++;
ba948b37 156 n_opt_explicit++;
ab442df7
MM
157 otype = var_type_struct(flags[i]);
158 if (otype ~ "^((un)?signed +)?int *$")
e3339d0f 159 var_opt_int[n_opt_int++] = otype "x_" name;
ab442df7
MM
160
161 else if (otype ~ "^((un)?signed +)?short *$")
e3339d0f 162 var_opt_short[n_opt_short++] = otype "x_" name;
ab442df7
MM
163
164 else if (otype ~ "^((un)?signed +)?char *$")
e3339d0f 165 var_opt_char[n_opt_char++] = otype "x_" name;
ab442df7 166
fd438373
MM
167 else if (otype ~ ("^enum +[_" alnum "]+ *$"))
168 var_opt_enum[n_opt_enum++] = otype "x_" name;
169
ab442df7 170 else
e3339d0f 171 var_opt_other[n_opt_other++] = otype "x_" name;
ab442df7
MM
172 }
173}
174
175for (i = 0; i < n_opt_other; i++) {
176 print " " var_opt_other[i] ";";
177}
178
179for (i = 0; i < n_opt_int; i++) {
180 print " " var_opt_int[i] ";";
181}
182
fd438373
MM
183for (i = 0; i < n_opt_enum; i++) {
184 print " " var_opt_enum[i] ";";
185}
186
ab442df7
MM
187for (i = 0; i < n_opt_short; i++) {
188 print " " var_opt_short[i] ";";
189}
190
191for (i = 0; i < n_opt_char; i++) {
192 print " " var_opt_char[i] ";";
193}
194
ba948b37
JJ
195print " /* " n_opt_explicit " members */";
196print " unsigned HOST_WIDE_INT explicit_mask[" int ((n_opt_explicit + 63) / 64) "];";
197
ab442df7
MM
198print "};";
199print "";
200
201# Target and optimization save/restore/print functions.
202print "/* Structure to save/restore selected target specific options. */";
d1b38208 203print "struct GTY(()) cl_target_option";
ab442df7
MM
204print "{";
205
206n_target_char = 0;
207n_target_short = 0;
208n_target_int = 0;
fd438373 209n_target_enum = 0;
ab442df7 210n_target_other = 0;
ba948b37 211n_target_explicit = n_extra_target_vars;
ce531b14 212n_target_explicit_mask = 0;
ab442df7
MM
213
214for (i = 0; i < n_target_save; i++) {
e4590d63 215 if (target_save_decl[i] ~ "^((un)?signed +)?int +[_" alnum "]+$")
ab442df7
MM
216 var_target_int[n_target_int++] = target_save_decl[i];
217
e4590d63 218 else if (target_save_decl[i] ~ "^((un)?signed +)?short +[_" alnum "]+$")
ab442df7
MM
219 var_target_short[n_target_short++] = target_save_decl[i];
220
e4590d63 221 else if (target_save_decl[i] ~ "^((un)?signed +)?char +[_ " alnum "]+$")
ab442df7
MM
222 var_target_char[n_target_char++] = target_save_decl[i];
223
fd438373
MM
224 else if (target_save_decl[i] ~ ("^enum +[_" alnum "]+ +[_" alnum "]+$")) {
225 var_target_enum[n_target_enum++] = target_save_decl[i];
226 }
ab442df7
MM
227 else
228 var_target_other[n_target_other++] = target_save_decl[i];
229}
230
231if (have_save) {
232 for (i = 0; i < n_opts; i++) {
233 if (flag_set_p("Save", flags[i])) {
234 name = var_name(flags[i])
235 if(name == "")
236 name = "target_flags";
237
238 if(name in var_save_seen)
239 continue;
240
241 var_save_seen[name]++;
ba948b37 242 n_target_explicit++;
ab442df7 243 otype = var_type_struct(flags[i])
ce531b14
JJ
244
245 if (opt_args("Mask", flags[i]) != "" \
246 || opt_args("InverseMask", flags[i]))
247 var_target_explicit_mask[n_target_explicit_mask++] \
248 = otype "explicit_mask_" name;
249
ab442df7 250 if (otype ~ "^((un)?signed +)?int *$")
e3339d0f 251 var_target_int[n_target_int++] = otype "x_" name;
ab442df7
MM
252
253 else if (otype ~ "^((un)?signed +)?short *$")
e3339d0f 254 var_target_short[n_target_short++] = otype "x_" name;
ab442df7
MM
255
256 else if (otype ~ "^((un)?signed +)?char *$")
e3339d0f 257 var_target_char[n_target_char++] = otype "x_" name;
ab442df7 258
fd438373
MM
259 else if (otype ~ ("^enum +[_" alnum "]+ +[_" alnum "]+"))
260 var_target_enum[n_target_enum++] = otype "x_" name;
261
ab442df7 262 else
e3339d0f 263 var_target_other[n_target_other++] = otype "x_" name;
ab442df7
MM
264 }
265 }
266} else {
e3339d0f 267 var_target_int[n_target_int++] = "int x_target_flags";
ba948b37 268 n_target_explicit++;
ce531b14
JJ
269 var_target_explicit_mask[n_target_explicit_mask++] \
270 = "int explicit_mask_target_flags";
ab442df7
MM
271}
272
273for (i = 0; i < n_target_other; i++) {
274 print " " var_target_other[i] ";";
275}
276
fd438373
MM
277for (i = 0; i < n_target_enum; i++) {
278 print " " var_target_enum[i] ";";
279}
280
ab442df7
MM
281for (i = 0; i < n_target_int; i++) {
282 print " " var_target_int[i] ";";
283}
284
285for (i = 0; i < n_target_short; i++) {
286 print " " var_target_short[i] ";";
287}
288
289for (i = 0; i < n_target_char; i++) {
290 print " " var_target_char[i] ";";
291}
292
ce531b14 293print " /* " n_target_explicit - n_target_explicit_mask " members */";
3c022a4c
JJ
294if (n_target_explicit > n_target_explicit_mask) {
295 print " unsigned HOST_WIDE_INT explicit_mask[" \
296 int ((n_target_explicit - n_target_explicit_mask + 63) / 64) "];";
297}
ce531b14
JJ
298
299for (i = 0; i < n_target_explicit_mask; i++) {
300 print " " var_target_explicit_mask[i] ";";
301}
ba948b37 302
ab442df7
MM
303print "};";
304print "";
305print "";
306print "/* Save optimization variables into a structure. */"
ba948b37 307print "extern void cl_optimization_save (struct cl_optimization *, struct gcc_options *, struct gcc_options *);";
ab442df7
MM
308print "";
309print "/* Restore optimization variables from a structure. */";
ba948b37 310print "extern void cl_optimization_restore (struct gcc_options *, struct gcc_options *, struct cl_optimization *);";
ab442df7
MM
311print "";
312print "/* Print optimization variables from a structure. */";
313print "extern void cl_optimization_print (FILE *, int, struct cl_optimization *);";
314print "";
eaabbb00
ML
315print "/* Print different optimization variables from structures provided as arguments. */";
316print "extern void cl_optimization_print_diff (FILE *, int, cl_optimization *ptr1, cl_optimization *ptr2);";
317print "";
ab442df7 318print "/* Save selected option variables into a structure. */"
ba948b37 319print "extern void cl_target_option_save (struct cl_target_option *, struct gcc_options *, struct gcc_options *);";
ab442df7
MM
320print "";
321print "/* Restore selected option variables from a structure. */"
ba948b37 322print "extern void cl_target_option_restore (struct gcc_options *, struct gcc_options *, struct cl_target_option *);";
ab442df7
MM
323print "";
324print "/* Print target option variables from a structure. */";
325print "extern void cl_target_option_print (FILE *, int, struct cl_target_option *);";
7d5a5747 326print "";
eaabbb00
ML
327print "/* Print different target option variables from structures provided as arguments. */";
328print "extern void cl_target_option_print_diff (FILE *, int, cl_target_option *ptr1, cl_target_option *ptr2);";
329print "";
54e774c0
JH
330print "/* Compare two target option variables from a structure. */";
331print "extern bool cl_target_option_eq (const struct cl_target_option *, const struct cl_target_option *);";
332print "";
c6145f2a
JH
333print "/* Free heap memory used by target option variables. */";
334print "extern void cl_target_option_free (struct cl_target_option *);";
335print "";
54e774c0
JH
336print "/* Hash option variables from a structure. */";
337print "extern hashval_t cl_target_option_hash (const struct cl_target_option *);";
338print "";
ca9a04da
JH
339print "/* Hash optimization from a structure. */";
340print "extern hashval_t cl_optimization_hash (const struct cl_optimization *);";
341print "";
c518c102
ML
342print "/* Compare two optimization options. */";
343print "extern bool cl_optimization_option_eq (cl_optimization const *ptr1, cl_optimization const *ptr2);"
344print "";
c6145f2a
JH
345print "/* Free heap memory used by optimization options. */";
346print "extern void cl_optimization_option_free (cl_optimization *ptr1);"
347print "";
dc6d15ea
ML
348print "/* Compare and report difference for a part of cl_optimization options. */";
349print "extern void cl_optimization_compare (gcc_options *ptr1, gcc_options *ptr2);";
350print "";
903f5c23
AM
351print "/* Generator files may not have access to location_t, and don't need these. */"
352print "#if defined(UNKNOWN_LOCATION)"
7d5a5747
MLI
353print "bool "
354print "common_handle_option_auto (struct gcc_options *opts, "
355print " struct gcc_options *opts_set, "
356print " const struct cl_decoded_option *decoded, "
357print " unsigned int lang_mask, int kind, "
358print " location_t loc, "
359print " const struct cl_option_handlers *handlers, "
360print " diagnostic_context *dc); "
f2bc201f
MLI
361for (i = 0; i < n_langs; i++) {
362 lang_name = lang_sanitized_name(langs[i]);
00abf86c
MS
363 print "bool"
364 print lang_name "_handle_option_auto (struct gcc_options *opts,"
365 print " struct gcc_options *opts_set,"
366 print " size_t scode, const char *arg,"
367 print " HOST_WIDE_INT value,"
368 print " unsigned int lang_mask, int kind,"
369 print " location_t loc,"
370 print " const struct cl_option_handlers *handlers,"
371 print " diagnostic_context *dc);"
f2bc201f 372}
43f9a13c
MLI
373print "void cpp_handle_option_auto (const struct gcc_options * opts, size_t scode,"
374print " struct cpp_options * cpp_opts);"
375print "void init_global_opts_from_cpp(struct gcc_options * opts, "
376print " const struct cpp_options * cpp_opts);"
7d5a5747 377print "#endif";
ab442df7
MM
378print "#endif";
379print "";
380
75685792
RS
381for (i = 0; i < n_opts; i++) {
382 name = opt_args("Mask", flags[i])
1ad36b7e
L
383 if (name == "") {
384 opt = opt_args("InverseMask", flags[i])
385 if (opt ~ ",")
386 name = nth_arg(0, opt)
387 else
388 name = opt
f7f655c7 389 }
1ad36b7e
L
390 if (name != "" && mask_bits[name] == 0) {
391 mask_bits[name] = 1
392 vname = var_name(flags[i])
393 mask = "MASK_"
d5c45ad7 394 mask_1 = "1U"
1ad36b7e
L
395 if (vname != "") {
396 mask = "OPTION_MASK_"
397 if (host_wide_int[vname] == "yes")
d5c45ad7 398 mask_1 = "HOST_WIDE_INT_1U"
eefdb8e6
L
399 } else
400 extra_mask_bits[name] = 1
99114bbf 401 print "#define " mask name " (" mask_1 " << " masknum[vname]++ ")"
1ad36b7e 402 }
75685792 403}
fe609b0f 404for (i = 0; i < n_extra_masks; i++) {
eefdb8e6 405 if (extra_mask_bits[extra_masks[i]] == 0)
d5c45ad7 406 print "#define MASK_" extra_masks[i] " (1U << " masknum[""]++ ")"
f7f655c7
DD
407}
408
409for (var in masknum) {
99114bbf 410 if (var != "" && host_wide_int[var] == "yes") {
d5c45ad7 411 print "#if defined(HOST_BITS_PER_WIDE_INT) && " masknum[var] " > HOST_BITS_PER_WIDE_INT"
99114bbf
L
412 print "#error too many masks for " var
413 print "#endif"
414 }
d5c45ad7 415 else if (masknum[var] > 32) {
f7f655c7
DD
416 if (var == "")
417 print "#error too many target masks"
418 else
419 print "#error too many masks for " var
420 }
fe609b0f 421}
75685792
RS
422print ""
423
424for (i = 0; i < n_opts; i++) {
425 name = opt_args("Mask", flags[i])
1ad36b7e
L
426 if (name == "") {
427 opt = opt_args("InverseMask", flags[i])
428 if (opt ~ ",")
429 name = nth_arg(0, opt)
430 else
431 name = opt
f7f655c7 432 }
1ad36b7e
L
433 if (name != "" && mask_macros[name] == 0) {
434 mask_macros[name] = 1
435 vname = var_name(flags[i])
1ad36b7e
L
436 mask = "OPTION_MASK_"
437 if (vname == "") {
438 vname = "target_flags"
1ad36b7e 439 mask = "MASK_"
eefdb8e6 440 extra_mask_macros[name] = 1
1ad36b7e 441 }
1751bec0
ML
442 original_name = name
443 gsub("ISA_", "", name)
444 gsub("ISA2_", "", name)
445 print "/* " original_name " mask */"
90922d36 446 print "#define TARGET_" name \
1751bec0 447 " ((" vname " & " mask original_name ") != 0)"
bf7b5747 448 print "#define TARGET_" name "_P(" vname ")" \
1751bec0
ML
449 " (((" vname ") & " mask original_name ") != 0)"
450 print "#define TARGET_EXPLICIT_" name "_P(opts)" \
451 " ((opts->x_" vname "_explicit & " mask original_name ") != 0)"
452 print "#define SET_TARGET_" name "(opts) opts->x_" vname " |= " mask original_name
1ad36b7e 453 }
75685792 454}
fe609b0f 455for (i = 0; i < n_extra_masks; i++) {
eefdb8e6
L
456 if (extra_mask_macros[extra_masks[i]] == 0)
457 print "#define TARGET_" extra_masks[i] \
458 " ((target_flags & MASK_" extra_masks[i] ") != 0)"
fe609b0f 459}
75685792
RS
460print ""
461
462for (i = 0; i < n_opts; i++) {
463 opt = opt_args("InverseMask", flags[i])
7bd85ce0
JM
464 if (opt ~ ",") {
465 vname = var_name(flags[i])
7bd85ce0
JM
466 mask = "OPTION_MASK_"
467 if (vname == "") {
468 vname = "target_flags"
7bd85ce0
JM
469 mask = "MASK_"
470 }
90922d36 471 print "#define TARGET_" nth_arg(1, opt) \
7bd85ce0
JM
472 " ((" vname " & " mask nth_arg(0, opt) ") == 0)"
473 }
75685792
RS
474}
475print ""
776dc15d
KC
476
477for (i = 0; i < n_langs; i++) {
f2bc201f 478 macros[i] = "CL_" lang_sanitized_name(langs[i])
776dc15d 479 s = substr(" ", length (macros[i]))
eb50f63a 480 print "#define " macros[i] s " (1U << " i ")"
776dc15d 481 }
eb50f63a 482print "#define CL_LANG_ALL ((1U << " n_langs ") - 1)"
776dc15d
KC
483
484print ""
485print "enum opt_code"
486print "{"
487
488for (i = 0; i < n_opts; i++)
489 back_chain[i] = "N_OPTS";
490
5de8299c 491enum_value = 0
64fbae21
RS
492for (i = 0; i < n_opts; i++) {
493 # Combine the flags of identical switches. Switches
494 # appear many times if they are handled by many front
495 # ends, for example.
496 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) {
497 flags[i + 1] = flags[i] " " flags[i + 1];
498 i++;
499 }
776dc15d
KC
500
501 len = length (opts[i]);
9db94baa 502 enum = opt_enum(opts[i])
5de8299c
JM
503 enum_string = enum " = " enum_value ","
504
505 # Aliases do not get enumeration names.
d1583032
JM
506 if ((flag_set_p("Alias.*", flags[i]) \
507 && !flag_set_p("SeparateAlias", flags[i])) \
508 || flag_set_p("Ignore", flags[i])) {
5de8299c
JM
509 enum_string = "/* " enum_string " */"
510 }
776dc15d
KC
511
512 # If this switch takes joined arguments, back-chain all
513 # subsequent switches to it for which it is a prefix. If
514 # a later switch S is a longer prefix of a switch T, T
515 # will be back-chained to S in a later iteration of this
516 # for() loop, which is what we want.
a56a0779 517 if (flag_set_p("Joined.*", flags[i])) {
776dc15d
KC
518 for (j = i + 1; j < n_opts; j++) {
519 if (substr (opts[j], 1, len) != opts[i])
520 break;
521 back_chain[j] = enum;
522 }
523 }
524
5de8299c
JM
525 s = substr(" ",
526 length (enum_string))
776dc15d
KC
527
528 if (help[i] == "")
529 hlp = "0"
530 else
531 hlp = "N_(\"" help[i] "\")";
532
5de8299c
JM
533 print " " enum_string s "/* -" opts[i] " */"
534 enum_value++
776dc15d
KC
535}
536
6e2f1956
JM
537print " N_OPTS,"
538print " OPT_SPECIAL_unknown,"
2d2bd949 539print " OPT_SPECIAL_ignore,"
68a57628 540print " OPT_SPECIAL_warn_removed,"
6e2f1956
JM
541print " OPT_SPECIAL_program_name,"
542print " OPT_SPECIAL_input_file"
776dc15d
KC
543print "};"
544print ""
40e23961 545print "#ifdef GCC_C_COMMON_C"
b559c810
MLI
546print "/* Mapping from cpp message reasons to the options that enable them. */"
547print "#include <cpplib.h>"
548print "struct cpp_reason_option_codes_t"
549print "{"
c24300ba
DM
550print " /* cpplib message reason. */"
551print " const enum cpp_warning_reason reason;"
552print " /* gcc option that controls this message. */"
553print " const int option_code;"
b559c810
MLI
554print "};"
555print ""
556print "static const struct cpp_reason_option_codes_t cpp_reason_option_codes[] = {"
557for (i = 0; i < n_opts; i++) {
558 # With identical flags, pick only the last one. The
559 # earlier loop ensured that it has all flags merged,
560 # and a nonempty help text if one of the texts was nonempty.
561 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) {
562 i++;
563 }
564 cpp_reason = nth_arg(0, opt_args("CppReason", flags[i]));
565 if (cpp_reason != "") {
566 cpp_reason = cpp_reason ",";
567 printf(" {%-40s %s},\n", cpp_reason, opt_enum(opts[i]))
568 }
569}
570printf(" {%-40s 0},\n", "CPP_W_NONE,")
571print "};"
572print "#endif"
573print ""
776dc15d
KC
574print "#endif /* OPTIONS_H */"
575}