blob: 4867b33d671f5e0797d81791669da885e42d1f29 [file] [log] [blame]
Sanjoy Das021de052016-03-31 00:18:46 +00001//===- LowerGuardIntrinsic.cpp - Lower the guard intrinsic ---------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass lowers the llvm.experimental.guard intrinsic to a conditional call
11// to @llvm.experimental.deoptimize. Once this happens, the guard can no longer
12// be widened.
13//
14//===----------------------------------------------------------------------===//
15
Michael Kupersteine45d4d92016-07-28 22:08:41 +000016#include "llvm/Transforms/Scalar/LowerGuardIntrinsic.h"
Sanjoy Das021de052016-03-31 00:18:46 +000017#include "llvm/ADT/SmallVector.h"
Max Kazantsev3c284bd2018-08-30 03:39:16 +000018#include "llvm/Analysis/GuardUtils.h"
Sanjoy Das021de052016-03-31 00:18:46 +000019#include "llvm/IR/BasicBlock.h"
20#include "llvm/IR/Function.h"
21#include "llvm/IR/InstIterator.h"
22#include "llvm/IR/Instructions.h"
23#include "llvm/IR/Intrinsics.h"
Sanjoy Das021de052016-03-31 00:18:46 +000024#include "llvm/IR/Module.h"
25#include "llvm/Pass.h"
Michael Kupersteine45d4d92016-07-28 22:08:41 +000026#include "llvm/Transforms/Scalar.h"
Max Kazantsev8b4ffe62018-08-29 10:51:59 +000027#include "llvm/Transforms/Utils/GuardUtils.h"
Sanjoy Das021de052016-03-31 00:18:46 +000028
29using namespace llvm;
30
31namespace {
Michael Kupersteine45d4d92016-07-28 22:08:41 +000032struct LowerGuardIntrinsicLegacyPass : public FunctionPass {
Sanjoy Das021de052016-03-31 00:18:46 +000033 static char ID;
Michael Kupersteine45d4d92016-07-28 22:08:41 +000034 LowerGuardIntrinsicLegacyPass() : FunctionPass(ID) {
35 initializeLowerGuardIntrinsicLegacyPassPass(
36 *PassRegistry::getPassRegistry());
Sanjoy Das021de052016-03-31 00:18:46 +000037 }
38
39 bool runOnFunction(Function &F) override;
40};
41}
42
Michael Kupersteine45d4d92016-07-28 22:08:41 +000043static bool lowerGuardIntrinsic(Function &F) {
Sanjoy Das021de052016-03-31 00:18:46 +000044 // Check if we can cheaply rule out the possibility of not having any work to
45 // do.
46 auto *GuardDecl = F.getParent()->getFunction(
47 Intrinsic::getName(Intrinsic::experimental_guard));
48 if (!GuardDecl || GuardDecl->use_empty())
49 return false;
50
51 SmallVector<CallInst *, 8> ToLower;
52 for (auto &I : instructions(F))
Max Kazantsev3c284bd2018-08-30 03:39:16 +000053 if (isGuard(&I))
54 ToLower.push_back(cast<CallInst>(&I));
Sanjoy Das021de052016-03-31 00:18:46 +000055
56 if (ToLower.empty())
57 return false;
58
59 auto *DeoptIntrinsic = Intrinsic::getDeclaration(
60 F.getParent(), Intrinsic::experimental_deoptimize, {F.getReturnType()});
Sanjoy Das52c68bb2016-04-30 00:17:47 +000061 DeoptIntrinsic->setCallingConv(GuardDecl->getCallingConv());
Sanjoy Das021de052016-03-31 00:18:46 +000062
63 for (auto *CI : ToLower) {
Max Kazantsev8b4ffe62018-08-29 10:51:59 +000064 makeGuardControlFlowExplicit(DeoptIntrinsic, CI);
Sanjoy Das021de052016-03-31 00:18:46 +000065 CI->eraseFromParent();
66 }
67
68 return true;
69}
70
Michael Kupersteine45d4d92016-07-28 22:08:41 +000071bool LowerGuardIntrinsicLegacyPass::runOnFunction(Function &F) {
72 return lowerGuardIntrinsic(F);
73}
74
75char LowerGuardIntrinsicLegacyPass::ID = 0;
76INITIALIZE_PASS(LowerGuardIntrinsicLegacyPass, "lower-guard-intrinsic",
Sanjoy Das021de052016-03-31 00:18:46 +000077 "Lower the guard intrinsic to normal control flow", false,
78 false)
79
80Pass *llvm::createLowerGuardIntrinsicPass() {
Michael Kupersteine45d4d92016-07-28 22:08:41 +000081 return new LowerGuardIntrinsicLegacyPass();
82}
83
84PreservedAnalyses LowerGuardIntrinsicPass::run(Function &F,
85 FunctionAnalysisManager &AM) {
86 if (lowerGuardIntrinsic(F))
87 return PreservedAnalyses::none();
88
89 return PreservedAnalyses::all();
Sanjoy Das021de052016-03-31 00:18:46 +000090}