2012-12-05 00:29:32 +00:00
|
|
|
//===--- OptSpecifier.h - Option Specifiers ---------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_OPTION_OPTSPECIFIER_H
|
|
|
|
#define LLVM_OPTION_OPTSPECIFIER_H
|
2012-12-05 00:29:32 +00:00
|
|
|
|
2014-04-24 23:29:25 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
|
2012-12-05 00:29:32 +00:00
|
|
|
namespace llvm {
|
|
|
|
namespace opt {
|
|
|
|
class Option;
|
|
|
|
|
|
|
|
/// OptSpecifier - Wrapper class for abstracting references to option IDs.
|
|
|
|
class OptSpecifier {
|
|
|
|
unsigned ID;
|
|
|
|
|
|
|
|
private:
|
2015-02-15 22:54:22 +00:00
|
|
|
explicit OptSpecifier(bool) = delete;
|
2012-12-05 00:29:32 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
OptSpecifier() : ID(0) {}
|
2015-03-16 18:06:57 +00:00
|
|
|
/*implicit*/ OptSpecifier(unsigned ID) : ID(ID) {}
|
2012-12-05 00:29:32 +00:00
|
|
|
/*implicit*/ OptSpecifier(const Option *Opt);
|
|
|
|
|
|
|
|
bool isValid() const { return ID != 0; }
|
|
|
|
|
|
|
|
unsigned getID() const { return ID; }
|
|
|
|
|
|
|
|
bool operator==(OptSpecifier Opt) const { return ID == Opt.getID(); }
|
|
|
|
bool operator!=(OptSpecifier Opt) const { return !(*this == Opt); }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|