OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getAnalysis
(Results
1 - 25
of
159
) sorted by null
1
2
3
4
5
6
7
/external/llvm/tools/opt/
GraphPrinters.cpp
38
getAnalysis
<DominatorTreeWrapperPass>().dump();
AnalysisWrappers.cpp
85
getAnalysis
<CallGraphWrapperPass>().print(errs(), &M);
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
AnalysisManager.h
115
T *
getAnalysis
(Decl const *D) {
116
return AnaCtxMgr.getContext(D)->
getAnalysis
<T>();
/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/CodeGen/
MachineFunctionAnalysis.cpp
49
getAnalysis
<MachineModuleInfo>(),
MachineFunctionPass.cpp
32
MachineFunction &MF =
getAnalysis
<MachineFunctionAnalysis>().getMF();
RegAllocBasic.cpp
276
RegAllocBase::init(
getAnalysis
<VirtRegMap>(),
277
getAnalysis
<LiveIntervals>(),
278
getAnalysis
<LiveRegMatrix>());
281
getAnalysis
<MachineLoopInfo>(),
282
getAnalysis
<MachineBlockFrequencyInfo>());
MachineLoopInfo.cpp
39
LI.Analyze(
getAnalysis
<MachineDominatorTree>().getBase());
LiveRegMatrix.cpp
53
LIS = &
getAnalysis
<LiveIntervals>();
54
VRM = &
getAnalysis
<VirtRegMap>();
MachineBlockFrequencyInfo.cpp
142
getAnalysis
<MachineBranchProbabilityInfo>();
143
MachineLoopInfo &MLI =
getAnalysis
<MachineLoopInfo>();
/external/llvm/lib/Transforms/Scalar/
FlattenCFGPass.cpp
72
AA = &
getAnalysis
<AliasAnalysis>();
PartiallyInlineLibCalls.cpp
63
TargetLibraryInfo *TLI = &
getAnalysis
<TargetLibraryInfo>();
64
const TargetTransformInfo *TTI = &
getAnalysis
<TargetTransformInfo>();
ConstantProp.cpp
73
TargetLibraryInfo *TLI = &
getAnalysis
<TargetLibraryInfo>();
LoopInstSimplify.cpp
75
LoopInfo *LI = &
getAnalysis
<LoopInfo>();
78
const TargetLibraryInfo *TLI = &
getAnalysis
<TargetLibraryInfo>();
/external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp
101
return
getAnalysis
<AliasAnalysis>().pointsToConstantMemory(Loc, OrLocal);
127
AliasResult R =
getAnalysis
<AliasAnalysis>().alias(LocA, LocB);
153
ModRefResult R =
getAnalysis
<AliasAnalysis>().getModRefInfo(CS, Loc);
BlockFrequencyInfo.cpp
131
BranchProbabilityInfo &BPI =
getAnalysis
<BranchProbabilityInfo>();
132
LoopInfo &LI =
getAnalysis
<LoopInfo>();
Delinearization.cpp
68
SE = &
getAnalysis
<ScalarEvolution>();
69
LI = &
getAnalysis
<LoopInfo>();
/external/llvm/lib/Transforms/IPO/
InlineAlways.cpp
106
ICA = &
getAnalysis
<InlineCostAnalysis>();
InlineSimple.cpp
94
ICA = &
getAnalysis
<InlineCostAnalysis>();
/external/llvm/lib/Transforms/Utils/
Mem2Reg.cpp
65
DominatorTree &DT =
getAnalysis
<DominatorTreeWrapperPass>().getDomTree();
SimplifyInstructions.cpp
54
const TargetLibraryInfo *TLI = &
getAnalysis
<TargetLibraryInfo>();
/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!");
/external/llvm/unittests/Analysis/
CFGTest.cpp
95
LoopInfo *LI = &
getAnalysis
<LoopInfo>();
97
&
getAnalysis
<DominatorTreeWrapperPass>().getDomTree();
/external/llvm/lib/Target/R600/
SIFixSGPRLiveRanges.cpp
78
LiveIntervals *LIS = &
getAnalysis
<LiveIntervals>();
Completed in 567 milliseconds
1
2
3
4
5
6
7