LLVM 20.0.0git
LowerWidenableCondition.cpp
Go to the documentation of this file.
1//===- LowerWidenableCondition.cpp - Lower the guard intrinsic ---------------===//
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//
9// This pass lowers the llvm.widenable.condition intrinsic to default value
10// which is i1 true.
11//
12//===----------------------------------------------------------------------===//
13
16#include "llvm/IR/Function.h"
18#include "llvm/IR/Intrinsics.h"
21
22using namespace llvm;
23
25 // Check if we can cheaply rule out the possibility of not having any work to
26 // do.
28 F.getParent(), Intrinsic::experimental_widenable_condition);
29 if (!WCDecl || WCDecl->use_empty())
30 return false;
31
32 using namespace llvm::PatternMatch;
34 // Traverse through the users of WCDecl.
35 // This is presumably cheaper than traversing all instructions in the
36 // function.
37 for (auto *U : WCDecl->users())
38 if (auto *CI = dyn_cast<CallInst>(U))
39 if (CI->getFunction() == &F)
40 ToLower.push_back(CI);
41
42 if (ToLower.empty())
43 return false;
44
45 for (auto *CI : ToLower) {
46 CI->replaceAllUsesWith(ConstantInt::getTrue(CI->getContext()));
47 CI->eraseFromParent();
48 }
49 return true;
50}
51
56
58}
static bool lowerWidenableCondition(Function &F)
#define F(x, y, z)
Definition: MD5.cpp:55
This file defines the SmallVector class.
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:253
static ConstantInt * getTrue(LLVMContext &Context)
Definition: Constants.cpp:866
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
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
Function * getDeclarationIfExists(Module *M, ID id, ArrayRef< Type * > Tys, FunctionType *FT=nullptr)
This version supports overloaded intrinsics.
Definition: Intrinsics.cpp:746
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)