Each option has a set of prefixes. When matching an argument such as -funroll-loops. First the leading - is removed as it is a prefix. Then a lower_bound search for "funroll-loops" is done against the option table by option name. From there each option prefix + option name combination is tested against the argument. This allows us to support Microsoft style options where both / and - are valid prefixes. It also simplifies the cases we already have where options come in both - and -- forms. Almost every option for gnu-ld happens to have this form. llvm-svn: 166444
46 lines
1.3 KiB
C++
46 lines
1.3 KiB
C++
//===--- DriverOptions.cpp - Driver Options Table -------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "clang/Driver/Options.h"
|
|
#include "clang/Driver/OptTable.h"
|
|
#include "clang/Driver/Option.h"
|
|
|
|
using namespace clang::driver;
|
|
using namespace clang::driver::options;
|
|
|
|
#define PREFIX(NAME, VALUE) const char *const NAME[] = VALUE;
|
|
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
|
|
HELPTEXT, METAVAR)
|
|
#include "clang/Driver/Options.inc"
|
|
#undef OPTION
|
|
#undef PREFIX
|
|
|
|
static const OptTable::Info InfoTable[] = {
|
|
#define PREFIX(NAME, VALUE)
|
|
#define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, \
|
|
HELPTEXT, METAVAR) \
|
|
{ PREFIX, NAME, HELPTEXT, METAVAR, OPT_##ID, Option::KIND##Class, PARAM, \
|
|
FLAGS, OPT_##GROUP, OPT_##ALIAS },
|
|
#include "clang/Driver/Options.inc"
|
|
};
|
|
|
|
namespace {
|
|
|
|
class DriverOptTable : public OptTable {
|
|
public:
|
|
DriverOptTable()
|
|
: OptTable(InfoTable, sizeof(InfoTable) / sizeof(InfoTable[0])) {}
|
|
};
|
|
|
|
}
|
|
|
|
OptTable *clang::driver::createDriverOptTable() {
|
|
return new DriverOptTable();
|
|
}
|