//=== RegistryParser.h - Linker-supported plugin registries -----*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // Defines a command-line parser for a registry. // //===----------------------------------------------------------------------===// #ifndef LLVM_SUPPORT_REGISTRYPARSER_H #define LLVM_SUPPORT_REGISTRYPARSER_H #include "llvm/Support/CommandLine.h" #include "llvm/Support/Registry.h" namespace llvm { /// A command-line parser for a registry. Use like such: /// /// static cl::opt::entry, false, /// RegistryParser > /// GCOpt("gc", cl::desc("Garbage collector to use."), /// cl::value_desc()); /// /// To make use of the value: /// /// Collector *TheCollector = GCOpt->instantiate(); /// template > class RegistryParser : public cl::parser, public Registry::listener { typedef U traits; typedef typename U::entry entry; typedef typename Registry::listener listener; protected: void registered(const entry &E) { addLiteralOption(traits::nameof(E), &E, traits::descof(E)); } public: void initialize(cl::Option &O) { listener::init(); cl::parser::initialize(O); } }; } #endif // LLVM_SUPPORT_REGISTRYPARSER_H