//===- LegacyPassNameParser.h -----------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file contains the PassNameParser and FilteredPassNameParser<> classes, // which are used to add command line arguments to a utility for all of the // passes that have been registered into the system. // // The PassNameParser class adds ALL passes linked into the system (that are // creatable) as command line arguments to the tool (when instantiated with the // appropriate command line option template). The FilteredPassNameParser<> // template is used for the same purposes as PassNameParser, except that it only // includes passes that have a PassType that are compatible with the filter // (which is the template argument). // // Note that this is part of the legacy pass manager infrastructure and will be // (eventually) going away. // //===----------------------------------------------------------------------===// #ifndef LLVM_IR_LEGACYPASSNAMEPARSER_H #define LLVM_IR_LEGACYPASSNAMEPARSER_H #include "llvm/ADT/STLExtras.h" #include "llvm/Pass.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" #include <cstring> namespace llvm { //===----------------------------------------------------------------------===// // PassNameParser class - Make use of the pass registration mechanism to // automatically add a command line argument to opt for each pass. // class PassNameParser : public PassRegistrationListener, public cl::parser<const PassInfo*> { … }; } // End llvm namespace #endif