annotate gcc/opt-functions.awk @ 143:76e1cf5455ef

add cbc_gc test
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 19:24:05 +0900
parents 84e7813d76e9
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1 # Copyright (C) 2003-2018 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 # Contributed by Kelley Cook, June 2004.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 # Original code from Neil Booth, May 2003.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 #
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 # This program is free software; you can redistribute it and/or modify it
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 # under the terms of the GNU General Public License as published by the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 # Free Software Foundation; either version 3, or (at your option) any
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 # later version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 #
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 # This program is distributed in the hope that it will be useful,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 # GNU General Public License for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 #
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 # along with this program; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 # <http://www.gnu.org/licenses/>.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19 # Some common subroutines for use by opt[ch]-gen.awk.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
21 # Define some helpful character classes, for portability.
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
22 BEGIN {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
23 lower = "abcdefghijklmnopqrstuvwxyz"
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
24 upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
25 digit = "0123456789"
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
26 alnum = lower "" upper "" digit
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
27 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
28
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29 # Return nonzero if FLAGS contains a flag matching REGEX.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
30 function flag_set_p(regex, flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
31 {
111
kono
parents: 67
diff changeset
32 # Ignore the arguments of flags with arguments.
kono
parents: 67
diff changeset
33 gsub ("\\([^)]+\\)", "", flags);
kono
parents: 67
diff changeset
34 return (" " flags " ") ~ (" " regex " ")
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
35 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
36
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
37 # Return STRING if FLAGS contains a flag matching regexp REGEX,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
38 # otherwise return the empty string.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 function test_flag(regex, flags, string)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
40 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
41 if (flag_set_p(regex, flags))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
42 return string
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
43 return ""
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
44 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45
111
kono
parents: 67
diff changeset
46 # Return a field initializer, with trailing comma, for a field that is
kono
parents: 67
diff changeset
47 # 1 if FLAGS contains a flag matching REGEX and 0 otherwise.
kono
parents: 67
diff changeset
48 function flag_init(regex, flags)
kono
parents: 67
diff changeset
49 {
kono
parents: 67
diff changeset
50 if (flag_set_p(regex, flags))
kono
parents: 67
diff changeset
51 return "1 /* " regex " */, "
kono
parents: 67
diff changeset
52 else
kono
parents: 67
diff changeset
53 return "0, "
kono
parents: 67
diff changeset
54 }
kono
parents: 67
diff changeset
55
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
56 # If FLAGS contains a "NAME(...argument...)" flag, return the value
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
57 # of the argument. Return the empty string otherwise.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 function opt_args(name, flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
59 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
60 flags = " " flags
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
61 if (flags !~ " " name "\\(")
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
62 return ""
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
63 sub(".* " name "\\(", "", flags)
111
kono
parents: 67
diff changeset
64 if (flags ~ "^[{]")
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
65 {
111
kono
parents: 67
diff changeset
66 sub ("^[{]", "", flags)
kono
parents: 67
diff changeset
67 sub ("}\\).*", "", flags)
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
68 }
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
69 else
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
70 sub("\\).*", "", flags)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
71
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 return flags
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
73 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
74
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
75 # Return the Nth comma-separated element of S. Return the empty string
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 # if S does not contain N elements.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
77 function nth_arg(n, s)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
78 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
79 while (n-- > 0) {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
80 if (s !~ ",")
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
81 return ""
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
82 sub("[^,]*, *", "", s)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
83 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
84 sub(",.*", "", s)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
85 return s
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
86 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
87
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
88 # Return a bitmask of CL_* values for option flags FLAGS.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
89 function switch_flags (flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
90 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
91 result = "0"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
92 for (j = 0; j < n_langs; j++) {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
93 regex = langs[j]
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
94 gsub ( "\\+", "\\+", regex )
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
95 result = result test_flag(regex, flags, " | " macros[j])
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
96 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
97 result = result \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
98 test_flag("Common", flags, " | CL_COMMON") \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
99 test_flag("Target", flags, " | CL_TARGET") \
111
kono
parents: 67
diff changeset
100 test_flag("PchIgnore", flags, " | CL_PCH_IGNORE") \
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
101 test_flag("Driver", flags, " | CL_DRIVER") \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
102 test_flag("Joined", flags, " | CL_JOINED") \
111
kono
parents: 67
diff changeset
103 test_flag("JoinedOrMissing", flags, " | CL_JOINED") \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
104 test_flag("Separate", flags, " | CL_SEPARATE") \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
105 test_flag("Undocumented", flags, " | CL_UNDOCUMENTED") \
111
kono
parents: 67
diff changeset
106 test_flag("NoDWARFRecord", flags, " | CL_NO_DWARF_RECORD") \
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
107 test_flag("Warning", flags, " | CL_WARNING") \
111
kono
parents: 67
diff changeset
108 test_flag("(Optimization|PerFunction)", flags, " | CL_OPTIMIZATION")
kono
parents: 67
diff changeset
109 sub( "^0 \\| ", "", result )
kono
parents: 67
diff changeset
110 return result
kono
parents: 67
diff changeset
111 }
kono
parents: 67
diff changeset
112
kono
parents: 67
diff changeset
113 # Return bit-field initializers for option flags FLAGS.
kono
parents: 67
diff changeset
114 function switch_bit_fields (flags)
kono
parents: 67
diff changeset
115 {
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
116 uinteger_flag = ""
111
kono
parents: 67
diff changeset
117 vn = var_name(flags);
kono
parents: 67
diff changeset
118 if (host_wide_int[vn] == "yes")
kono
parents: 67
diff changeset
119 hwi = "Host_Wide_Int"
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
120 else if (flag_set_p("Host_Wide_Int", flags)) {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
121 hwi = "Host_Wide_Int"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
122 uinteger_flag = flag_init("UInteger", flags)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
123 }
111
kono
parents: 67
diff changeset
124 else
kono
parents: 67
diff changeset
125 hwi = ""
kono
parents: 67
diff changeset
126 result = ""
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
127 sep_args = opt_args("Args", flags)
111
kono
parents: 67
diff changeset
128 if (sep_args == "")
kono
parents: 67
diff changeset
129 sep_args = 0
kono
parents: 67
diff changeset
130 else
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
131 sep_args--
111
kono
parents: 67
diff changeset
132 result = result sep_args ", "
kono
parents: 67
diff changeset
133
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
134 if (uinteger_flag == "")
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
135 uinteger_flag = flag_init("UInteger", flags)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
136
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
137 hwi_flag = flag_init("Host_Wide_Int", hwi)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
138 byte_size_flag = flag_init("ByteSize", flags)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
139
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
140 if (substr(byte_size_flag, 1, 1) != "0" \
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
141 && substr(uinteger_flag, 1, 1) == "0" \
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
142 && substr(hwi_flag, 1, 1) == "0")
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
143 print "#error only UInteger amd Host_Wide_Int options can specify a ByteSize suffix"
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
144
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
145 # The following flags need to be in the same order as
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
146 # the corresponding members of struct cl_option defined
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
147 # in gcc/opts.h.
111
kono
parents: 67
diff changeset
148 result = result \
kono
parents: 67
diff changeset
149 flag_init("SeparateAlias", flags) \
kono
parents: 67
diff changeset
150 flag_init("NegativeAlias", flags) \
kono
parents: 67
diff changeset
151 flag_init("NoDriverArg", flags) \
kono
parents: 67
diff changeset
152 flag_init("RejectDriver", flags) \
kono
parents: 67
diff changeset
153 flag_init("RejectNegative", flags) \
kono
parents: 67
diff changeset
154 flag_init("JoinedOrMissing", flags) \
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
155 uinteger_flag \
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
156 hwi_flag \
111
kono
parents: 67
diff changeset
157 flag_init("ToLower", flags) \
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
158 flag_init("Report", flags) \
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
159 byte_size_flag
111
kono
parents: 67
diff changeset
160
kono
parents: 67
diff changeset
161 sub(", $", "", result)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
162 return result
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
163 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
164
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
165 # If FLAGS includes a Var flag, return the name of the variable it specifies.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
166 # Return the empty string otherwise.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
167 function var_name(flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
168 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
169 return nth_arg(0, opt_args("Var", flags))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
170 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
171
111
kono
parents: 67
diff changeset
172 # Return the name of the variable if FLAGS has a HOST_WIDE_INT variable.
kono
parents: 67
diff changeset
173 # Return the empty string otherwise.
kono
parents: 67
diff changeset
174 function host_wide_int_var_name(flags)
kono
parents: 67
diff changeset
175 {
kono
parents: 67
diff changeset
176 split (flags, array, "[ \t]+")
kono
parents: 67
diff changeset
177 if (array[1] == "HOST_WIDE_INT")
kono
parents: 67
diff changeset
178 return array[2]
kono
parents: 67
diff changeset
179 else
kono
parents: 67
diff changeset
180 return ""
kono
parents: 67
diff changeset
181 }
kono
parents: 67
diff changeset
182
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
183 # Return true if the option described by FLAGS has a globally-visible state.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
184 function global_state_p(flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
185 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
186 return (var_name(flags) != "" \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
187 || opt_args("Mask", flags) != "" \
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
188 || opt_args("InverseMask", flags) != "")
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
189 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
190
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
191 # Return true if the option described by FLAGS must have some state
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
192 # associated with it.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
193 function needs_state_p(flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
194 {
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
195 return (flag_set_p("Target", flags) \
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
196 && !flag_set_p("Alias.*", flags) \
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
197 && !flag_set_p("Ignore", flags))
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
198 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
199
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
200 # If FLAGS describes an option that needs state without a public
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
201 # variable name, return the name of that field, minus the initial
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
202 # "x_", otherwise return "". NAME is the name of the option.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
203 function static_var(name, flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
204 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
205 if (global_state_p(flags) || !needs_state_p(flags))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
206 return ""
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
207 gsub ("[^" alnum "]", "_", name)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
208 return "VAR_" name
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
209 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
210
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
211 # Return the type of variable that should be associated with the given flags.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
212 function var_type(flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
213 {
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
214 if (flag_set_p("Defer", flags))
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
215 return "void *"
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
216 else if (flag_set_p("Enum.*", flags)) {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
217 en = opt_args("Enum", flags);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
218 return enum_type[en] " "
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
219 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
220 else if (!flag_set_p("Joined.*", flags) && !flag_set_p("Separate", flags))
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
221 return "int "
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
222 else if (flag_set_p("Host_Wide_Int", flags))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
223 return "HOST_WIDE_INT "
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
224 else if (flag_set_p("UInteger", flags))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
225 return "int "
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
226 else
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
227 return "const char *"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
228 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
229
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
230 # Return the type of variable that should be associated with the given flags
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
231 # for use within a structure. Simple variables are changed to signed char
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
232 # type instead of int to save space.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
233 function var_type_struct(flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
234 {
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
235 if (flag_set_p("UInteger", flags)) {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
236 if (host_wide_int[var_name(flags)] == "yes")
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
237 return "HOST_WIDE_INT ";
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
238 if (flag_set_p("ByteSize", flags))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
239 return "HOST_WIDE_INT "
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
240 return "int "
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
241 }
111
kono
parents: 67
diff changeset
242 else if (flag_set_p("Enum.*", flags)) {
kono
parents: 67
diff changeset
243 en = opt_args("Enum", flags);
kono
parents: 67
diff changeset
244 return enum_type[en] " "
kono
parents: 67
diff changeset
245 }
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
246 else if (!flag_set_p("Joined.*", flags) && !flag_set_p("Separate", flags)) {
111
kono
parents: 67
diff changeset
247 if (flag_set_p(".*Mask.*", flags)) {
kono
parents: 67
diff changeset
248 if (host_wide_int[var_name(flags)] == "yes")
kono
parents: 67
diff changeset
249 return "HOST_WIDE_INT "
kono
parents: 67
diff changeset
250 else
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
251 return "/* - */ int "
111
kono
parents: 67
diff changeset
252 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
253 else
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
254 return "signed char "
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
255 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
256 else
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
257 return "const char *"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
258 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
259
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
260 # Given that an option has flags FLAGS, return an initializer for the
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
261 # "var_enum", "var_type" and "var_value" fields of its cl_options[] entry.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
262 function var_set(flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
263 {
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
264 if (flag_set_p("Defer", flags))
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
265 return "0, CLVC_DEFER, 0"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
266 s = nth_arg(1, opt_args("Var", flags))
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
267 if (s != "")
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
268 return "0, CLVC_EQUAL, " s
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
269 s = opt_args("Mask", flags);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
270 if (s != "") {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
271 vn = var_name(flags);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
272 if (vn)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
273 return "0, CLVC_BIT_SET, OPTION_MASK_" s
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
274 else
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
275 return "0, CLVC_BIT_SET, MASK_" s
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
276 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
277 s = nth_arg(0, opt_args("InverseMask", flags));
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
278 if (s != "") {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
279 vn = var_name(flags);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
280 if (vn)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
281 return "0, CLVC_BIT_CLEAR, OPTION_MASK_" s
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
282 else
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
283 return "0, CLVC_BIT_CLEAR, MASK_" s
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
284 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
285 if (flag_set_p("Enum.*", flags)) {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
286 en = opt_args("Enum", flags);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
287 return enum_index[en] ", CLVC_ENUM, 0"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
288 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
289 if (var_type(flags) == "const char *")
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
290 return "0, CLVC_STRING, 0"
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
291 if (flag_set_p("ByteSize", flags))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
292 return "0, CLVC_SIZE, 0"
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
293 return "0, CLVC_BOOLEAN, 0"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
294 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
295
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
296 # Given that an option called NAME has flags FLAGS, return an initializer
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
297 # for the "flag_var" field of its cl_options[] entry.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
298 function var_ref(name, flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
299 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
300 name = var_name(flags) static_var(name, flags)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
301 if (name != "")
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
302 return "offsetof (struct gcc_options, x_" name ")"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
303 if (opt_args("Mask", flags) != "")
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
304 return "offsetof (struct gcc_options, x_target_flags)"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
305 if (opt_args("InverseMask", flags) != "")
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
306 return "offsetof (struct gcc_options, x_target_flags)"
111
kono
parents: 67
diff changeset
307 return "(unsigned short) -1"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
308 }
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
309
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
310 # Given the option called NAME return a sanitized version of its name.
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
311 function opt_sanitized_name(name)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
312 {
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
313 gsub ("[^" alnum "]", "_", name)
63
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
314 return name
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
315 }
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
316
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
317 # Given the option called NAME return the appropriate enum for it.
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
318 function opt_enum(name)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
319 {
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
320 return "OPT_" opt_sanitized_name(name)
b7f97abdc517 update gcc from gcc-4.5.0 to gcc-4.6
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
321 }
111
kono
parents: 67
diff changeset
322
kono
parents: 67
diff changeset
323 # Given the language called NAME return a sanitized version of its name.
kono
parents: 67
diff changeset
324 function lang_sanitized_name(name)
kono
parents: 67
diff changeset
325 {
kono
parents: 67
diff changeset
326 gsub( "[^" alnum "_]", "X", name )
kono
parents: 67
diff changeset
327 return name
kono
parents: 67
diff changeset
328 }
kono
parents: 67
diff changeset
329
kono
parents: 67
diff changeset
330 # Search for a valid var_name among all OPTS equal to option NAME.
kono
parents: 67
diff changeset
331 # If not found, return "".
kono
parents: 67
diff changeset
332 function search_var_name(name, opt_numbers, opts, flags, n_opts)
kono
parents: 67
diff changeset
333 {
kono
parents: 67
diff changeset
334 opt_var_name = var_name(flags[opt_numbers[name]]);
kono
parents: 67
diff changeset
335 if (opt_var_name != "") {
kono
parents: 67
diff changeset
336 return opt_var_name;
kono
parents: 67
diff changeset
337 }
kono
parents: 67
diff changeset
338 for (k = 0; k < n_opts; k++) {
kono
parents: 67
diff changeset
339 if (opts[k] == name && var_name(flags[k]) != "") {
kono
parents: 67
diff changeset
340 return var_name(flags[k]);
kono
parents: 67
diff changeset
341 }
kono
parents: 67
diff changeset
342 }
kono
parents: 67
diff changeset
343 return ""
kono
parents: 67
diff changeset
344 }
kono
parents: 67
diff changeset
345
kono
parents: 67
diff changeset
346 function integer_range_info(range_option, init, option)
kono
parents: 67
diff changeset
347 {
kono
parents: 67
diff changeset
348 if (range_option != "") {
kono
parents: 67
diff changeset
349 start = nth_arg(0, range_option);
kono
parents: 67
diff changeset
350 end = nth_arg(1, range_option);
kono
parents: 67
diff changeset
351 if (init != "" && init != "-1" && (init < start || init > end))
kono
parents: 67
diff changeset
352 print "#error initial value " init " of '" option "' must be in range [" start "," end "]"
kono
parents: 67
diff changeset
353 return start ", " end
kono
parents: 67
diff changeset
354 }
kono
parents: 67
diff changeset
355 else
kono
parents: 67
diff changeset
356 return "-1, -1"
kono
parents: 67
diff changeset
357 }
kono
parents: 67
diff changeset
358
kono
parents: 67
diff changeset
359 # Handle LangEnabledBy(ENABLED_BY_LANGS, ENABLEDBY_NAME, ENABLEDBY_POSARG,
kono
parents: 67
diff changeset
360 # ENABLEDBY_NEGARG). This function does not return anything.
kono
parents: 67
diff changeset
361 function lang_enabled_by(enabledby_langs, enabledby_name, enabledby_posarg, enabledby_negarg)
kono
parents: 67
diff changeset
362 {
kono
parents: 67
diff changeset
363 n_enabledby_arg_langs = split(enabledby_langs, enabledby_arg_langs, " ");
kono
parents: 67
diff changeset
364 if (enabledby_posarg != "" && enabledby_negarg != "") {
kono
parents: 67
diff changeset
365 with_args = "," enabledby_posarg "," enabledby_negarg
kono
parents: 67
diff changeset
366 } else if (enabledby_posarg == "" && enabledby_negarg == "") {
kono
parents: 67
diff changeset
367 with_args = ""
kono
parents: 67
diff changeset
368 } else {
kono
parents: 67
diff changeset
369 print "#error " opts[i] " LangEnabledBy("enabledby_langs","enabledby_name", " \
kono
parents: 67
diff changeset
370 enabledby_posarg", " enabledby_negargs \
kono
parents: 67
diff changeset
371 ") with three arguments, it should have either 2 or 4"
kono
parents: 67
diff changeset
372 }
kono
parents: 67
diff changeset
373
kono
parents: 67
diff changeset
374 n_enabledby_array = split(enabledby_name, enabledby_array, " \\|\\| ");
kono
parents: 67
diff changeset
375 for (k = 1; k <= n_enabledby_array; k++) {
kono
parents: 67
diff changeset
376 enabledby_index = opt_numbers[enabledby_array[k]];
kono
parents: 67
diff changeset
377 if (enabledby_index == "") {
kono
parents: 67
diff changeset
378 print "#error " opts[i] " LangEnabledBy("enabledby_langs","enabledby_name", " \
kono
parents: 67
diff changeset
379 enabledby_posarg", " enabledby_negargs"), unknown option '" enabledby_name "'"
kono
parents: 67
diff changeset
380 } else {
kono
parents: 67
diff changeset
381 for (j = 1; j <= n_enabledby_arg_langs; j++) {
kono
parents: 67
diff changeset
382 lang_name = lang_sanitized_name(enabledby_arg_langs[j]);
kono
parents: 67
diff changeset
383 lang_index = lang_numbers[enabledby_arg_langs[j]];
kono
parents: 67
diff changeset
384 if (enables[lang_name,enabledby_array[k]] == "") {
kono
parents: 67
diff changeset
385 enabledby[lang_name,n_enabledby_lang[lang_index]] = enabledby_array[k];
kono
parents: 67
diff changeset
386 n_enabledby_lang[lang_index]++;
kono
parents: 67
diff changeset
387 }
kono
parents: 67
diff changeset
388 enables[lang_name,enabledby_array[k]] \
kono
parents: 67
diff changeset
389 = enables[lang_name,enabledby_array[k]] opts[i] with_args ";";
kono
parents: 67
diff changeset
390 }
kono
parents: 67
diff changeset
391 }
kono
parents: 67
diff changeset
392 }
kono
parents: 67
diff changeset
393 }