HomeSort by relevance Sort by last modified time
    Searched refs:getAnalysis (Results 1 - 25 of 182) sorted by null

1 2 3 4 5 6 7 8

  /external/llvm/tools/opt/
GraphPrinters.cpp 38 getAnalysis<DominatorTreeWrapperPass>().dump();
AnalysisWrappers.cpp 85 getAnalysis<CallGraphWrapperPass>().print(errs(), &M);
  /external/llvm/lib/CodeGen/
MachineDominanceFrontier.cpp 42 Base.analyze(getAnalysis<MachineDominatorTree>().getBase());
MachineRegionInfo.cpp 84 auto DT = &getAnalysis<MachineDominatorTree>();
85 auto PDT = &getAnalysis<MachinePostDominatorTree>();
86 auto DF = &getAnalysis<MachineDominanceFrontier>();
MachineFunctionAnalysis.cpp 49 getAnalysis<MachineModuleInfo>());
MachineFunctionPass.cpp 39 MachineFunction &MF = getAnalysis<MachineFunctionAnalysis>().getMF();
RegAllocBasic.cpp 275 RegAllocBase::init(getAnalysis<VirtRegMap>(),
276 getAnalysis<LiveIntervals>(),
277 getAnalysis<LiveRegMatrix>());
280 getAnalysis<MachineLoopInfo>(),
281 getAnalysis<MachineBlockFrequencyInfo>());
MachineLoopInfo.cpp 40 LI.Analyze(getAnalysis<MachineDominatorTree>().getBase());
  /external/llvm/lib/Transforms/Utils/
Mem2Reg.cpp 68 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
70 getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
SimplifyInstructions.cpp 56 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
58 &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
  /external/llvm/lib/Analysis/
RegionInfo.cpp 121 auto DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
122 auto PDT = &getAnalysis<PostDominatorTree>();
123 auto DF = &getAnalysis<DominanceFrontier>();
DominanceFrontier.cpp 40 Base.analyze(getAnalysis<DominatorTreeWrapperPass>().getDomTree());
AliasAnalysisCounter.cpp 102 return getAnalysis<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal);
128 AliasResult R = getAnalysis<AliasAnalysis>().alias(LocA, LocB);
154 ModRefResult R = getAnalysis<AliasAnalysis>().getModRefInfo(CS, Loc);
  /external/llvm/include/llvm/Analysis/
DOTGraphTraitsPass.h 40 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/Transforms/Scalar/
FlattenCFGPass.cpp 72 AA = &getAnalysis<AliasAnalysis>();
LoopInstSimplify.cpp 79 LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
81 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
82 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(
NaryReassociate.cpp 163 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
164 SE = &getAnalysis<ScalarEvolution>();
165 TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
PartiallyInlineLibCalls.cpp 64 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
66 &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
ConstantProp.cpp 72 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
AnalysisManager.h 118 T *getAnalysis(Decl const *D) {
119 return AnaCtxMgr.getContext(D)->getAnalysis<T>();
  /external/llvm/lib/Target/PowerPC/
PPCLoopDataPrefetch.cpp 106 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
107 SE = &getAnalysis<ScalarEvolution>();
109 AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
110 TTI = &getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
  /external/llvm/lib/Transforms/IPO/
InlineAlways.cpp 110 ICA = &getAnalysis<InlineCostAnalysis>();
InlineSimple.cpp 98 ICA = &getAnalysis<InlineCostAnalysis>();
  /external/llvm/include/llvm/
Pass.h 150 /// 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<>.
PassAnalysisSupport.h 163 // 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 {
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) {
236 assert(PI && "getAnalysis for unregistered pass!");

Completed in 871 milliseconds

1 2 3 4 5 6 7 8