OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestModuleAnalysis
(Results
1 - 2
of
2
) sorted by null
/external/llvm/unittests/IR/
PassManagerTest.cpp
51
class
TestModuleAnalysis
: public AnalysisInfoMixin<
TestModuleAnalysis
> {
58
TestModuleAnalysis
(int &Runs) : Runs(Runs) {}
69
friend AnalysisInfoMixin<
TestModuleAnalysis
>;
75
char
TestModuleAnalysis
::PassID;
100
(void)AM.getResult<
TestModuleAnalysis
>(M);
120
if (
TestModuleAnalysis
::Result *TMA =
121
MAM.getCachedResult<
TestModuleAnalysis
>(*F.getParent()))
187
EXPECT_FALSE(PA1.preserved<
TestModuleAnalysis
>());
190
EXPECT_FALSE(PA2.preserved<
TestModuleAnalysis
>());
[
all
...]
/external/llvm/unittests/Analysis/
CGSCCPassManagerTest.cpp
25
class
TestModuleAnalysis
{
33
static StringRef name() { return "
TestModuleAnalysis
"; }
35
TestModuleAnalysis
(int &Runs) : Runs(Runs) {}
48
char
TestModuleAnalysis
::PassID;
134
(void)AM.getResult<
TestModuleAnalysis
>(M);
159
if (
TestModuleAnalysis
::Result *TMA =
160
MAM.getCachedResult<
TestModuleAnalysis
>(
268
MAM.registerPass([&] { return
TestModuleAnalysis
(ModuleAnalysisRuns); });
Completed in 194 milliseconds