diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 10:51:19 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 10:51:19 +0000 |
commit | eb11fae6d08f479c0799db45860a98af528fa6e7 (patch) | |
tree | 44d492a50c8c1a7eb8e2d17ea3360ec4d066f042 /lib/IR/OptBisect.cpp | |
parent | b8a2042aa938069e862750553db0e4d82d25822c (diff) |
Notes
Diffstat (limited to 'lib/IR/OptBisect.cpp')
-rw-r--r-- | lib/IR/OptBisect.cpp | 37 |
1 files changed, 23 insertions, 14 deletions
diff --git a/lib/IR/OptBisect.cpp b/lib/IR/OptBisect.cpp index dc7dcd2e4a97..c79e1fc2b0b4 100644 --- a/lib/IR/OptBisect.cpp +++ b/lib/IR/OptBisect.cpp @@ -36,7 +36,7 @@ static cl::opt<int> OptBisectLimit("opt-bisect-limit", cl::Hidden, cl::Optional, cl::desc("Maximum optimization to perform")); -OptBisect::OptBisect() { +OptBisect::OptBisect() : OptPassGate() { BisectEnabled = OptBisectLimit != std::numeric_limits<int>::max(); } @@ -92,19 +92,28 @@ static std::string getDescription(const CallGraphSCC &SCC) { return Desc; } -// Force instantiations. -template bool OptBisect::shouldRunPass(const Pass *, const Module &); -template bool OptBisect::shouldRunPass(const Pass *, const Function &); -template bool OptBisect::shouldRunPass(const Pass *, const BasicBlock &); -template bool OptBisect::shouldRunPass(const Pass *, const Loop &); -template bool OptBisect::shouldRunPass(const Pass *, const CallGraphSCC &); -template bool OptBisect::shouldRunPass(const Pass *, const Region &); - -template <class UnitT> -bool OptBisect::shouldRunPass(const Pass *P, const UnitT &U) { - if (!BisectEnabled) - return true; - return checkPass(P->getPassName(), getDescription(U)); +bool OptBisect::shouldRunPass(const Pass *P, const Module &U) { + return !BisectEnabled || checkPass(P->getPassName(), getDescription(U)); +} + +bool OptBisect::shouldRunPass(const Pass *P, const Function &U) { + return !BisectEnabled || checkPass(P->getPassName(), getDescription(U)); +} + +bool OptBisect::shouldRunPass(const Pass *P, const BasicBlock &U) { + return !BisectEnabled || checkPass(P->getPassName(), getDescription(U)); +} + +bool OptBisect::shouldRunPass(const Pass *P, const Region &U) { + return !BisectEnabled || checkPass(P->getPassName(), getDescription(U)); +} + +bool OptBisect::shouldRunPass(const Pass *P, const Loop &U) { + return !BisectEnabled || checkPass(P->getPassName(), getDescription(U)); +} + +bool OptBisect::shouldRunPass(const Pass *P, const CallGraphSCC &U) { + return !BisectEnabled || checkPass(P->getPassName(), getDescription(U)); } bool OptBisect::checkPass(const StringRef PassName, |