1 # Copyright (C) 2003, 2004, 2007 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 duplicat options and generates a
23 # This program uses functions from opt-functions.awk
25 # Usage: awk -f opt-functions.awk -f optc-gen.awk \
26 # [-v header_name=header.h] < inputfile > options.c
34 # Default the name of header created from opth-gen.awk to options.h
35 if (header_name ==
"") header_name=
"options.h"
38 # Collect the text and flags of each option into an array
40 if ($
1 ==
"Language") {
45 name = opt_args
("Mask", $
1)
55 # Dump that array of options into a C file.
57 print "/* This file is auto-generated by optc-gen.awk. */"
59 n_headers =
split(header_name
, headers
, " ")
60 for (i =
1; i
<= n_headers
; i
++)
61 print "#include " quote headers
[i
] quote
62 print "#include " quote
"opts.h" quote
63 print "#include " quote
"intl.h" quote
65 print "#ifdef GCC_DRIVER"
66 print "int target_flags;"
67 print "#endif /* GCC_DRIVER */"
70 for (i =
0; i
< n_opts
; i
++) {
71 name = var_name
(flags
[i
]);
75 if (flag_set_p
("VarExists", flags
[i
])) {
76 # Need it for the gcc driver.
83 init = opt_args
("Init", flags
[i
])
86 else if (name in var_seen
)
92 print "#ifdef GCC_DRIVER"
93 print "/* Set by -" opts
[i
] "."
94 print " " help
[i
] " */"
95 print var_type
(flags
[i
]) name init
";"
97 print "#endif /* GCC_DRIVER */"
104 print "/* Local state variables. */"
105 for (i =
0; i
< n_opts
; i
++) {
106 name = static_var
(opts
[i
], flags
[i
]);
108 print "static " var_type
(flags
[i
]) name
";"
112 print "const char * const lang_names[] =\n{"
113 for (i =
0; i
< n_langs
; i
++) {
114 macros
[i
] =
"CL_" langs
[i
]
115 gsub( "[^A-Za-z0-9_]", "X", macros
[i
] )
116 s =
substr(" ", length (macros
[i
]))
117 print " " quote langs
[i
] quote
","
121 print "const unsigned int cl_options_count = N_OPTS;\n"
122 print "const unsigned int cl_lang_count = " n_langs
";\n"
124 print "const struct cl_option cl_options[] =\n{"
127 for (i =
0; i
< n_opts
; i
++) {
128 back_chain
[i
] =
"N_OPTS";
129 indices
[opts
[i
]] = j
;
130 # Combine the flags of identical switches. Switches
131 # appear many times if they are handled by many front
133 while( i
+ 1 != n_opts
&& opts
[i
] == opts
[i
+ 1] ) {
134 flags
[i
+ 1] = flags
[i
] " " flags
[i
+ 1];
136 back_chain
[i
] =
"N_OPTS";
137 indices
[opts
[i
]] = j
;
142 for (i =
0; i
< n_opts
; i
++) {
143 # Combine the flags of identical switches. Switches
144 # appear many times if they are handled by many front
146 while( i
+ 1 != n_opts
&& opts
[i
] == opts
[i
+ 1] ) {
147 flags
[i
+ 1] = flags
[i
] " " flags
[i
+ 1];
151 len =
length (opts
[i
]);
152 enum =
"OPT_" opts
[i
]
153 if (opts
[i
] ==
"finline-limit=")
155 gsub ("[^A-Za-z0-9]", "_", enum
)
157 # If this switch takes joined arguments, back-chain all
158 # subsequent switches to it for which it is a prefix. If
159 # a later switch S is a longer prefix of a switch T, T
160 # will be back-chained to S in a later iteration of this
161 # for() loop, which is what we want.
162 if (flag_set_p
("Joined.*", flags
[i
])) {
163 for (j = i
+ 1; j
< n_opts
; j
++) {
164 if (substr (opts
[j
], 1, len
) != opts
[i
])
166 back_chain
[j
] = enum
;
170 s =
substr(" ", length (opts
[i
]))
177 hlp = quote help
[i
] quote
;
179 neg = opt_args
("Negative", flags
[i
]);
183 if (flag_set_p
("RejectNegative", flags
[i
]))
186 if (opts
[i
] ~
"^[Wfm]")
187 idx = indices
[opts
[i
]];
192 printf(" { %c-%s%c,\n %s,\n %s, %u, %d,\n",
193 quote
, opts
[i
], quote
, hlp
, back_chain
[i
], len
, idx
)
194 condition = opt_args
("Condition", flags
[i
])
195 cl_flags = switch_flags
(flags
[i
])
202 condition
, cl_flags
, cl_flags
)
204 printf(" %s,\n", cl_flags
)
205 printf(" %s, %s }%s\n", var_ref
(opts
[i
], flags
[i
]),
206 var_set
(flags
[i
]), comma
)