Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit f1eaab1

Browse files
committed
PR14303: Add a NoDriverOption flag to those options which are not accepted by
the driver (the options defined in CC1Options.td) and exclude their help from "clang --help". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167638 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent b328ee5 commit f1eaab1

File tree

8 files changed

+26
-17
lines changed

8 files changed

+26
-17
lines changed

include/clang/Driver/CC1Options.td

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//
1212
//===----------------------------------------------------------------------===//
1313

14-
let Flags = [CC1Option] in {
14+
let Flags = [CC1Option, NoDriverOption] in {
1515

1616
//===----------------------------------------------------------------------===//
1717
// Target Options

include/clang/Driver/OptParser.td

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ def NoForward : OptionFlag;
8888
// CC1Option - This option should be accepted by clang -cc1.
8989
def CC1Option : OptionFlag;
9090

91+
// NoDriverOption - This option should not be accepted by the driver.
92+
def NoDriverOption : OptionFlag;
93+
9194
// Define the option group class.
9295

9396
class OptionGroup<string name> {

include/clang/Driver/OptTable.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,6 @@ namespace driver {
9999
return getInfo(id).GroupID;
100100
}
101101

102-
/// \brief Should the help for the given option be hidden by default.
103-
bool isOptionHelpHidden(OptSpecifier id) const;
104-
105102
/// \brief Get the help text to use to describe this option.
106103
const char *getOptionHelpText(OptSpecifier id) const {
107104
return getInfo(id).HelpText;
@@ -151,9 +148,12 @@ namespace driver {
151148
/// \param OS - The stream to write the help text to.
152149
/// \param Name - The name to use in the usage line.
153150
/// \param Title - The title to use in the usage line.
154-
/// \param ShowHidden - Whether help-hidden arguments should be shown.
151+
/// \param FlagsToInclude - If non-zero, only include options with any
152+
/// of these flags set.
153+
/// \param FlagsToExclude - Exclude options with any of these flags set.
155154
void PrintHelp(raw_ostream &OS, const char *Name,
156-
const char *Title, bool ShowHidden = false) const;
155+
const char *Title, unsigned short FlagsToInclude = 0,
156+
unsigned short FlagsToExclude = 0) const;
157157
};
158158
}
159159
}

include/clang/Driver/Option.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ namespace options {
3636
NoArgumentUnused = (1 << 6),
3737
NoForward = (1 << 7),
3838
Unsupported = (1 << 8),
39-
CC1Option = (1 << 9)
39+
CC1Option = (1 << 9),
40+
NoDriverOption = (1 << 10)
4041
};
4142
}
4243

lib/Driver/Driver.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,9 @@ void Driver::PrintOptions(const ArgList &Args) const {
564564

565565
void Driver::PrintHelp(bool ShowHidden) const {
566566
getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(),
567-
ShowHidden);
567+
/*Include*/0,
568+
/*Exclude*/options::NoDriverOption |
569+
(ShowHidden ? 0 : options::HelpHidden));
568570
}
569571

570572
void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const {

lib/Driver/OptTable.cpp

+4-6
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,6 @@ const Option OptTable::getOption(OptSpecifier Opt) const {
163163
return Option(&getInfo(id), this);
164164
}
165165

166-
bool OptTable::isOptionHelpHidden(OptSpecifier id) const {
167-
return getInfo(id).Flags & options::HelpHidden;
168-
}
169-
170166
static bool isInput(const llvm::StringSet<> &Prefixes, StringRef Arg) {
171167
if (Arg == "-")
172168
return true;
@@ -350,7 +346,8 @@ static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) {
350346
}
351347

352348
void OptTable::PrintHelp(raw_ostream &OS, const char *Name,
353-
const char *Title, bool ShowHidden) const {
349+
const char *Title, unsigned short FlagsToInclude,
350+
unsigned short FlagsToExclude) const {
354351
OS << "OVERVIEW: " << Title << "\n";
355352
OS << '\n';
356353
OS << "USAGE: " << Name << " [options] <inputs>\n";
@@ -369,7 +366,8 @@ void OptTable::PrintHelp(raw_ostream &OS, const char *Name,
369366
if (getOptionKind(Id) == Option::GroupClass)
370367
continue;
371368

372-
if (!ShowHidden && isOptionHelpHidden(Id))
369+
if ((FlagsToInclude && !(getInfo(Id).Flags & FlagsToInclude)) ||
370+
getInfo(Id).Flags & FlagsToExclude)
373371
continue;
374372

375373
if (const char *Text = getOptionHelpText(Id)) {

lib/FrontendTool/ExecuteCompilerInvocation.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include "clang/StaticAnalyzer/Frontend/FrontendActions.h"
1717
#include "clang/ARCMigrate/ARCMTActions.h"
1818
#include "clang/CodeGen/CodeGenAction.h"
19+
#include "clang/Driver/Option.h"
1920
#include "clang/Driver/Options.h"
2021
#include "clang/Driver/OptTable.h"
2122
#include "clang/Frontend/CompilerInvocation.h"
@@ -137,7 +138,9 @@ bool clang::ExecuteCompilerInvocation(CompilerInstance *Clang) {
137138
if (Clang->getFrontendOpts().ShowHelp) {
138139
OwningPtr<driver::OptTable> Opts(driver::createDriverOptTable());
139140
Opts->PrintHelp(llvm::outs(), "clang -cc1",
140-
"LLVM 'Clang' Compiler: http://clang.llvm.org");
141+
"LLVM 'Clang' Compiler: http://clang.llvm.org",
142+
/*Include=*/driver::options::CC1Option,
143+
/*Exclude=*/0);
141144
return 0;
142145
}
143146

test/Driver/immediate-options.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// RUN: %clang --help
2-
// RUN: %clang --help-hidden
1+
// RUN: %clang --help | grep isystem
2+
// RUN: %clang --help | not grep ast-dump
3+
// RUN: %clang --help | not grep ccc-cxx
4+
// RUN: %clang --help-hidden | grep ccc-cxx
35
// RUN: %clang -dumpversion
46
// RUN: %clang -print-search-dirs

0 commit comments

Comments
 (0)