new tests
[official-gcc.git] / gcc / optc-gen.awk
blob503bc6b87f976401ed46e6938aeb9c73329cb4e7
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
9 # later version.
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 # This Awk script reads in the option records generated from
21 # opt-gather.awk, combines the flags of duplicate options and generates a
22 # C file.
24 # This program uses functions from opt-functions.awk
26 # Usage: awk -f opt-functions.awk -f optc-gen.awk \
27 # [-v header_name=header.h] < inputfile > options.c
29 BEGIN {
30 n_opts = 0
31 n_langs = 0
32 n_target_save = 0
33 n_extra_vars = 0
34 n_extra_target_vars = 0
35 n_extra_c_includes = 0
36 n_extra_h_includes = 0
37 n_enums = 0
38 quote = "\042"
39 comma = ","
40 FS=SUBSEP
41 # Default the name of header created from opth-gen.awk to options.h
42 if (header_name == "") header_name="options.h"
45 # Collect the text and flags of each option into an array
47 if ($1 == "Language") {
48 langs[n_langs] = $2
49 n_langs++;
51 else if ($1 == "TargetSave") {
52 # Make sure the declarations are put in source order
53 target_save_decl[n_target_save] = $2
54 n_target_save++
56 else if ($1 == "Variable") {
57 extra_vars[n_extra_vars] = $2
58 n_extra_vars++
60 else if ($1 == "TargetVariable") {
61 # Combination of TargetSave and Variable
62 extra_vars[n_extra_vars] = $2
63 n_extra_vars++
65 var = $2
66 sub(" *=.*", "", var)
67 orig_var = var
68 name = var
69 type = var
70 sub("^.*[ *]", "", name)
71 sub(" *" name "$", "", type)
72 target_save_decl[n_target_save] = type " x_" name
73 n_target_save++
75 extra_target_vars[n_extra_target_vars] = name
76 n_extra_target_vars++;
78 else if ($1 == "HeaderInclude") {
79 extra_h_includes[n_extra_h_includes++] = $2;
81 else if ($1 == "SourceInclude") {
82 extra_c_includes[n_extra_c_includes++] = $2;
84 else if ($1 == "Enum") {
85 props = $2
86 name = opt_args("Name", props)
87 type = opt_args("Type", props)
88 unknown_error = opt_args("UnknownError", props)
89 enum_names[n_enums] = name
90 enum_type[name] = type
91 enum_index[name] = n_enums
92 enum_unknown_error[name] = unknown_error
93 enum_help[name] = $3
94 n_enums++
96 else if ($1 == "EnumValue") {
97 props = $2
98 enum_name = opt_args("Enum", props)
99 string = opt_args("String", props)
100 value = opt_args("Value", props)
101 val_flags = "0"
102 val_flags = val_flags \
103 test_flag("Canonical", props, "| CL_ENUM_CANONICAL") \
104 test_flag("DriverOnly", props, "| CL_ENUM_DRIVER_ONLY")
105 enum_data[enum_name] = enum_data[enum_name] \
106 " { " quote string quote ", " value ", " val_flags \
107 " },\n"
109 else {
110 name = opt_args("Mask", $1)
111 if (name == "") {
112 opts[n_opts] = $1
113 flags[n_opts] = $2
114 help[n_opts] = $3
115 for (i = 4; i <= NF; i++)
116 help[n_opts] = help[n_opts] " " $i
117 n_opts++;
122 # Dump that array of options into a C file.
123 END {
124 print "/* This file is auto-generated by optc-gen.awk. */"
125 print ""
126 n_headers = split(header_name, headers, " ")
127 for (i = 1; i <= n_headers; i++)
128 print "#include " quote headers[i] quote
129 print "#include " quote "opts.h" quote
130 print "#include " quote "intl.h" quote
131 print ""
132 print "#ifndef GCC_DRIVER"
133 print "#include " quote "flags.h" quote
134 print "#include " quote "target.h" quote
135 print "#endif /* GCC_DRIVER */"
136 print ""
138 if (n_extra_c_includes > 0) {
139 for (i = 0; i < n_extra_c_includes; i++) {
140 print "#include " quote extra_c_includes[i] quote
142 print ""
145 for (i = 0; i < n_enums; i++) {
146 name = enum_names[i]
147 type = enum_type[name]
148 print "static const struct cl_enum_arg cl_enum_" name \
149 "_data[] = "
150 print "{"
151 print enum_data[name] " { NULL, 0, 0 }"
152 print "};"
153 print ""
154 print "static void"
155 print "cl_enum_" name "_set (void *var, int value)"
156 print "{"
157 print " *((" type " *) var) = (" type ") value;"
158 print "}"
159 print ""
160 print "static int"
161 print "cl_enum_" name "_get (const void *var)"
162 print "{"
163 print " return (int) *((const " type " *) var);"
164 print "}"
165 print ""
168 print "const struct cl_enum cl_enums[] ="
169 print "{"
170 for (i = 0; i < n_enums; i++) {
171 name = enum_names[i]
172 ehelp = enum_help[name]
173 if (ehelp == "")
174 ehelp = "NULL"
175 else
176 ehelp = quote ehelp quote
177 unknown_error = enum_unknown_error[name]
178 if (unknown_error == "")
179 unknown_error = "NULL"
180 else
181 unknown_error = quote unknown_error quote
182 print " {"
183 print " " ehelp ","
184 print " " unknown_error ","
185 print " cl_enum_" name "_data,"
186 print " sizeof (" enum_type[name] "),"
187 print " cl_enum_" name "_set,"
188 print " cl_enum_" name "_get"
189 print " },"
191 print "};"
192 print "const unsigned int cl_enums_count = " n_enums ";"
193 print ""
195 have_save = 0;
196 if (n_extra_target_vars)
197 have_save = 1
199 print "const struct gcc_options global_options_init =\n{"
200 for (i = 0; i < n_extra_vars; i++) {
201 var = extra_vars[i]
202 init = extra_vars[i]
203 if (var ~ "=" ) {
204 sub(".*= *", "", init)
205 } else {
206 init = "0"
208 sub(" *=.*", "", var)
209 name = var
210 sub("^.*[ *]", "", name)
211 sub("\\[.*\\]$", "", name)
212 var_seen[name] = 1
213 print " " init ", /* " name " */"
215 for (i = 0; i < n_opts; i++) {
216 if (flag_set_p("Save", flags[i]))
217 have_save = 1;
219 name = var_name(flags[i]);
220 if (name == "")
221 continue;
223 init = opt_args("Init", flags[i])
224 if (init != "") {
225 if (name in var_init && var_init[name] != init)
226 print "#error multiple initializers for " name
227 var_init[name] = init
230 for (i = 0; i < n_opts; i++) {
231 name = var_name(flags[i]);
232 if (name == "")
233 continue;
235 if (name in var_seen)
236 continue;
238 if (name in var_init)
239 init = var_init[name]
240 else
241 init = "0"
243 print " " init ", /* " name " */"
245 var_seen[name] = 1;
247 for (i = 0; i < n_opts; i++) {
248 name = static_var(opts[i], flags[i]);
249 if (name != "") {
250 print " 0, /* " name " (private state) */"
251 print "#undef x_" name
254 for (i = 0; i < n_opts; i++) {
255 if (flag_set_p("SetByCombined", flags[i]))
256 print " false, /* frontend_set_" var_name(flags[i]) " */"
258 print "};"
259 print ""
260 print "struct gcc_options global_options;"
261 print "struct gcc_options global_options_set;"
262 print ""
264 print "const char * const lang_names[] =\n{"
265 for (i = 0; i < n_langs; i++) {
266 macros[i] = "CL_" langs[i]
267 gsub( "[^" alnum "_]", "X", macros[i] )
268 s = substr(" ", length (macros[i]))
269 print " " quote langs[i] quote ","
272 print " 0\n};\n"
273 print "const unsigned int cl_options_count = N_OPTS;\n"
274 print "const unsigned int cl_lang_count = " n_langs ";\n"
276 print "const struct cl_option cl_options[] =\n{"
278 j = 0
279 for (i = 0; i < n_opts; i++) {
280 back_chain[i] = "N_OPTS";
281 indices[opts[i]] = j;
282 # Combine the flags of identical switches. Switches
283 # appear many times if they are handled by many front
284 # ends, for example.
285 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) {
286 flags[i + 1] = flags[i] " " flags[i + 1];
287 if (help[i + 1] == "")
288 help[i + 1] = help[i]
289 else if (help[i] != "" && help[i + 1] != help[i])
290 print "warning: multiple different help strings for " \
291 opts[i] ":\n\t" help[i] "\n\t" help[i + 1] \
292 | "cat 1>&2"
293 i++;
294 back_chain[i] = "N_OPTS";
295 indices[opts[i]] = j;
297 j++;
300 for (i = 0; i < n_opts; i++) {
301 # With identical flags, pick only the last one. The
302 # earlier loop ensured that it has all flags merged,
303 # and a nonempty help text if one of the texts was nonempty.
304 while( i + 1 != n_opts && opts[i] == opts[i + 1] ) {
305 i++;
308 len = length (opts[i]);
309 enum = opt_enum(opts[i])
311 # If this switch takes joined arguments, back-chain all
312 # subsequent switches to it for which it is a prefix. If
313 # a later switch S is a longer prefix of a switch T, T
314 # will be back-chained to S in a later iteration of this
315 # for() loop, which is what we want.
316 if (flag_set_p("Joined.*", flags[i])) {
317 for (j = i + 1; j < n_opts; j++) {
318 if (substr (opts[j], 1, len) != opts[i])
319 break;
320 back_chain[j] = enum;
324 s = substr(" ", length (opts[i]))
325 if (i + 1 == n_opts)
326 comma = ""
328 if (help[i] == "")
329 hlp = "0"
330 else
331 hlp = quote help[i] quote;
333 missing_arg_error = opt_args("MissingArgError", flags[i])
334 if (missing_arg_error == "")
335 missing_arg_error = "0"
336 else
337 missing_arg_error = quote missing_arg_error quote
340 warn_message = opt_args("Warn", flags[i])
341 if (warn_message == "")
342 warn_message = "0"
343 else
344 warn_message = quote warn_message quote
346 alias_arg = opt_args("Alias", flags[i])
347 if (alias_arg == "") {
348 if (flag_set_p("Ignore", flags[i]))
349 alias_data = "NULL, NULL, OPT_SPECIAL_ignore"
350 else
351 alias_data = "NULL, NULL, N_OPTS"
352 } else {
353 alias_opt = nth_arg(0, alias_arg)
354 alias_posarg = nth_arg(1, alias_arg)
355 alias_negarg = nth_arg(2, alias_arg)
357 if (var_ref(opts[i], flags[i]) != "-1")
358 print "#error Alias setting variable"
360 if (alias_posarg != "" && alias_negarg == "") {
361 if (!flag_set_p("RejectNegative", flags[i]) \
362 && opts[i] ~ "^[Wfm]")
363 print "#error Alias with single argument " \
364 "allowing negative form"
366 if (alias_posarg != "" \
367 && flag_set_p("NegativeAlias", flags[i])) {
368 print "#error Alias with multiple arguments " \
369 "used with NegativeAlias"
372 alias_opt = opt_enum(alias_opt)
373 if (alias_posarg == "")
374 alias_posarg = "NULL"
375 else
376 alias_posarg = quote alias_posarg quote
377 if (alias_negarg == "")
378 alias_negarg = "NULL"
379 else
380 alias_negarg = quote alias_negarg quote
381 alias_data = alias_posarg ", " alias_negarg ", " alias_opt
384 neg = opt_args("Negative", flags[i]);
385 if (neg != "")
386 idx = indices[neg]
387 else {
388 if (flag_set_p("RejectNegative", flags[i]))
389 idx = -1;
390 else {
391 if (opts[i] ~ "^[Wfm]")
392 idx = indices[opts[i]];
393 else
394 idx = -1;
397 # Split the printf after %u to work around an ia64-hp-hpux11.23
398 # awk bug.
399 printf(" { %c-%s%c,\n %s,\n %s,\n %s,\n %s, %s, %u,",
400 quote, opts[i], quote, hlp, missing_arg_error, warn_message,
401 alias_data, back_chain[i], len)
402 printf(" %d,\n", idx)
403 condition = opt_args("Condition", flags[i])
404 cl_flags = switch_flags(flags[i])
405 cl_bit_fields = switch_bit_fields(flags[i])
406 cl_zero_bit_fields = switch_bit_fields("")
407 if (condition != "")
408 printf("#if %s\n" \
409 " %s,\n" \
410 " 0, %s,\n" \
411 "#else\n" \
412 " 0,\n" \
413 " 1 /* Disabled. */, %s,\n" \
414 "#endif\n",
415 condition, cl_flags, cl_bit_fields, cl_zero_bit_fields)
416 else
417 printf(" %s,\n" \
418 " 0, %s,\n",
419 cl_flags, cl_bit_fields)
420 printf(" %s, %s }%s\n", var_ref(opts[i], flags[i]),
421 var_set(flags[i]), comma)
424 print "};"
426 print "";
427 print "#if !defined(GCC_DRIVER) && !defined(IN_LIBGCC2) && !defined(IN_TARGET_LIBS)"
428 print "";
429 print "/* Save optimization variables into a structure. */"
430 print "void";
431 print "cl_optimization_save (struct cl_optimization *ptr, struct gcc_options *opts)";
432 print "{";
434 n_opt_char = 2;
435 n_opt_short = 0;
436 n_opt_int = 0;
437 n_opt_enum = 1;
438 n_opt_other = 0;
439 var_opt_char[0] = "optimize";
440 var_opt_char[1] = "optimize_size";
441 var_opt_range["optimize"] = "0, 255";
442 var_opt_range["optimize_size"] = "0, 255";
443 var_opt_enum[0] = "flag_fp_contract_mode";
445 # Sort by size to mimic how the structure is laid out to be friendlier to the
446 # cache.
448 for (i = 0; i < n_opts; i++) {
449 if (flag_set_p("Optimization", flags[i])) {
450 name = var_name(flags[i])
451 if(name == "")
452 continue;
454 if(name in var_opt_seen)
455 continue;
457 var_opt_seen[name]++;
458 otype = var_type_struct(flags[i]);
459 if (otype ~ "^((un)?signed +)?int *$")
460 var_opt_int[n_opt_int++] = name;
462 else if (otype ~ "^((un)?signed +)?short *$")
463 var_opt_short[n_opt_short++] = name;
465 else if (otype ~ ("^enum +[_" alnum "]+ *"))
466 var_opt_enum[n_opt_enum++] = name;
468 else if (otype ~ "^((un)?signed +)?char *$") {
469 var_opt_char[n_opt_char++] = name;
470 if (otype ~ "^unsigned +char *$")
471 var_opt_range[name] = "0, 255"
472 else if (otype ~ "^signed +char *$")
473 var_opt_range[name] = "-128, 127"
475 else
476 var_opt_other[n_opt_other++] = name;
480 for (i = 0; i < n_opt_char; i++) {
481 name = var_opt_char[i];
482 if (var_opt_range[name] != "")
483 print " gcc_assert (IN_RANGE (opts->x_" name ", " var_opt_range[name] "));";
486 print "";
487 for (i = 0; i < n_opt_other; i++) {
488 print " ptr->x_" var_opt_other[i] " = opts->x_" var_opt_other[i] ";";
491 for (i = 0; i < n_opt_int; i++) {
492 print " ptr->x_" var_opt_int[i] " = opts->x_" var_opt_int[i] ";";
495 for (i = 0; i < n_opt_enum; i++) {
496 print " ptr->x_" var_opt_enum[i] " = opts->x_" var_opt_enum[i] ";";
499 for (i = 0; i < n_opt_short; i++) {
500 print " ptr->x_" var_opt_short[i] " = opts->x_" var_opt_short[i] ";";
503 for (i = 0; i < n_opt_char; i++) {
504 print " ptr->x_" var_opt_char[i] " = opts->x_" var_opt_char[i] ";";
507 print "}";
509 print "";
510 print "/* Restore optimization options from a structure. */";
511 print "void";
512 print "cl_optimization_restore (struct gcc_options *opts, struct cl_optimization *ptr)";
513 print "{";
515 for (i = 0; i < n_opt_other; i++) {
516 print " opts->x_" var_opt_other[i] " = ptr->x_" var_opt_other[i] ";";
519 for (i = 0; i < n_opt_int; i++) {
520 print " opts->x_" var_opt_int[i] " = ptr->x_" var_opt_int[i] ";";
523 for (i = 0; i < n_opt_enum; i++) {
524 print " opts->x_" var_opt_enum[i] " = ptr->x_" var_opt_enum[i] ";";
527 for (i = 0; i < n_opt_short; i++) {
528 print " opts->x_" var_opt_short[i] " = ptr->x_" var_opt_short[i] ";";
531 for (i = 0; i < n_opt_char; i++) {
532 print " opts->x_" var_opt_char[i] " = ptr->x_" var_opt_char[i] ";";
535 print " targetm.override_options_after_change ();";
536 print "}";
538 print "";
539 print "/* Print optimization options from a structure. */";
540 print "void";
541 print "cl_optimization_print (FILE *file,";
542 print " int indent_to,";
543 print " struct cl_optimization *ptr)";
544 print "{";
546 print " fputs (\"\\n\", file);";
547 for (i = 0; i < n_opt_other; i++) {
548 print " if (ptr->x_" var_opt_other[i] ")";
549 print " fprintf (file, \"%*s%s (%#lx)\\n\",";
550 print " indent_to, \"\",";
551 print " \"" var_opt_other[i] "\",";
552 print " (unsigned long)ptr->x_" var_opt_other[i] ");";
553 print "";
556 for (i = 0; i < n_opt_int; i++) {
557 print " if (ptr->x_" var_opt_int[i] ")";
558 print " fprintf (file, \"%*s%s (%#x)\\n\",";
559 print " indent_to, \"\",";
560 print " \"" var_opt_int[i] "\",";
561 print " ptr->x_" var_opt_int[i] ");";
562 print "";
565 for (i = 0; i < n_opt_enum; i++) {
566 print " fprintf (file, \"%*s%s (%#x)\\n\",";
567 print " indent_to, \"\",";
568 print " \"" var_opt_enum[i] "\",";
569 print " (int) ptr->x_" var_opt_enum[i] ");";
570 print "";
573 for (i = 0; i < n_opt_short; i++) {
574 print " if (ptr->x_" var_opt_short[i] ")";
575 print " fprintf (file, \"%*s%s (%#x)\\n\",";
576 print " indent_to, \"\",";
577 print " \"" var_opt_short[i] "\",";
578 print " ptr->x_" var_opt_short[i] ");";
579 print "";
582 for (i = 0; i < n_opt_char; i++) {
583 print " if (ptr->x_" var_opt_char[i] ")";
584 print " fprintf (file, \"%*s%s (%#x)\\n\",";
585 print " indent_to, \"\",";
586 print " \"" var_opt_char[i] "\",";
587 print " ptr->x_" var_opt_char[i] ");";
588 print "";
591 print "}";
593 print "";
594 print "/* Save selected option variables into a structure. */"
595 print "void";
596 print "cl_target_option_save (struct cl_target_option *ptr, struct gcc_options *opts)";
597 print "{";
599 n_target_char = 0;
600 n_target_short = 0;
601 n_target_int = 0;
602 n_target_enum = 0;
603 n_target_other = 0;
605 if (have_save) {
606 for (i = 0; i < n_opts; i++) {
607 if (flag_set_p("Save", flags[i])) {
608 name = var_name(flags[i])
609 if(name == "")
610 name = "target_flags";
612 if(name in var_save_seen)
613 continue;
615 var_save_seen[name]++;
616 otype = var_type_struct(flags[i])
617 if (otype ~ "^((un)?signed +)?int *$")
618 var_target_int[n_target_int++] = name;
620 else if (otype ~ "^((un)?signed +)?short *$")
621 var_target_short[n_target_short++] = name;
623 else if (otype ~ ("^enum +[_" alnum "]+ *$"))
624 var_target_enum[n_target_enum++] = name;
626 else if (otype ~ "^((un)?signed +)?char *$") {
627 var_target_char[n_target_char++] = name;
628 if (otype ~ "^unsigned +char *$")
629 var_target_range[name] = "0, 255"
630 else if (otype ~ "^signed +char *$")
631 var_target_range[name] = "-128, 127"
633 else
634 var_target_other[n_target_other++] = name;
637 } else {
638 var_target_int[n_target_int++] = "target_flags";
641 have_assert = 0;
642 for (i = 0; i < n_target_char; i++) {
643 name = var_target_char[i];
644 if (var_target_range[name] != "") {
645 have_assert = 1;
646 print " gcc_assert (IN_RANGE (opts->x_" name ", " var_target_range[name] "));";
650 if (have_assert)
651 print "";
653 print " if (targetm.target_option.save)";
654 print " targetm.target_option.save (ptr);";
655 print "";
657 for (i = 0; i < n_extra_target_vars; i++) {
658 print " ptr->x_" extra_target_vars[i] " = opts->x_" extra_target_vars[i] ";";
661 for (i = 0; i < n_target_other; i++) {
662 print " ptr->x_" var_target_other[i] " = opts->x_" var_target_other[i] ";";
665 for (i = 0; i < n_target_enum; i++) {
666 print " ptr->x_" var_target_enum[i] " = opts->x_" var_target_enum[i] ";";
669 for (i = 0; i < n_target_int; i++) {
670 print " ptr->x_" var_target_int[i] " = opts->x_" var_target_int[i] ";";
673 for (i = 0; i < n_target_short; i++) {
674 print " ptr->x_" var_target_short[i] " = opts->x_" var_target_short[i] ";";
677 for (i = 0; i < n_target_char; i++) {
678 print " ptr->x_" var_target_char[i] " = opts->x_" var_target_char[i] ";";
681 print "}";
683 print "";
684 print "/* Restore selected current options from a structure. */";
685 print "void";
686 print "cl_target_option_restore (struct gcc_options *opts, struct cl_target_option *ptr)";
687 print "{";
689 for (i = 0; i < n_extra_target_vars; i++) {
690 print " opts->x_" extra_target_vars[i] " = ptr->x_" extra_target_vars[i] ";";
693 for (i = 0; i < n_target_other; i++) {
694 print " opts->x_" var_target_other[i] " = ptr->x_" var_target_other[i] ";";
697 for (i = 0; i < n_target_enum; i++) {
698 print " opts->x_" var_target_enum[i] " = ptr->x_" var_target_enum[i] ";";
701 for (i = 0; i < n_target_int; i++) {
702 print " opts->x_" var_target_int[i] " = ptr->x_" var_target_int[i] ";";
705 for (i = 0; i < n_target_short; i++) {
706 print " opts->x_" var_target_short[i] " = ptr->x_" var_target_short[i] ";";
709 for (i = 0; i < n_target_char; i++) {
710 print " opts->x_" var_target_char[i] " = ptr->x_" var_target_char[i] ";";
713 # This must occur after the normal variables in case the code depends on those
714 # variables.
715 print "";
716 print " if (targetm.target_option.restore)";
717 print " targetm.target_option.restore (ptr);";
719 print "}";
721 print "";
722 print "/* Print optimization options from a structure. */";
723 print "void";
724 print "cl_target_option_print (FILE *file,";
725 print " int indent,";
726 print " struct cl_target_option *ptr)";
727 print "{";
729 print " fputs (\"\\n\", file);";
730 for (i = 0; i < n_target_other; i++) {
731 print " if (ptr->x_" var_target_other[i] ")";
732 print " fprintf (file, \"%*s%s (%#lx)\\n\",";
733 print " indent, \"\",";
734 print " \"" var_target_other[i] "\",";
735 print " (unsigned long)ptr->x_" var_target_other[i] ");";
736 print "";
739 for (i = 0; i < n_target_enum; i++) {
740 print " if (ptr->x_" var_target_enum[i] ")";
741 print " fprintf (file, \"%*s%s (%#x)\\n\",";
742 print " indent, \"\",";
743 print " \"" var_target_enum[i] "\",";
744 print " ptr->x_" var_target_enum[i] ");";
745 print "";
748 for (i = 0; i < n_target_int; i++) {
749 print " if (ptr->x_" var_target_int[i] ")";
750 print " fprintf (file, \"%*s%s (%#x)\\n\",";
751 print " indent, \"\",";
752 print " \"" var_target_int[i] "\",";
753 print " ptr->x_" var_target_int[i] ");";
754 print "";
757 for (i = 0; i < n_target_short; i++) {
758 print " if (ptr->x_" var_target_short[i] ")";
759 print " fprintf (file, \"%*s%s (%#x)\\n\",";
760 print " indent, \"\",";
761 print " \"" var_target_short[i] "\",";
762 print " ptr->x_" var_target_short[i] ");";
763 print "";
766 for (i = 0; i < n_target_char; i++) {
767 print " if (ptr->x_" var_target_char[i] ")";
768 print " fprintf (file, \"%*s%s (%#x)\\n\",";
769 print " indent, \"\",";
770 print " \"" var_target_char[i] "\",";
771 print " ptr->x_" var_target_char[i] ");";
772 print "";
775 print "";
776 print " if (targetm.target_option.print)";
777 print " targetm.target_option.print (file, indent, ptr);";
779 print "}";
780 print "#endif";