diff options
author | Philip Reames <listmail@philipreames.com> | 2019-11-21 10:44:13 -0800 |
---|---|---|
committer | Philip Reames <listmail@philipreames.com> | 2019-11-21 10:46:16 -0800 |
commit | aaea24802bf5de0420f1ef5f3660a9765e23dea8 (patch) | |
tree | 95393e40d8833c969d1d340916c50e93c7c6aa48 /llvm/lib/Analysis/GuardUtils.cpp | |
parent | d9426c3360895f265a19e25e2d2bae3348ad9ce8 (diff) | |
download | bcm5719-llvm-aaea24802bf5de0420f1ef5f3660a9765e23dea8.tar.gz bcm5719-llvm-aaea24802bf5de0420f1ef5f3660a9765e23dea8.zip |
Broaden the definition of a "widenable branch"
As a reminder, a "widenable branch" is the pattern "br i1 (and i1 X, WC()), label %taken, label %untaken" where "WC" is the widenable condition intrinsics. The semantics of such a branch (derived from the semantics of WC) is that a new condition can be added into the condition arbitrarily without violating legality.
Broaden the definition in two ways:
Allow swapped operands to the br (and X, WC()) form
Allow widenable branch w/trivial condition (i.e. true) which takes form of br i1 WC()
The former is just general robustness (e.g. for X = non-instruction this is what instcombine produces). The later is specifically important as partial unswitching of a widenable range check produces exactly this form above the loop.
Differential Revision: https://reviews.llvm.org/D70502
Diffstat (limited to 'llvm/lib/Analysis/GuardUtils.cpp')
-rw-r--r-- | llvm/lib/Analysis/GuardUtils.cpp | 34 |
1 files changed, 24 insertions, 10 deletions
diff --git a/llvm/lib/Analysis/GuardUtils.cpp b/llvm/lib/Analysis/GuardUtils.cpp index 6dc2b740ac9..d4a86e18997 100644 --- a/llvm/lib/Analysis/GuardUtils.cpp +++ b/llvm/lib/Analysis/GuardUtils.cpp @@ -13,9 +13,9 @@ #include "llvm/IR/PatternMatch.h" using namespace llvm; +using namespace llvm::PatternMatch; bool llvm::isGuard(const User *U) { - using namespace llvm::PatternMatch; return match(U, m_Intrinsic<Intrinsic::experimental_guard>()); } @@ -32,7 +32,6 @@ bool llvm::isGuardAsWidenableBranch(const User *U) { if (!parseWidenableBranch(U, Condition, WidenableCondition, GuardedBB, DeoptBB)) return false; - using namespace llvm::PatternMatch; for (auto &Insn : *DeoptBB) { if (match(&Insn, m_Intrinsic<Intrinsic::experimental_deoptimize>())) return true; @@ -45,17 +44,32 @@ bool llvm::isGuardAsWidenableBranch(const User *U) { bool llvm::parseWidenableBranch(const User *U, Value *&Condition, Value *&WidenableCondition, BasicBlock *&IfTrueBB, BasicBlock *&IfFalseBB) { - using namespace llvm::PatternMatch; + if (match(U, m_Br(m_Intrinsic<Intrinsic::experimental_widenable_condition>(), + IfTrueBB, IfFalseBB)) && + cast<BranchInst>(U)->getCondition()->hasOneUse()) { + WidenableCondition = cast<BranchInst>(U)->getCondition(); + Condition = ConstantInt::getTrue(IfTrueBB->getContext()); + return true; + } + + // Check for two cases: + // 1) br (i1 (and A, WC())), label %IfTrue, label %IfFalse + // 2) br (i1 (and WC(), B)), label %IfTrue, label %IfFalse + // We do not check for more generalized and trees as we should canonicalize + // to the form above in instcombine. (TODO) if (!match(U, m_Br(m_And(m_Value(Condition), m_Value(WidenableCondition)), IfTrueBB, IfFalseBB))) return false; + if (!match(WidenableCondition, + m_Intrinsic<Intrinsic::experimental_widenable_condition>())) { + if (!match(Condition, + m_Intrinsic<Intrinsic::experimental_widenable_condition>())) + return false; + std::swap(Condition, WidenableCondition); + } + // For the branch to be (easily) widenable, it must not correlate with other // branches. Thus, the widenable condition must have a single use. - if (!WidenableCondition->hasOneUse() || - !cast<BranchInst>(U)->getCondition()->hasOneUse()) - return false; - // TODO: At the moment, we only recognize the branch if the WC call in this - // specific position. We should generalize! - return match(WidenableCondition, - m_Intrinsic<Intrinsic::experimental_widenable_condition>()); + return (WidenableCondition->hasOneUse() && + cast<BranchInst>(U)->getCondition()->hasOneUse()); } |