1 # Copyright (C) 2003, 2004, 2007, 2008, 2009, 2010, 2011
2 # Free Software Foundation, Inc.
3 # Contributed by Kelley Cook, June 2004.
4 # Original code from Neil Booth, May 2003.
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
8 # Free Software Foundation; either version 3, or (at your option) any
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.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; see the file COPYING3. If not see
18 # <http://www.gnu.org/licenses/>.
20 # Some common subroutines for use by opt[ch]-gen.awk.
22 # Define some helpful character classes, for portability.
24 lower =
"abcdefghijklmnopqrstuvwxyz"
25 upper =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
27 alnum = lower
"" upper
"" digit
30 # Return nonzero if FLAGS contains a flag matching REGEX.
31 function flag_set_p
(regex
, flags
)
33 # Ignore the arguments of flags with arguments.
34 gsub ("\\([^)]+\\)", "", flags
);
35 return (" " flags
" ") ~
(" " regex
" ")
38 # Return STRING if FLAGS contains a flag matching regexp REGEX,
39 # otherwise return the empty string.
40 function test_flag
(regex
, flags
, string
)
42 if (flag_set_p
(regex
, flags
))
47 # Return a field initializer, with trailing comma, for a field that is
48 # 1 if FLAGS contains a flag matching REGEX and 0 otherwise.
49 function flag_init
(regex
, flags
)
51 if (flag_set_p
(regex
, flags
))
52 return "1 /* " regex
" */, "
57 # If FLAGS contains a "NAME(...argument...)" flag, return the value
58 # of the argument. Return the empty string otherwise.
59 function opt_args
(name
, flags
)
62 if (flags !~
" " name
"\\(")
64 sub(".* " name
"\\(", "", flags
)
68 sub("}\\).*", "", flags
)
71 sub("\\).*", "", flags
)
76 # Return the Nth comma-separated element of S. Return the empty string
77 # if S does not contain N elements.
78 function nth_arg
(n
, s
)
83 sub("[^,]*, *", "", s
)
89 # Return a bitmask of CL_* values for option flags FLAGS.
90 function switch_flags
(flags
)
93 for (j =
0; j
< n_langs
; j
++) {
95 gsub ( "\\+", "\\+", regex
)
96 result = result test_flag
(regex
, flags
, " | " macros
[j
])
99 test_flag
("Common", flags
, " | CL_COMMON") \
100 test_flag
("Target", flags
, " | CL_TARGET") \
101 test_flag
("Driver", flags
, " | CL_DRIVER") \
102 test_flag
("Joined", flags
, " | CL_JOINED") \
103 test_flag
("JoinedOrMissing", flags
, " | CL_JOINED") \
104 test_flag
("Separate", flags
, " | CL_SEPARATE") \
105 test_flag
("Undocumented", flags
, " | CL_UNDOCUMENTED") \
106 test_flag
("NoDWARFRecord", flags
, " | CL_NO_DWARF_RECORD") \
107 test_flag
("Warning", flags
, " | CL_WARNING") \
108 test_flag
("Optimization", flags
, " | CL_OPTIMIZATION")
109 sub( "^0 \\| ", "", result
)
113 # Return bit-field initializers for option flags FLAGS.
114 function switch_bit_fields
(flags
)
116 vn = var_name
(flags
);
117 if (host_wide_int
[vn
] ==
"yes")
118 hwi =
"Host_Wide_Int"
122 sep_args = opt_args
("Args", flags
)
127 result = result sep_args
", "
130 flag_init
("SeparateAlias", flags
) \
131 flag_init
("NegativeAlias", flags
) \
132 flag_init
("NoDriverArg", flags
) \
133 flag_init
("RejectDriver", flags
) \
134 flag_init
("RejectNegative", flags
) \
135 flag_init
("JoinedOrMissing", flags
) \
136 flag_init
("UInteger", flags
) \
137 flag_init
("Host_Wide_Int", hwi
) \
138 flag_init
("ToLower", flags
) \
139 flag_init
("Report", flags
)
141 sub(", $", "", result
)
145 # If FLAGS includes a Var flag, return the name of the variable it specifies.
146 # Return the empty string otherwise.
147 function var_name
(flags
)
149 return nth_arg
(0, opt_args
("Var", flags
))
152 # Return the name of the variable if FLAGS has a HOST_WIDE_INT variable.
153 # Return the empty string otherwise.
154 function host_wide_int_var_name
(flags
)
156 split (flags
, array
, "[ \t]+")
157 if (array
[1] ==
"HOST_WIDE_INT")
163 # Return true if the option described by FLAGS has a globally-visible state.
164 function global_state_p
(flags
)
166 return (var_name
(flags
) != "" \
167 || opt_args
("Mask", flags
) != "" \
168 || opt_args
("InverseMask", flags
) != "")
171 # Return true if the option described by FLAGS must have some state
172 # associated with it.
173 function needs_state_p
(flags
)
175 return (flag_set_p
("Target", flags
) \
176 && !flag_set_p
("Alias.*", flags
) \
177 && !flag_set_p
("Ignore", flags
))
180 # If FLAGS describes an option that needs state without a public
181 # variable name, return the name of that field, minus the initial
182 # "x_", otherwise return "". NAME is the name of the option.
183 function static_var
(name
, flags
)
185 if (global_state_p
(flags
) || !needs_state_p
(flags
))
187 gsub ("[^" alnum
"]", "_", name
)
191 # Return the type of variable that should be associated with the given flags.
192 function var_type
(flags
)
194 if (flag_set_p
("Defer", flags
))
196 else if (flag_set_p
("Enum.*", flags
)) {
197 en = opt_args
("Enum", flags
);
198 return enum_type
[en
] " "
200 else if (!flag_set_p
("Joined.*", flags
) && !flag_set_p
("Separate", flags
))
202 else if (flag_set_p
("UInteger", flags
))
205 return "const char *"
208 # Return the type of variable that should be associated with the given flags
209 # for use within a structure. Simple variables are changed to signed char
210 # type instead of int to save space.
211 function var_type_struct
(flags
)
213 if (flag_set_p
("UInteger", flags
))
215 else if (flag_set_p
("Enum.*", flags
)) {
216 en = opt_args
("Enum", flags
);
217 return enum_type
[en
] " "
219 else if (!flag_set_p
("Joined.*", flags
) && !flag_set_p
("Separate", flags
)) {
220 if (flag_set_p
(".*Mask.*", flags
)) {
221 if (host_wide_int
[var_name
(flags
)] ==
"yes")
222 return "HOST_WIDE_INT "
227 return "signed char "
230 return "const char *"
233 # Given that an option has flags FLAGS, return an initializer for the
234 # "var_enum", "var_type" and "var_value" fields of its cl_options[] entry.
235 function var_set
(flags
)
237 if (flag_set_p
("Defer", flags
))
238 return "0, CLVC_DEFER, 0"
239 s = nth_arg
(1, opt_args
("Var", flags
))
241 return "0, CLVC_EQUAL, " s
242 s = opt_args
("Mask", flags
);
244 vn = var_name
(flags
);
246 return "0, CLVC_BIT_SET, OPTION_MASK_" s
248 return "0, CLVC_BIT_SET, MASK_" s
250 s = nth_arg
(0, opt_args
("InverseMask", flags
));
252 vn = var_name
(flags
);
254 return "0, CLVC_BIT_CLEAR, OPTION_MASK_" s
256 return "0, CLVC_BIT_CLEAR, MASK_" s
258 if (flag_set_p
("Enum.*", flags
)) {
259 en = opt_args
("Enum", flags
);
260 return enum_index
[en
] ", CLVC_ENUM, 0"
262 if (var_type
(flags
) ==
"const char *")
263 return "0, CLVC_STRING, 0"
264 return "0, CLVC_BOOLEAN, 0"
267 # Given that an option called NAME has flags FLAGS, return an initializer
268 # for the "flag_var" field of its cl_options[] entry.
269 function var_ref
(name
, flags
)
271 name = var_name
(flags
) static_var
(name
, flags
)
273 return "offsetof (struct gcc_options, x_" name
")"
274 if (opt_args
("Mask", flags
) != "")
275 return "offsetof (struct gcc_options, x_target_flags)"
276 if (opt_args
("InverseMask", flags
) != "")
277 return "offsetof (struct gcc_options, x_target_flags)"
281 # Given the option called NAME return a sanitized version of its name.
282 function opt_sanitized_name
(name
)
284 gsub ("[^" alnum
"]", "_", name
)
288 # Given the option called NAME return the appropriate enum for it.
289 function opt_enum
(name
)
291 return "OPT_" opt_sanitized_name
(name
)
294 # Given the language called NAME return a sanitized version of its name.
295 function lang_sanitized_name
(name
)
297 gsub( "[^" alnum
"_]", "X", name
)