1 /* Command line option handling.
2 Copyright (C) 2006, 2007 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
26 /* Perform a binary search to find which option the command-line INPUT
27 matches. Returns its index in the option array, and N_OPTS
28 (cl_options_count) on failure.
30 This routine is quite subtle. A normal binary search is not good
31 enough because some options can be suffixed with an argument, and
32 multiple sub-matches can occur, e.g. input of "-pedantic" matching
33 the initial substring of "-pedantic-errors".
35 A more complicated example is -gstabs. It should match "-g" with
36 an argument of "stabs". Suppose, however, that the number and list
37 of switches are such that the binary search tests "-gen-decls"
38 before having tested "-g". This doesn't match, and as "-gen-decls"
39 is less than "-gstabs", it will become the lower bound of the
40 binary search range, and "-g" will never be seen. To resolve this
41 issue, 'optc-gen.awk' makes "-gen-decls" point, via the back_chain member,
42 to "-g" so that failed searches that end between "-gen-decls" and
43 the lexicographically subsequent switch know to go back and see if
44 "-g" causes a match (which it does in this example).
46 This search is done in such a way that the longest match for the
47 front end in question wins. If there is no match for the current
48 front end, the longest match for a different front end is returned
49 (or N_OPTS if none) and the caller emits an error message. */
51 find_opt (const char *input
, int lang_mask
)
53 size_t mn
, mx
, md
, opt_len
;
54 size_t match_wrong_lang
;
58 mx
= cl_options_count
;
60 /* Find mn such this lexicographical inequality holds:
61 cl_options[mn] <= input < cl_options[mn + 1]. */
65 opt_len
= cl_options
[md
].opt_len
;
66 comp
= strncmp (input
, cl_options
[md
].opt_text
+ 1, opt_len
);
74 /* This is the switch that is the best match but for a different
75 front end, or cl_options_count if there is no match at all. */
76 match_wrong_lang
= cl_options_count
;
78 /* Backtrace the chain of possible matches, returning the longest
79 one, if any, that fits best. With current GCC switches, this
80 loop executes at most twice. */
83 const struct cl_option
*opt
= &cl_options
[mn
];
85 /* Is the input either an exact match or a prefix that takes a
87 if (!strncmp (input
, opt
->opt_text
+ 1, opt
->opt_len
)
88 && (input
[opt
->opt_len
] == '\0' || (opt
->flags
& CL_JOINED
)))
90 /* If language is OK, return it. */
91 if (opt
->flags
& lang_mask
)
94 /* If we haven't remembered a prior match, remember this
95 one. Any prior match is necessarily better. */
96 if (match_wrong_lang
== cl_options_count
)
97 match_wrong_lang
= mn
;
100 /* Try the next possibility. This is cl_options_count if there
102 mn
= opt
->back_chain
;
104 while (mn
!= cl_options_count
);
106 /* Return the best wrong match, or cl_options_count if none. */
107 return match_wrong_lang
;
110 /* Return true if NEXT_OPT_IDX cancels OPT_IDX. Return false if the
111 next one is the same as ORIG_NEXT_OPT_IDX. */
114 cancel_option (int opt_idx
, int next_opt_idx
, int orig_next_opt_idx
)
116 /* An option can be canceled by the same option or an option with
118 if (cl_options
[next_opt_idx
].neg_index
== opt_idx
)
121 if (cl_options
[next_opt_idx
].neg_index
!= orig_next_opt_idx
)
122 return cancel_option (opt_idx
, cl_options
[next_opt_idx
].neg_index
,
128 /* Filter out options canceled by the ones after them. */
131 prune_options (int *argcp
, char ***argvp
)
134 int *options
= XNEWVEC (int, argc
);
135 char **argv
= XNEWVEC (char *, argc
);
136 int i
, arg_count
, need_prune
= 0;
137 const struct cl_option
*option
;
140 /* Scan all arguments. */
141 for (i
= 1; i
< argc
; i
++)
144 const char *opt
= (*argvp
) [i
];
146 opt_index
= find_opt (opt
+ 1, -1);
147 if (opt_index
== cl_options_count
148 && (opt
[1] == 'W' || opt
[1] == 'f' || opt
[1] == 'm')
149 && opt
[2] == 'n' && opt
[3] == 'o' && opt
[4] == '-')
153 /* Drop the "no-" from negative switches. */
154 size_t len
= strlen (opt
) - 3;
156 dup
= XNEWVEC (char, len
+ 1);
159 memcpy (dup
+ 2, opt
+ 5, len
- 2 + 1);
162 opt_index
= find_opt (opt
+ 1, -1);
166 if (opt_index
== cl_options_count
)
173 option
= &cl_options
[opt_index
];
174 if (option
->neg_index
< 0)
177 /* Skip joined switches. */
178 if ((option
->flags
& CL_JOINED
))
181 /* Reject negative form of switches that don't take negatives as
183 if (!value
&& (option
->flags
& CL_REJECT_NEGATIVE
))
186 options
[i
] = (int) opt_index
;
187 need_prune
|= options
[i
];
193 /* Remove arguments which are negated by others after them. */
194 argv
[0] = (*argvp
) [0];
196 for (i
= 1; i
< argc
; i
++)
200 opt_idx
= options
[i
];
204 for (j
= i
+ 1; j
< argc
; j
++)
206 next_opt_idx
= options
[j
];
208 && cancel_option (opt_idx
, next_opt_idx
,
219 argv
[arg_count
] = (*argvp
) [i
];
224 if (arg_count
!= argc
)