]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/optc-gen.awk
trans-array.c (gfc_conv_descriptor_data_get): Rename from gfc_conv_descriptor_data.
[thirdparty/gcc.git] / gcc / optc-gen.awk
CommitLineData
776dc15d
KC
1# Copyright (C) 2003,2004 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 2, 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; if not, write to the Free Software
17# Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19# This Awk script reads in the option records generated from
20# opt-gather.awk, combines the flags of duplicat options and generates a
21# C file.
22#
23# This program uses functions from opt-functions.awk
24#
25# Usage: awk -f opt-functions.awk -f optc-gen.awk \
26# [-v header_name=header.h] < inputfile > options.c
27
28BEGIN {
29 n_opts = 0
30 n_langs = 0
31 quote = "\042"
32 comma = ","
33 FS=SUBSEP
34 # Default the name of header created from opth-gen.awk to options.h
35 if (header_name == "") header_name="options.h"
36}
37
38# Collect the text and flags of each option into an array
39 {
40 if ($1 == "Language") {
41 langs[n_langs] = $2
42 n_langs++;
43 }
44 else {
fe609b0f
EB
45 name = opt_args("Mask", $1)
46 if (name == "") {
47 opts[n_opts] = $1
48 flags[n_opts] = $2
49 help[n_opts] = $3
50 n_opts++;
51 }
776dc15d
KC
52 }
53 }
54
55# Dump that array of options into a C file.
56END {
57print "/* This file is auto-generated by opts.sh. */"
58print ""
aeb70e78
RS
59n_headers = split(header_name, headers, " ")
60for (i = 1; i <= n_headers; i++)
61 print "#include " quote headers[i] quote
776dc15d 62print "#include " quote "opts.h" quote
fb664b5a 63print "#include " quote "intl.h" quote
776dc15d
KC
64print ""
65
66for (i = 0; i < n_opts; i++) {
67 name = var_name(flags[i]);
68 if (name == "")
69 continue;
70
a56a0779 71 if (flag_set_p("VarExists", flags[i]))
776dc15d
KC
72 continue;
73
a56a0779
RS
74 init = opt_args("Init", flags[i])
75 if (init != "")
76 init = " = " init;
f7f655c7
DD
77 else if (name in var_seen)
78 continue;
a56a0779 79
55bea00a
RS
80 print "/* Set by -" opts[i] "."
81 print " " help[i] " */"
82 print var_type(flags[i]) name init ";"
83 print ""
f7f655c7
DD
84
85 var_seen[name] = 1;
a56a0779 86}
776dc15d
KC
87
88
89print "const char * const lang_names[] =\n{"
90for (i = 0; i < n_langs; i++) {
91 macros[i] = "CL_" langs[i]
92 gsub( "[^A-Za-z0-9_]", "X", macros[i] )
93 s = substr(" ", length (macros[i]))
94 print " " quote langs[i] quote ","
95 }
96
97print " 0\n};\n"
98print "const unsigned int cl_options_count = N_OPTS;\n"
99
100print "const struct cl_option cl_options[] =\n{"
101
102for (i = 0; i < n_opts; i++)
103 back_chain[i] = "N_OPTS";
104
b167666c
RS
105for (i = 0; i < n_opts; i++) {
106 # Combine the flags of identical switches. Switches
107 # appear many times if they are handled by many front
108 # ends, for example.
109 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) {
110 flags[i + 1] = flags[i] " " flags[i + 1];
111 i++;
112 }
776dc15d 113
b167666c
RS
114 len = length (opts[i]);
115 enum = "OPT_" opts[i]
116 if (opts[i] == "finline-limit=")
117 enum = enum "eq"
118 gsub ("[^A-Za-z0-9]", "_", enum)
119
120 # If this switch takes joined arguments, back-chain all
121 # subsequent switches to it for which it is a prefix. If
122 # a later switch S is a longer prefix of a switch T, T
123 # will be back-chained to S in a later iteration of this
124 # for() loop, which is what we want.
125 if (flag_set_p("Joined.*", flags[i])) {
126 for (j = i + 1; j < n_opts; j++) {
127 if (substr (opts[j], 1, len) != opts[i])
128 break;
129 back_chain[j] = enum;
776dc15d 130 }
b167666c 131 }
776dc15d 132
b167666c
RS
133 s = substr(" ", length (opts[i]))
134 if (i + 1 == n_opts)
135 comma = ""
776dc15d 136
b167666c
RS
137 if (help[i] == "")
138 hlp = "0"
139 else
140 hlp = quote help[i] quote;
776dc15d 141
aeb70e78
RS
142 printf(" { %c-%s%c,\n %s,\n %s, %u,\n",
143 quote, opts[i], quote, hlp, back_chain[i], len)
144 condition = opt_args("Condition", flags[i])
145 cl_flags = switch_flags(flags[i])
146 if (condition != "")
147 printf("#if %s\n" \
148 " %s,\n" \
149 "#else\n" \
150 " CL_DISABLED,\n" \
151 "#endif\n",
152 condition, cl_flags, cl_flags)
153 else
154 printf(" %s,\n", cl_flags)
155 printf(" %s, %s }%s\n", var_ref(flags[i]), var_set(flags[i]), comma)
776dc15d
KC
156}
157
158print "};"
159}