Home
last modified time | relevance | path

Searched refs:DemandedBitsWrapperPass (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DDemandedBits.cpp57 char DemandedBitsWrapperPass::ID = 0;
59 INITIALIZE_PASS_BEGIN(DemandedBitsWrapperPass, "demanded-bits",
63 INITIALIZE_PASS_END(DemandedBitsWrapperPass, "demanded-bits", in INITIALIZE_PASS_DEPENDENCY()
66 DemandedBitsWrapperPass::DemandedBitsWrapperPass() : FunctionPass(ID) { in INITIALIZE_PASS_DEPENDENCY()
70 void DemandedBitsWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()
77 void DemandedBitsWrapperPass::print(raw_ostream &OS, const Module *M) const { in print()
296 bool DemandedBitsWrapperPass::runOnFunction(Function &F) { in runOnFunction()
303 void DemandedBitsWrapperPass::releaseMemory() { in releaseMemory()
477 return new DemandedBitsWrapperPass(); in createDemandedBitsWrapperPass()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DBDCE.cpp165 auto &DB = getAnalysis<DemandedBitsWrapperPass>().getDemandedBits(); in runOnFunction()
171 AU.addRequired<DemandedBitsWrapperPass>(); in getAnalysisUsage()
180 INITIALIZE_PASS_DEPENDENCY(DemandedBitsWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DDemandedBits.h86 class DemandedBitsWrapperPass : public FunctionPass {
93 DemandedBitsWrapperPass();
/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp4550 auto *DB = &getAnalysis<DemandedBitsWrapperPass>().getDemandedBits(); in runOnFunction()
4564 AU.addRequired<DemandedBitsWrapperPass>(); in getAnalysisUsage()
6486 INITIALIZE_PASS_DEPENDENCY(DemandedBitsWrapperPass) in INITIALIZE_PASS_BEGIN()
H A DLoopVectorize.cpp1448 auto *DB = &getAnalysis<DemandedBitsWrapperPass>().getDemandedBits(); in runOnFunction()
1467 AU.addRequired<DemandedBitsWrapperPass>(); in getAnalysisUsage()
6028 INITIALIZE_PASS_DEPENDENCY(DemandedBitsWrapperPass)