1 //===--- DriverOptions.cpp - Driver Options Table -------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "clang/Driver/Options.h"
10 #include "llvm/ADT/STLExtras.h"
11 #include "llvm/Option/OptTable.h"
12 #include "llvm/Option/Option.h"
15 using namespace clang::driver
;
16 using namespace clang::driver::options
;
17 using namespace llvm::opt
;
19 #define OPTTABLE_VALUES_CODE
20 #include "clang/Driver/Options.inc"
21 #undef OPTTABLE_VALUES_CODE
23 #define PREFIX(NAME, VALUE) \
24 static constexpr llvm::StringLiteral NAME##_init[] = VALUE; \
25 static constexpr llvm::ArrayRef<llvm::StringLiteral> NAME( \
26 NAME##_init, std::size(NAME##_init) - 1);
27 #include "clang/Driver/Options.inc"
30 static constexpr const llvm::StringLiteral PrefixTable_init
[] =
31 #define PREFIX_UNION(VALUES) VALUES
32 #include "clang/Driver/Options.inc"
35 static constexpr const llvm::ArrayRef
<llvm::StringLiteral
>
36 PrefixTable(PrefixTable_init
, std::size(PrefixTable_init
) - 1);
38 static constexpr OptTable::Info InfoTable
[] = {
39 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
40 HELPTEXT, METAVAR, VALUES) \
41 {PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, \
42 PARAM, FLAGS, OPT_##GROUP, OPT_##ALIAS, ALIASARGS, VALUES},
43 #include "clang/Driver/Options.inc"
49 class DriverOptTable
: public PrecomputedOptTable
{
51 DriverOptTable() : PrecomputedOptTable(InfoTable
, PrefixTable
) {}
55 const llvm::opt::OptTable
&clang::driver::getDriverOptTable() {
56 static DriverOptTable Table
;