2018-08-30 11:39:16 +08:00
|
|
|
//===-- GuardUtils.cpp - Utils for work with guards -------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2018-08-30 11:39:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Utils that are used to perform analyzes related to guards and their
|
|
|
|
// conditions.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/GuardUtils.h"
|
|
|
|
#include "llvm/IR/PatternMatch.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
bool llvm::isGuard(const User *U) {
|
|
|
|
using namespace llvm::PatternMatch;
|
|
|
|
return match(U, m_Intrinsic<Intrinsic::experimental_guard>());
|
|
|
|
}
|
2019-01-22 17:36:22 +08:00
|
|
|
|
[NFC] Factor out utilities for manipulating widenable branches
With the widenable condition construct, we have the ability to reason about branches which can be 'widened' (i.e. made to fail more often). We've got a couple o transforms which leverage this. This patch just cleans up the API a bit.
This is prep work for generalizing our definition of a widenable branch slightly. At the moment "br i1 (and A, wc()), ..." is considered widenable, but oddly, neither "br i1 (and wc(), B), ..." or "br i1 wc(), ..." is. That clearly needs addressed, so first, let's centralize the code in one place.
2019-11-20 06:43:13 +08:00
|
|
|
bool llvm::isWidenableBranch(const User *U) {
|
|
|
|
Value *Condition, *WidenableCondition;
|
|
|
|
BasicBlock *GuardedBB, *DeoptBB;
|
|
|
|
return parseWidenableBranch(U, Condition, WidenableCondition, GuardedBB,
|
|
|
|
DeoptBB);
|
|
|
|
}
|
|
|
|
|
2019-01-22 17:36:22 +08:00
|
|
|
bool llvm::isGuardAsWidenableBranch(const User *U) {
|
2019-01-22 19:21:32 +08:00
|
|
|
Value *Condition, *WidenableCondition;
|
|
|
|
BasicBlock *GuardedBB, *DeoptBB;
|
|
|
|
if (!parseWidenableBranch(U, Condition, WidenableCondition, GuardedBB,
|
|
|
|
DeoptBB))
|
2019-01-22 17:36:22 +08:00
|
|
|
return false;
|
2019-01-22 19:21:32 +08:00
|
|
|
using namespace llvm::PatternMatch;
|
|
|
|
for (auto &Insn : *DeoptBB) {
|
2019-01-22 17:36:22 +08:00
|
|
|
if (match(&Insn, m_Intrinsic<Intrinsic::experimental_deoptimize>()))
|
|
|
|
return true;
|
|
|
|
if (Insn.mayHaveSideEffects())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2019-01-22 19:21:32 +08:00
|
|
|
|
|
|
|
bool llvm::parseWidenableBranch(const User *U, Value *&Condition,
|
|
|
|
Value *&WidenableCondition,
|
|
|
|
BasicBlock *&IfTrueBB, BasicBlock *&IfFalseBB) {
|
|
|
|
using namespace llvm::PatternMatch;
|
2019-04-03 00:51:43 +08:00
|
|
|
if (!match(U, m_Br(m_And(m_Value(Condition), m_Value(WidenableCondition)),
|
|
|
|
IfTrueBB, IfFalseBB)))
|
|
|
|
return false;
|
2019-11-07 06:05:59 +08:00
|
|
|
// 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;
|
2019-04-03 00:51:43 +08:00
|
|
|
// 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>());
|
2019-01-22 19:21:32 +08:00
|
|
|
}
|