• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===--- DriverOptions.cpp - Driver Options Table -------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #include "clang/Driver/Options.h"
11 #include "clang/Driver/OptTable.h"
12 #include "clang/Driver/Option.h"
13 
14 using namespace clang::driver;
15 using namespace clang::driver::options;
16 
17 #define PREFIX(NAME, VALUE) const char *const NAME[] = VALUE;
18 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
19                HELPTEXT, METAVAR)
20 #include "clang/Driver/Options.inc"
21 #undef OPTION
22 #undef PREFIX
23 
24 static const OptTable::Info InfoTable[] = {
25 #define PREFIX(NAME, VALUE)
26 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
27                HELPTEXT, METAVAR)   \
28   { PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, PARAM, \
29     FLAGS, OPT_##GROUP, OPT_##ALIAS },
30 #include "clang/Driver/Options.inc"
31 };
32 
33 namespace {
34 
35 class DriverOptTable : public OptTable {
36 public:
DriverOptTable()37   DriverOptTable()
38     : OptTable(InfoTable, sizeof(InfoTable) / sizeof(InfoTable[0])) {}
39 };
40 
41 }
42 
createDriverOptTable()43 OptTable *clang::driver::createDriverOptTable() {
44   return new DriverOptTable();
45 }
46