]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/optc-gen.awk
* config/picochip/picochip.c (picochip_output_internal_label):
[thirdparty/gcc.git] / gcc / optc-gen.awk
CommitLineData
7cf0dbf3 1# Copyright (C) 2003, 2004, 2007, 2008, 2009, 2010
2# Free Software Foundation, Inc.
e8b212b8 3# Contributed by Kelley Cook, June 2004.
4# Original code from Neil Booth, May 2003.
5#
6# This program is free software; you can redistribute it and/or modify it
7# under the terms of the GNU General Public License as published by the
8c4c00c1 8# Free Software Foundation; either version 3, or (at your option) any
e8b212b8 9# later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
8c4c00c1 17# along with this program; see the file COPYING3. If not see
18# <http://www.gnu.org/licenses/>.
e8b212b8 19
20# This Awk script reads in the option records generated from
63433b97 21# opt-gather.awk, combines the flags of duplicate options and generates a
e8b212b8 22# C file.
23#
24# This program uses functions from opt-functions.awk
25#
26# Usage: awk -f opt-functions.awk -f optc-gen.awk \
27# [-v header_name=header.h] < inputfile > options.c
28
29BEGIN {
30 n_opts = 0
31 n_langs = 0
46f8e3b0 32 n_target_save = 0
0f8defe5 33 n_extra_vars = 0
e8b212b8 34 quote = "\042"
35 comma = ","
36 FS=SUBSEP
37 # Default the name of header created from opth-gen.awk to options.h
38 if (header_name == "") header_name="options.h"
39}
40
41# Collect the text and flags of each option into an array
42 {
43 if ($1 == "Language") {
44 langs[n_langs] = $2
45 n_langs++;
46 }
46f8e3b0 47 else if ($1 == "TargetSave") {
48 # Make sure the declarations are put in source order
49 target_save_decl[n_target_save] = $2
50 n_target_save++
51 }
0f8defe5 52 else if ($1 == "Variable") {
53 extra_vars[n_extra_vars] = $2
54 n_extra_vars++
55 }
e8b212b8 56 else {
a9341855 57 name = opt_args("Mask", $1)
58 if (name == "") {
59 opts[n_opts] = $1
60 flags[n_opts] = $2
61 help[n_opts] = $3
1df76a79 62 for (i = 4; i <= NF; i++)
63 help[n_opts] = help[n_opts] " " $i
a9341855 64 n_opts++;
65 }
e8b212b8 66 }
67 }
68
69# Dump that array of options into a C file.
70END {
30b0f428 71print "/* This file is auto-generated by optc-gen.awk. */"
e8b212b8 72print ""
5c5ccba2 73n_headers = split(header_name, headers, " ")
74for (i = 1; i <= n_headers; i++)
75 print "#include " quote headers[i] quote
e8b212b8 76print "#include " quote "opts.h" quote
6ce616df 77print "#include " quote "intl.h" quote
e8b212b8 78print ""
486ae7e7 79print "#ifdef GCC_DRIVER"
b78351e5 80print "int target_flags_explicit;"
46f8e3b0 81print "#else"
82print "#include " quote "flags.h" quote
83print "#include " quote "target.h" quote
486ae7e7 84print "#endif /* GCC_DRIVER */"
a1baa5f1 85print ""
e8b212b8 86
46f8e3b0 87have_save = 0;
0f8defe5 88for (i = 0; i < n_extra_vars; i++) {
89 print extra_vars[i] ";"
90}
e8b212b8 91for (i = 0; i < n_opts; i++) {
46f8e3b0 92 if (flag_set_p("Save", flags[i]))
93 have_save = 1;
94
e8b212b8 95 name = var_name(flags[i]);
96 if (name == "")
97 continue;
98
a1baa5f1 99 if (flag_set_p("VarExists", flags[i])) {
0f8defe5 100 continue;
a1baa5f1 101 }
102 else {
103 init = opt_args("Init", flags[i])
104 if (init != "")
105 init = " = " init;
106 else if (name in var_seen)
107 continue;
108 }
a150399d 109
0fe44c73 110 print "/* Set by -" opts[i] "."
111 print " " help[i] " */"
112 print var_type(flags[i]) name init ";"
113 print ""
c5e839cb 114
115 var_seen[name] = 1;
a150399d 116}
e8b212b8 117
d6907cfa 118print ""
119print "/* Local state variables. */"
120for (i = 0; i < n_opts; i++) {
121 name = static_var(opts[i], flags[i]);
122 if (name != "")
123 print "static " var_type(flags[i]) name ";"
124}
125print ""
e8b212b8 126
127print "const char * const lang_names[] =\n{"
128for (i = 0; i < n_langs; i++) {
129 macros[i] = "CL_" langs[i]
130 gsub( "[^A-Za-z0-9_]", "X", macros[i] )
131 s = substr(" ", length (macros[i]))
132 print " " quote langs[i] quote ","
133 }
134
135print " 0\n};\n"
136print "const unsigned int cl_options_count = N_OPTS;\n"
87c75316 137print "const unsigned int cl_lang_count = " n_langs ";\n"
e8b212b8 138
139print "const struct cl_option cl_options[] =\n{"
140
a1baa5f1 141j = 0
142for (i = 0; i < n_opts; i++) {
e8b212b8 143 back_chain[i] = "N_OPTS";
a1baa5f1 144 indices[opts[i]] = j;
145 # Combine the flags of identical switches. Switches
146 # appear many times if they are handled by many front
147 # ends, for example.
148 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) {
149 flags[i + 1] = flags[i] " " flags[i + 1];
e6a03973 150 if (help[i + 1] == "")
151 help[i + 1] = help[i]
0863a8f4 152 else if (help[i] != "" && help[i + 1] != help[i])
153 print "warning: multiple different help strings for " \
154 opts[i] ":\n\t" help[i] "\n\t" help[i + 1] \
155 | "cat 1>&2"
a1baa5f1 156 i++;
157 back_chain[i] = "N_OPTS";
158 indices[opts[i]] = j;
159 }
160 j++;
161}
e8b212b8 162
d39ef3aa 163for (i = 0; i < n_opts; i++) {
e6a03973 164 # With identical flags, pick only the last one. The
165 # earlier loop ensured that it has all flags merged,
166 # and a nonempty help text if one of the texts was nonempty.
d39ef3aa 167 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) {
d39ef3aa 168 i++;
169 }
e8b212b8 170
d39ef3aa 171 len = length (opts[i]);
d4c7816a 172 enum = opt_enum(opts[i])
d39ef3aa 173
174 # If this switch takes joined arguments, back-chain all
175 # subsequent switches to it for which it is a prefix. If
176 # a later switch S is a longer prefix of a switch T, T
177 # will be back-chained to S in a later iteration of this
178 # for() loop, which is what we want.
179 if (flag_set_p("Joined.*", flags[i])) {
180 for (j = i + 1; j < n_opts; j++) {
181 if (substr (opts[j], 1, len) != opts[i])
182 break;
183 back_chain[j] = enum;
e8b212b8 184 }
d39ef3aa 185 }
e8b212b8 186
d39ef3aa 187 s = substr(" ", length (opts[i]))
188 if (i + 1 == n_opts)
189 comma = ""
e8b212b8 190
d39ef3aa 191 if (help[i] == "")
192 hlp = "0"
193 else
194 hlp = quote help[i] quote;
e8b212b8 195
fecf9011 196 missing_arg_error = opt_args("MissingArgError", flags[i])
197 if (missing_arg_error == "")
198 missing_arg_error = "0"
199 else
200 missing_arg_error = quote missing_arg_error quote
201
3b0273a1 202
203 warn_message = opt_args("Warn", flags[i])
204 if (warn_message == "")
205 warn_message = "0"
206 else
207 warn_message = quote warn_message quote
208
67089c6b 209 alias_arg = opt_args("Alias", flags[i])
210 if (alias_arg == "") {
3b0273a1 211 if (flag_set_p("Ignore", flags[i]))
212 alias_data = "NULL, NULL, OPT_SPECIAL_ignore"
213 else
214 alias_data = "NULL, NULL, N_OPTS"
67089c6b 215 } else {
216 alias_opt = nth_arg(0, alias_arg)
217 alias_posarg = nth_arg(1, alias_arg)
218 alias_negarg = nth_arg(2, alias_arg)
219
220 if (var_ref(opts[i], flags[i]) != "0")
221 print "#error Alias setting variable"
222
223 if (alias_posarg != "" && alias_negarg == "") {
224 if (!flag_set_p("RejectNegative", flags[i]) \
225 && opts[i] ~ "^[Wfm]")
226 print "#error Alias with single argument " \
227 "allowing negative form"
228 }
229
230 alias_opt = opt_enum(alias_opt)
231 if (alias_posarg == "")
232 alias_posarg = "NULL"
233 else
234 alias_posarg = quote alias_posarg quote
235 if (alias_negarg == "")
236 alias_negarg = "NULL"
237 else
238 alias_negarg = quote alias_negarg quote
239 alias_data = alias_posarg ", " alias_negarg ", " alias_opt
240 }
241
a1baa5f1 242 neg = opt_args("Negative", flags[i]);
243 if (neg != "")
244 idx = indices[neg]
245 else {
246 if (flag_set_p("RejectNegative", flags[i]))
247 idx = -1;
248 else {
249 if (opts[i] ~ "^[Wfm]")
250 idx = indices[opts[i]];
251 else
252 idx = -1;
253 }
254 }
13c2c394 255 # Split the printf after %u to work around an ia64-hp-hpux11.23
256 # awk bug.
3b0273a1 257 printf(" { %c-%s%c,\n %s,\n %s,\n %s,\n %s, %s, %u,",
258 quote, opts[i], quote, hlp, missing_arg_error, warn_message,
67089c6b 259 alias_data, back_chain[i], len)
13c2c394 260 printf(" %d,\n", idx)
5c5ccba2 261 condition = opt_args("Condition", flags[i])
262 cl_flags = switch_flags(flags[i])
263 if (condition != "")
264 printf("#if %s\n" \
265 " %s,\n" \
266 "#else\n" \
267 " CL_DISABLED,\n" \
268 "#endif\n",
269 condition, cl_flags, cl_flags)
270 else
271 printf(" %s,\n", cl_flags)
d6907cfa 272 printf(" %s, %s }%s\n", var_ref(opts[i], flags[i]),
273 var_set(flags[i]), comma)
e8b212b8 274}
275
276print "};"
46f8e3b0 277
278print "";
5cd72fe5 279print "#if !defined(GCC_DRIVER) && !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS)"
46f8e3b0 280print "";
281print "/* Save optimization variables into a structure. */"
282print "void";
283print "cl_optimization_save (struct cl_optimization *ptr)";
284print "{";
285
286n_opt_char = 2;
287n_opt_short = 0;
288n_opt_int = 0;
289n_opt_other = 0;
290var_opt_char[0] = "optimize";
291var_opt_char[1] = "optimize_size";
292var_opt_range["optimize"] = "0, 255";
293var_opt_range["optimize_size"] = "0, 255";
294
295# Sort by size to mimic how the structure is laid out to be friendlier to the
296# cache.
297
298for (i = 0; i < n_opts; i++) {
299 if (flag_set_p("Optimization", flags[i])) {
300 name = var_name(flags[i])
301 if(name == "")
302 continue;
303
304 if(name in var_opt_seen)
305 continue;
306
307 var_opt_seen[name]++;
308 otype = var_type_struct(flags[i]);
309 if (otype ~ "^((un)?signed +)?int *$")
310 var_opt_int[n_opt_int++] = name;
311
312 else if (otype ~ "^((un)?signed +)?short *$")
313 var_opt_short[n_opt_short++] = name;
314
315 else if (otype ~ "^((un)?signed +)?char *$") {
316 var_opt_char[n_opt_char++] = name;
317 if (otype ~ "^unsigned +char *$")
318 var_opt_range[name] = "0, 255"
319 else if (otype ~ "^signed +char *$")
320 var_opt_range[name] = "-128, 127"
321 }
322 else
323 var_opt_other[n_opt_other++] = name;
324 }
325}
326
327for (i = 0; i < n_opt_char; i++) {
328 name = var_opt_char[i];
329 if (var_opt_range[name] != "")
330 print " gcc_assert (IN_RANGE (" name ", " var_opt_range[name] "));";
331}
332
333print "";
334for (i = 0; i < n_opt_other; i++) {
335 print " ptr->" var_opt_other[i] " = " var_opt_other[i] ";";
336}
337
338for (i = 0; i < n_opt_int; i++) {
339 print " ptr->" var_opt_int[i] " = " var_opt_int[i] ";";
340}
341
342for (i = 0; i < n_opt_short; i++) {
343 print " ptr->" var_opt_short[i] " = " var_opt_short[i] ";";
344}
345
346for (i = 0; i < n_opt_char; i++) {
347 print " ptr->" var_opt_char[i] " = " var_opt_char[i] ";";
348}
349
350print "}";
351
352print "";
353print "/* Restore optimization options from a structure. */";
354print "void";
355print "cl_optimization_restore (struct cl_optimization *ptr)";
356print "{";
357
358for (i = 0; i < n_opt_other; i++) {
359 print " " var_opt_other[i] " = ptr->" var_opt_other[i] ";";
360}
361
362for (i = 0; i < n_opt_int; i++) {
363 print " " var_opt_int[i] " = ptr->" var_opt_int[i] ";";
364}
365
366for (i = 0; i < n_opt_short; i++) {
367 print " " var_opt_short[i] " = ptr->" var_opt_short[i] ";";
368}
369
370for (i = 0; i < n_opt_char; i++) {
371 print " " var_opt_char[i] " = ptr->" var_opt_char[i] ";";
372}
373
4bec06b3 374print " targetm.override_options_after_change ();";
46f8e3b0 375print "}";
376
377print "";
378print "/* Print optimization options from a structure. */";
379print "void";
380print "cl_optimization_print (FILE *file,";
381print " int indent_to,";
382print " struct cl_optimization *ptr)";
383print "{";
384
385print " fputs (\"\\n\", file);";
386for (i = 0; i < n_opt_other; i++) {
387 print " if (ptr->" var_opt_other[i] ")";
95dcf70a 388 print " fprintf (file, \"%*s%s (%#lx)\\n\",";
46f8e3b0 389 print " indent_to, \"\",";
390 print " \"" var_opt_other[i] "\",";
391 print " (unsigned long)ptr->" var_opt_other[i] ");";
392 print "";
393}
394
395for (i = 0; i < n_opt_int; i++) {
396 print " if (ptr->" var_opt_int[i] ")";
95dcf70a 397 print " fprintf (file, \"%*s%s (%#x)\\n\",";
46f8e3b0 398 print " indent_to, \"\",";
399 print " \"" var_opt_int[i] "\",";
400 print " ptr->" var_opt_int[i] ");";
401 print "";
402}
403
404for (i = 0; i < n_opt_short; i++) {
405 print " if (ptr->" var_opt_short[i] ")";
95dcf70a 406 print " fprintf (file, \"%*s%s (%#x)\\n\",";
46f8e3b0 407 print " indent_to, \"\",";
408 print " \"" var_opt_short[i] "\",";
409 print " ptr->" var_opt_short[i] ");";
410 print "";
411}
412
413for (i = 0; i < n_opt_char; i++) {
414 print " if (ptr->" var_opt_char[i] ")";
95dcf70a 415 print " fprintf (file, \"%*s%s (%#x)\\n\",";
46f8e3b0 416 print " indent_to, \"\",";
417 print " \"" var_opt_char[i] "\",";
418 print " ptr->" var_opt_char[i] ");";
419 print "";
420}
421
422print "}";
423
424print "";
425print "/* Save selected option variables into a structure. */"
426print "void";
427print "cl_target_option_save (struct cl_target_option *ptr)";
428print "{";
429
430n_target_char = 0;
431n_target_short = 0;
432n_target_int = 0;
433n_target_other = 0;
434
435if (have_save) {
436 for (i = 0; i < n_opts; i++) {
437 if (flag_set_p("Save", flags[i])) {
438 name = var_name(flags[i])
439 if(name == "")
440 name = "target_flags";
441
442 if(name in var_save_seen)
443 continue;
444
445 var_save_seen[name]++;
446 otype = var_type_struct(flags[i])
447 if (otype ~ "^((un)?signed +)?int *$")
448 var_target_int[n_target_int++] = name;
449
450 else if (otype ~ "^((un)?signed +)?short *$")
451 var_target_short[n_target_short++] = name;
452
453 else if (otype ~ "^((un)?signed +)?char *$") {
454 var_target_char[n_target_char++] = name;
455 if (otype ~ "^unsigned +char *$")
456 var_target_range[name] = "0, 255"
457 else if (otype ~ "^signed +char *$")
458 var_target_range[name] = "-128, 127"
459 }
460 else
461 var_target_other[n_target_other++] = name;
462 }
463 }
464} else {
465 var_target_int[n_target_int++] = "target_flags";
466}
467
468have_assert = 0;
469for (i = 0; i < n_target_char; i++) {
470 name = var_target_char[i];
471 if (var_target_range[name] != "") {
472 have_assert = 1;
473 print " gcc_assert (IN_RANGE (" name ", " var_target_range[name] "));";
474 }
475}
476
477if (have_assert)
478 print "";
479
480print " if (targetm.target_option.save)";
481print " targetm.target_option.save (ptr);";
482print "";
483
484for (i = 0; i < n_target_other; i++) {
485 print " ptr->" var_target_other[i] " = " var_target_other[i] ";";
486}
487
488for (i = 0; i < n_target_int; i++) {
489 print " ptr->" var_target_int[i] " = " var_target_int[i] ";";
490}
491
492for (i = 0; i < n_target_short; i++) {
493 print " ptr->" var_target_short[i] " = " var_target_short[i] ";";
494}
495
496for (i = 0; i < n_target_char; i++) {
497 print " ptr->" var_target_char[i] " = " var_target_char[i] ";";
498}
499
500print "}";
501
502print "";
503print "/* Restore selected current options from a structure. */";
504print "void";
505print "cl_target_option_restore (struct cl_target_option *ptr)";
506print "{";
507
508for (i = 0; i < n_target_other; i++) {
509 print " " var_target_other[i] " = ptr->" var_target_other[i] ";";
510}
511
512for (i = 0; i < n_target_int; i++) {
513 print " " var_target_int[i] " = ptr->" var_target_int[i] ";";
514}
515
516for (i = 0; i < n_target_short; i++) {
517 print " " var_target_short[i] " = ptr->" var_target_short[i] ";";
518}
519
520for (i = 0; i < n_target_char; i++) {
521 print " " var_target_char[i] " = ptr->" var_target_char[i] ";";
522}
523
524# This must occur after the normal variables in case the code depends on those
525# variables.
526print "";
527print " if (targetm.target_option.restore)";
528print " targetm.target_option.restore (ptr);";
529
530print "}";
531
532print "";
533print "/* Print optimization options from a structure. */";
534print "void";
535print "cl_target_option_print (FILE *file,";
536print " int indent,";
537print " struct cl_target_option *ptr)";
538print "{";
539
540print " fputs (\"\\n\", file);";
541for (i = 0; i < n_target_other; i++) {
542 print " if (ptr->" var_target_other[i] ")";
95dcf70a 543 print " fprintf (file, \"%*s%s (%#lx)\\n\",";
46f8e3b0 544 print " indent, \"\",";
545 print " \"" var_target_other[i] "\",";
546 print " (unsigned long)ptr->" var_target_other[i] ");";
547 print "";
548}
549
550for (i = 0; i < n_target_int; i++) {
551 print " if (ptr->" var_target_int[i] ")";
95dcf70a 552 print " fprintf (file, \"%*s%s (%#x)\\n\",";
46f8e3b0 553 print " indent, \"\",";
554 print " \"" var_target_int[i] "\",";
555 print " ptr->" var_target_int[i] ");";
556 print "";
557}
558
559for (i = 0; i < n_target_short; i++) {
560 print " if (ptr->" var_target_short[i] ")";
95dcf70a 561 print " fprintf (file, \"%*s%s (%#x)\\n\",";
46f8e3b0 562 print " indent, \"\",";
563 print " \"" var_target_short[i] "\",";
564 print " ptr->" var_target_short[i] ");";
565 print "";
566}
567
568for (i = 0; i < n_target_char; i++) {
569 print " if (ptr->" var_target_char[i] ")";
95dcf70a 570 print " fprintf (file, \"%*s%s (%#x)\\n\",";
46f8e3b0 571 print " indent, \"\",";
572 print " \"" var_target_char[i] "\",";
573 print " ptr->" var_target_char[i] ");";
574 print "";
575}
576
577print "";
578print " if (targetm.target_option.print)";
579print " targetm.target_option.print (file, indent, ptr);";
580
581print "}";
582print "#endif";
583
e8b212b8 584}