LLVM 20.0.0git
LowerAllowCheckPass.cpp
Go to the documentation of this file.
1//===- LowerAllowCheckPass.cpp ----------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
12#include "llvm/ADT/Statistic.h"
13#include "llvm/ADT/StringRef.h"
16#include "llvm/IR/Constants.h"
20#include "llvm/IR/Intrinsics.h"
21#include "llvm/IR/Metadata.h"
22#include "llvm/IR/Module.h"
24#include <memory>
25#include <random>
26
27using namespace llvm;
28
29#define DEBUG_TYPE "lower-allow-check"
30
31static cl::opt<int>
32 HotPercentileCutoff("lower-allow-check-percentile-cutoff-hot",
33 cl::desc("Hot percentile cuttoff."));
34
35static cl::opt<float>
36 RandomRate("lower-allow-check-random-rate",
37 cl::desc("Probability value in the range [0.0, 1.0] of "
38 "unconditional pseudo-random checks."));
39
40STATISTIC(NumChecksTotal, "Number of checks");
41STATISTIC(NumChecksRemoved, "Number of removed checks");
42
43struct RemarkInfo {
48 : Kind("Kind", II->getArgOperand(0)),
49 F("Function", II->getParent()->getParent()),
50 BB("Block", II->getParent()->getName()) {}
51};
52
54 bool Removed) {
55 if (Removed) {
56 ORE.emit([&]() {
58 return OptimizationRemark(DEBUG_TYPE, "Removed", II)
59 << "Removed check: Kind=" << Info.Kind << " F=" << Info.F
60 << " BB=" << Info.BB;
61 });
62 } else {
63 ORE.emit([&]() {
65 return OptimizationRemarkMissed(DEBUG_TYPE, "Allowed", II)
66 << "Allowed check: Kind=" << Info.Kind << " F=" << Info.F
67 << " BB=" << Info.BB;
68 });
69 }
70}
71
73 const ProfileSummaryInfo *PSI,
76 std::unique_ptr<RandomNumberGenerator> Rng;
77
78 auto GetRng = [&]() -> RandomNumberGenerator & {
79 if (!Rng)
80 Rng = F.getParent()->createRNG(F.getName());
81 return *Rng;
82 };
83
84 auto ShouldRemoveHot = [&](const BasicBlock &BB) {
85 return HotPercentileCutoff.getNumOccurrences() && PSI &&
87 HotPercentileCutoff, BFI.getBlockProfileCount(&BB).value_or(0));
88 };
89
90 auto ShouldRemoveRandom = [&]() {
91 return RandomRate.getNumOccurrences() &&
92 !std::bernoulli_distribution(RandomRate)(GetRng());
93 };
94
95 auto ShouldRemove = [&](const BasicBlock &BB) {
96 return ShouldRemoveRandom() || ShouldRemoveHot(BB);
97 };
98
99 for (BasicBlock &BB : F) {
100 for (Instruction &I : BB) {
101 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&I);
102 if (!II)
103 continue;
104 auto ID = II->getIntrinsicID();
105 switch (ID) {
106 case Intrinsic::allow_ubsan_check:
107 case Intrinsic::allow_runtime_check: {
108 ++NumChecksTotal;
109
110 bool ToRemove = ShouldRemove(BB);
111 ReplaceWithValue.push_back({
112 II,
113 ToRemove,
114 });
115 if (ToRemove)
116 ++NumChecksRemoved;
117 emitRemark(II, ORE, ToRemove);
118 break;
119 }
120 default:
121 break;
122 }
123 }
124 }
125
126 for (auto [I, V] : ReplaceWithValue) {
127 I->replaceAllUsesWith(ConstantInt::getBool(I->getType(), !V));
128 I->eraseFromParent();
129 }
130
131 return !ReplaceWithValue.empty();
132}
133
136 if (F.isDeclaration())
137 return PreservedAnalyses::all();
138 auto &MAMProxy = AM.getResult<ModuleAnalysisManagerFunctionProxy>(F);
139 ProfileSummaryInfo *PSI =
140 MAMProxy.getCachedResult<ProfileSummaryAnalysis>(*F.getParent());
144
145 return removeUbsanTraps(F, BFI, PSI, ORE) ? PreservedAnalyses::none()
147}
148
150 return RandomRate.getNumOccurrences() ||
151 HotPercentileCutoff.getNumOccurrences();
152}
ReachingDefAnalysis InstSet & ToRemove
static const Function * getParent(const Value *V)
Analysis containing CSE Info
Definition: CSEInfo.cpp:27
This file contains the declarations for the subclasses of Constant, which represent the different fla...
Module.h This file contains the declarations for the Module class.
static bool removeUbsanTraps(Function &F, const BlockFrequencyInfo &BFI, const ProfileSummaryInfo *PSI, OptimizationRemarkEmitter &ORE)
static cl::opt< int > HotPercentileCutoff("lower-allow-check-percentile-cutoff-hot", cl::desc("Hot percentile cuttoff."))
static cl::opt< float > RandomRate("lower-allow-check-random-rate", cl::desc("Probability value in the range [0.0, 1.0] of " "unconditional pseudo-random checks."))
static void emitRemark(IntrinsicInst *II, OptimizationRemarkEmitter &ORE, bool Removed)
#define DEBUG_TYPE
This file provides the interface for the pass responsible for removing expensive ubsan checks.
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
This file contains the declarations for metadata subclasses.
uint64_t IntrinsicInst * II
static StringRef getName(Value *V)
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition: Statistic.h:166
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:253
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:410
LLVM Basic Block Representation.
Definition: BasicBlock.h:61
Analysis pass which computes BlockFrequencyInfo.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
static ConstantInt * getBool(LLVMContext &Context, bool V)
Definition: Constants.cpp:880
A wrapper class for inspecting calls to intrinsic functions.
Definition: IntrinsicInst.h:48
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
The optimization diagnostic interface.
void emit(DiagnosticInfoOptimizationBase &OptDiag)
Output the remark via the diagnostic handler and to the optimization record file.
Diagnostic information for missed-optimization remarks.
Diagnostic information for applied optimization remarks.
An analysis over an "inner" IR unit that provides access to an analysis manager over a "outer" IR uni...
Definition: PassManager.h:692
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:111
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
Definition: Analysis.h:114
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:117
An analysis pass based on the new PM to deliver ProfileSummaryInfo.
Analysis providing profile information.
bool isHotCountNthPercentile(int PercentileCutoff, uint64_t C) const
Returns true if count C is considered hot with regard to a given hot percentile cutoff value.
A random number generator.
bool empty() const
Definition: SmallVector.h:81
void push_back(const T &Elt)
Definition: SmallVector.h:413
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1196
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
RemarkInfo(IntrinsicInst *II)
Used in the streaming interface as the general argument type.