Home
last modified time | relevance | path

Searched refs:CycleInfoWrapperPass (Results 1 – 4 of 4) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Analysis/
H A DCycleAnalysis.cpp47 char CycleInfoWrapperPass::ID = 0;
49 CycleInfoWrapperPass::CycleInfoWrapperPass() : FunctionPass(ID) { in CycleInfoWrapperPass() function in CycleInfoWrapperPass
53 INITIALIZE_PASS_BEGIN(CycleInfoWrapperPass, "cycles", "Cycle Info Analysis",
55 INITIALIZE_PASS_END(CycleInfoWrapperPass, "cycles", "Cycle Info Analysis", true,
58 void CycleInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()
62 bool CycleInfoWrapperPass::runOnFunction(Function &Func) { in runOnFunction()
70 void CycleInfoWrapperPass::print(raw_ostream &OS, const Module *) const { in print()
75 void CycleInfoWrapperPass::releaseMemory() { in releaseMemory()
H A DUniformityAnalysis.cpp155 INITIALIZE_PASS_DEPENDENCY(CycleInfoWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
163 AU.addRequiredTransitive<CycleInfoWrapperPass>(); in INITIALIZE_PASS_DEPENDENCY()
168 auto &cycleInfo = getAnalysis<CycleInfoWrapperPass>().getResult(); in runOnFunction()
/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCycleAnalysis.h26 class CycleInfoWrapperPass : public FunctionPass {
33 CycleInfoWrapperPass();
55 using LegacyWrapper = CycleInfoWrapperPass;
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUAttributor.cpp1093 AU.addRequired<CycleInfoWrapperPass>(); in getAnalysisUsage()
1121 INITIALIZE_PASS_DEPENDENCY(CycleInfoWrapperPass);