summaryrefslogtreecommitdiff
path: root/include/llvm/Support/PassNameParser.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2010-07-20 01:19:58 +0000
committerOwen Anderson <resistor@mac.com>2010-07-20 01:19:58 +0000
commit8ba15cb7099d9eadcb345328228d77ffa5afa42d (patch)
tree48778ce4b577178912f4a72d48b761056aae92ae /include/llvm/Support/PassNameParser.h
parentfb272ad614e923bebdf226ff9d3fbce5e2ae1192 (diff)
downloadllvm-8ba15cb7099d9eadcb345328228d77ffa5afa42d.tar.gz
llvm-8ba15cb7099d9eadcb345328228d77ffa5afa42d.tar.bz2
llvm-8ba15cb7099d9eadcb345328228d77ffa5afa42d.tar.xz
Separate PassInfo into two classes: a constructor-free superclass (StaticPassInfo) and a constructor-ful subclass (PassInfo).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108794 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/PassNameParser.h')
-rw-r--r--include/llvm/Support/PassNameParser.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/llvm/Support/PassNameParser.h b/include/llvm/Support/PassNameParser.h
index cdca978cfe..c3564399e2 100644
--- a/include/llvm/Support/PassNameParser.h
+++ b/include/llvm/Support/PassNameParser.h
@@ -55,9 +55,11 @@ public:
// ignorablePassImpl - Can be overriden in subclasses to refine the list of
// which passes we want to include.
//
- virtual bool ignorablePassImpl(const PassInfo *P) const { return false; }
+ virtual bool ignorablePassImpl(const StaticPassInfo *P) const {
+ return false;
+ }
- inline bool ignorablePass(const PassInfo *P) const {
+ inline bool ignorablePass(const StaticPassInfo *P) const {
// Ignore non-selectable and non-constructible passes! Ignore
// non-optimizations.
return P->getPassArgument() == 0 || *P->getPassArgument() == 0 ||
@@ -66,7 +68,7 @@ public:
// Implement the PassRegistrationListener callbacks used to populate our map
//
- virtual void passRegistered(const PassInfo *P) {
+ virtual void passRegistered(const StaticPassInfo *P) {
if (ignorablePass(P) || !Opt) return;
if (findOption(P->getPassArgument()) != getNumOptions()) {
errs() << "Two passes with the same argument (-"
@@ -75,7 +77,7 @@ public:
}
addLiteralOption(P->getPassArgument(), P, P->getPassName());
}
- virtual void passEnumerate(const PassInfo *P) { passRegistered(P); }
+ virtual void passEnumerate(const StaticPassInfo *P) { passRegistered(P); }
// ValLessThan - Provide a sorting comparator for Values elements...
typedef std::pair<const char*,
@@ -105,7 +107,7 @@ private:
Filter filter;
public:
- bool ignorablePassImpl(const PassInfo *P) const { return !filter(*P); }
+ bool ignorablePassImpl(const StaticPassInfo *P) const { return !filter(*P); }
};
///===----------------------------------------------------------------------===//