Skip to content

Commit ed5b325

Browse files
committedMay 14, 2018
Revert "[Option] Fix PR37006 prefix choice in findNearest"
Summary: This revision causes build failures in PS4 and ppc64le buildbots (for example, http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/29988). I'll revert for now and try to diagnose the issue. Test Plan: check-llvm check-clang llvm-svn: 332304
1 parent c198437 commit ed5b325

File tree

3 files changed

+24
-29
lines changed

3 files changed

+24
-29
lines changed
 

‎llvm/lib/Option/OptTable.cpp

+24-24
Original file line numberDiff line numberDiff line change
@@ -252,33 +252,38 @@ unsigned OptTable::findNearest(StringRef Option, std::string &NearestString,
252252
unsigned MinimumLength) const {
253253
assert(!Option.empty());
254254

255-
// Consider each [option prefix + option name] pair as a candidate, finding
256-
// the closest match.
255+
// Consider each option as a candidate, finding the closest match.
257256
unsigned BestDistance = UINT_MAX;
258257
for (const Info &CandidateInfo :
259258
ArrayRef<Info>(OptionInfos).drop_front(FirstSearchableIndex)) {
260259
StringRef CandidateName = CandidateInfo.Name;
261260

262-
// We can eliminate some option prefix/name pairs as candidates right away:
263-
// * Ignore option candidates with empty names, such as "--", or names
264-
// that do not meet the minimum length.
261+
// Ignore option candidates with empty names, such as "--", or names
262+
// that do not meet the minimum length.
265263
if (CandidateName.empty() || CandidateName.size() < MinimumLength)
266264
continue;
267265

268-
// * If FlagsToInclude were specified, ignore options that don't include
269-
// those flags.
266+
// If FlagsToInclude were specified, ignore options that don't include
267+
// those flags.
270268
if (FlagsToInclude && !(CandidateInfo.Flags & FlagsToInclude))
271269
continue;
272-
// * Ignore options that contain the FlagsToExclude.
270+
// Ignore options that contain the FlagsToExclude.
273271
if (CandidateInfo.Flags & FlagsToExclude)
274272
continue;
275273

276-
// * Ignore positional argument option candidates (which do not
277-
// have prefixes).
274+
// Ignore positional argument option candidates (which do not
275+
// have prefixes).
278276
if (!CandidateInfo.Prefixes)
279277
continue;
278+
// Find the most appropriate prefix. For example, if a user asks for
279+
// "--helm", suggest "--help" over "-help".
280+
StringRef Prefix = CandidateInfo.Prefixes[0];
281+
for (int P = 1; CandidateInfo.Prefixes[P]; P++) {
282+
if (Option.startswith(CandidateInfo.Prefixes[P]))
283+
Prefix = CandidateInfo.Prefixes[P];
284+
}
280285

281-
// Now check if the candidate ends with a character commonly used when
286+
// Check if the candidate ends with a character commonly used when
282287
// delimiting an option from its value, such as '=' or ':'. If it does,
283288
// attempt to split the given option based on that delimiter.
284289
std::string Delimiter = "";
@@ -292,19 +297,14 @@ unsigned OptTable::findNearest(StringRef Option, std::string &NearestString,
292297
else
293298
std::tie(LHS, RHS) = Option.split(Last);
294299

295-
// Consider each possible prefix for each candidate to find the most
296-
// appropriate one. For example, if a user asks for "--helm", suggest
297-
// "--help" over "-help".
298-
for (int P = 0; const char *const CandidatePrefix = CandidateInfo.Prefixes[P]; P++) {
299-
std::string NormalizedName = (LHS + Delimiter).str();
300-
StringRef Candidate = (CandidatePrefix + CandidateName).str();
301-
unsigned Distance =
302-
Candidate.edit_distance(NormalizedName, /*AllowReplacements=*/true,
303-
/*MaxEditDistance=*/BestDistance);
304-
if (Distance < BestDistance) {
305-
BestDistance = Distance;
306-
NearestString = (Candidate + RHS).str();
307-
}
300+
std::string NormalizedName =
301+
(LHS.drop_front(Prefix.size()) + Delimiter).str();
302+
unsigned Distance =
303+
CandidateName.edit_distance(NormalizedName, /*AllowReplacements=*/true,
304+
/*MaxEditDistance=*/BestDistance);
305+
if (Distance < BestDistance) {
306+
BestDistance = Distance;
307+
NearestString = (Prefix + CandidateName + RHS).str();
308308
}
309309
}
310310
return BestDistance;

‎llvm/unittests/Option/OptionParsingTest.cpp

-4
Original file line numberDiff line numberDiff line change
@@ -283,10 +283,6 @@ TEST(Option, FindNearest) {
283283
EXPECT_EQ(Nearest, "-blorp");
284284
EXPECT_EQ(1U, T.findNearest("--blorm", Nearest));
285285
EXPECT_EQ(Nearest, "--blorp");
286-
EXPECT_EQ(1U, T.findNearest("-blarg", Nearest));
287-
EXPECT_EQ(Nearest, "-blarn");
288-
EXPECT_EQ(1U, T.findNearest("--blarm", Nearest));
289-
EXPECT_EQ(Nearest, "--blarn");
290286
EXPECT_EQ(1U, T.findNearest("-fjormp", Nearest));
291287
EXPECT_EQ(Nearest, "--fjormp");
292288

‎llvm/unittests/Option/Opts.td

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ def Slurp : Option<["-"], "slurp", KIND_REMAINING_ARGS>;
3030
def SlurpJoined : Option<["-"], "slurpjoined", KIND_REMAINING_ARGS_JOINED>;
3131

3232
def Blorp : Flag<["-", "--"], "blorp">, HelpText<"The blorp option">, Flags<[OptFlag1]>;
33-
def Blarn : Flag<["--", "-"], "blarn">, HelpText<"The blarn option">, Flags<[OptFlag1]>;
3433
def Cramb : Joined<["/"], "cramb:">, HelpText<"The cramb option">, MetaVarName<"CRAMB">, Flags<[OptFlag1]>;
3534
def Doopf1 : Flag<["-"], "doopf1">, HelpText<"The doopf1 option">, Flags<[OptFlag1]>;
3635
def Doopf2 : Flag<["-"], "doopf2">, HelpText<"The doopf2 option">, Flags<[OptFlag2]>;

0 commit comments

Comments
 (0)
Please sign in to comment.