Searched refs:getAnalysis (Results 1 - 25 of 160) sorted by relevance

1234567

/external/llvm/tools/opt/
H A DGraphPrinters.cpp38 getAnalysis<DominatorTreeWrapperPass>().dump();
H A DAnalysisWrappers.cpp85 getAnalysis<CallGraphWrapperPass>().print(errs(), &M);
/external/llvm/include/llvm/Analysis/
H A DDOTGraphTraitsPass.h40 GraphT Graph = AnalysisGraphTraitsT::getGraph(&getAnalysis<AnalysisT>());
67 GraphT Graph = AnalysisGraphTraitsT::getGraph(&getAnalysis<AnalysisT>());
104 GraphT Graph = AnalysisGraphTraitsT::getGraph(&getAnalysis<AnalysisT>());
130 GraphT Graph = AnalysisGraphTraitsT::getGraph(&getAnalysis<AnalysisT>());
/external/llvm/lib/CodeGen/
H A DMachineFunctionAnalysis.cpp49 getAnalysis<MachineModuleInfo>(),
H A DMachineFunctionPass.cpp32 MachineFunction &MF = getAnalysis<MachineFunctionAnalysis>().getMF();
H A DRegAllocBasic.cpp276 RegAllocBase::init(getAnalysis<VirtRegMap>(),
277 getAnalysis<LiveIntervals>(),
278 getAnalysis<LiveRegMatrix>());
281 getAnalysis<MachineLoopInfo>(),
282 getAnalysis<MachineBlockFrequencyInfo>());
H A DMachineLoopInfo.cpp39 LI.Analyze(getAnalysis<MachineDominatorTree>().getBase());
H A DLiveRegMatrix.cpp53 LIS = &getAnalysis<LiveIntervals>();
54 VRM = &getAnalysis<VirtRegMap>();
H A DMachineBlockFrequencyInfo.cpp142 getAnalysis<MachineBranchProbabilityInfo>();
143 MachineLoopInfo &MLI = getAnalysis<MachineLoopInfo>();
/external/llvm/lib/Transforms/Scalar/
H A DFlattenCFGPass.cpp72 AA = &getAnalysis<AliasAnalysis>();
H A DPartiallyInlineLibCalls.cpp63 TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
64 const TargetTransformInfo *TTI = &getAnalysis<TargetTransformInfo>();
H A DConstantProp.cpp73 TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
H A DLoopInstSimplify.cpp75 LoopInfo *LI = &getAnalysis<LoopInfo>();
78 const TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAnalysisManager.h115 T *getAnalysis(Decl const *D) { function in class:clang::ento::AnalysisManager
116 return AnaCtxMgr.getContext(D)->getAnalysis<T>();
/external/llvm/lib/Analysis/
H A DAliasAnalysisCounter.cpp101 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal);
127 AliasResult R = getAnalysis<AliasAnalysis>().alias(LocA, LocB);
153 ModRefResult R = getAnalysis<AliasAnalysis>().getModRefInfo(CS, Loc);
H A DBlockFrequencyInfo.cpp131 BranchProbabilityInfo &BPI = getAnalysis<BranchProbabilityInfo>();
132 LoopInfo &LI = getAnalysis<LoopInfo>();
H A DDelinearization.cpp68 SE = &getAnalysis<ScalarEvolution>();
69 LI = &getAnalysis<LoopInfo>();
/external/llvm/lib/Transforms/IPO/
H A DInlineAlways.cpp106 ICA = &getAnalysis<InlineCostAnalysis>();
H A DInlineSimple.cpp94 ICA = &getAnalysis<InlineCostAnalysis>();
/external/llvm/lib/Transforms/Utils/
H A DMem2Reg.cpp65 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
H A DSimplifyInstructions.cpp54 const TargetLibraryInfo *TLI = &getAnalysis<TargetLibraryInfo>();
/external/llvm/include/llvm/
H A DPass.h150 /// getAnalysis<AnalysisType>() function, below.
196 /// This is different than getAnalysis in that it can fail (if the analysis
213 /// getAnalysis<AnalysisType>() - This function is used by subclasses to get
218 AnalysisType &getAnalysis() const; // Defined in PassAnalysisSupport.h
221 AnalysisType &getAnalysis(Function &F); // Defined in PassAnalysisSupport.h
268 /// these passes with getAnalysis<>.
H A DPassAnalysisSupport.h163 // that are required by the current pass (to implement getAnalysis()).
172 /// This is different than getAnalysis in that it can fail (if the analysis
194 /// getAnalysis<AnalysisType>() - This function is used by subclasses to get
199 AnalysisType &Pass::getAnalysis() const { function in class:llvm::Pass
206 assert(PI && "getAnalysis for unregistered pass!");
213 "getAnalysis*() called on an analysis that was not "
223 /// getAnalysis<AnalysisType>() - This function is used by subclasses to get
228 AnalysisType &Pass::getAnalysis(Function &F) { function in class:llvm::Pass
236 assert(PI && "getAnalysis for unregistered pass!");
/external/llvm/unittests/Analysis/
H A DCFGTest.cpp95 LoopInfo *LI = &getAnalysis<LoopInfo>();
97 &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
/external/llvm/lib/Target/R600/
H A DSIFixSGPRLiveRanges.cpp78 LiveIntervals *LIS = &getAnalysis<LiveIntervals>();

Completed in 4422 milliseconds

1234567