Home
last modified time | relevance | path

Searched refs:Pass (Results 1 – 25 of 1813) sorted by relevance

12345678910>>...73

/external/e2fsprogs/tests/f_resize_inode/
Dexpect10 Pass 1: Checking inodes, blocks, and sizes
11 Pass 2: Checking directory structure
12 Pass 3: Checking directory connectivity
13 Pass 4: Checking reference counts
14 Pass 5: Checking group summary information
23 Pass 1: Checking inodes, blocks, and sizes
24 Pass 2: Checking directory structure
25 Pass 3: Checking directory connectivity
26 Pass 4: Checking reference counts
27 Pass 5: Checking group summary information
[all …]
/external/llvm/include/llvm/IR/
DLegacyPassManagers.h96 class Pass; variable
118 Pass *P;
123 explicit PassManagerPrettyStackEntry(Pass *p) in PassManagerPrettyStackEntry()
125 PassManagerPrettyStackEntry(Pass *p, Value &v) in PassManagerPrettyStackEntry()
127 PassManagerPrettyStackEntry(Pass *p, Module &m) in PassManagerPrettyStackEntry()
184 void schedulePass(Pass *P);
187 void setLastUser(ArrayRef<Pass*> AnalysisPasses, Pass *P);
190 void collectLastUses(SmallVectorImpl<Pass *> &LastUses, Pass *P);
195 Pass *findAnalysisPass(AnalysisID AID);
201 AnalysisUsage *findAnalysisUsage(Pass *P);
[all …]
DPassManagerInternal.h57 explicit PassModel(PassT Pass) : Pass(std::move(Pass)) {} in PassModel()
60 PassModel(const PassModel &Arg) : Pass(Arg.Pass) {} in PassModel()
61 PassModel(PassModel &&Arg) : Pass(std::move(Arg.Pass)) {} in PassModel()
64 swap(LHS.Pass, RHS.Pass); in swap()
72 return Pass.run(IR, AM); in run()
75 PassT Pass; member
214 explicit AnalysisPassModel(PassT Pass) : Pass(std::move(Pass)) {}
217 AnalysisPassModel(const AnalysisPassModel &Arg) : Pass(Arg.Pass) {}
218 AnalysisPassModel(AnalysisPassModel &&Arg) : Pass(std::move(Arg.Pass)) {}
221 swap(LHS.Pass, RHS.Pass);
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/
DScalar.h26 class Pass; variable
58 Pass *createDeadInstEliminationPass();
107 Pass *createLoopGuardWideningPass();
128 Pass *createInductiveRangeCheckEliminationPass();
135 Pass *createIndVarSimplifyPass();
141 Pass *createLICMPass();
148 Pass *createLoopSinkPass();
154 Pass *createLoopPredicationPass();
161 Pass *createLoopInterchangePass();
168 Pass *createLoopStrengthReducePass();
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DLegacyPassManagers.h96 class Pass; variable
118 Pass *P;
123 explicit PassManagerPrettyStackEntry(Pass *p) in PassManagerPrettyStackEntry()
125 PassManagerPrettyStackEntry(Pass *p, Value &v) in PassManagerPrettyStackEntry()
127 PassManagerPrettyStackEntry(Pass *p, Module &m) in PassManagerPrettyStackEntry()
184 void schedulePass(Pass *P);
187 void setLastUser(ArrayRef<Pass*> AnalysisPasses, Pass *P);
190 void collectLastUses(SmallVectorImpl<Pass *> &LastUses, Pass *P);
195 Pass *findAnalysisPass(AnalysisID AID);
201 AnalysisUsage *findAnalysisUsage(Pass *P);
[all …]
DOptBisect.h22 class Pass; variable
36 virtual bool shouldRunPass(const Pass *P, const Module &U) { return true; } in shouldRunPass()
37 virtual bool shouldRunPass(const Pass *P, const Function &U) {return true; } in shouldRunPass()
38 virtual bool shouldRunPass(const Pass *P, const BasicBlock &U) { return true; } in shouldRunPass()
39 virtual bool shouldRunPass(const Pass *P, const Region &U) { return true; } in shouldRunPass()
40 virtual bool shouldRunPass(const Pass *P, const Loop &U) { return true; } in shouldRunPass()
41 virtual bool shouldRunPass(const Pass *P, const CallGraphSCC &U) { return true; } in shouldRunPass()
73 bool shouldRunPass(const Pass *P, const Module &U) override;
74 bool shouldRunPass(const Pass *P, const Function &U) override;
75 bool shouldRunPass(const Pass *P, const BasicBlock &U) override;
[all …]
/external/llvm/include/llvm/Transforms/
DScalar.h26 class Pass; variable
58 Pass *createDeadInstEliminationPass();
112 Pass *createInductiveRangeCheckEliminationPass();
119 Pass *createIndVarSimplifyPass();
139 Pass *createLICMPass();
146 Pass *createLoopInterchangePass();
153 Pass *createLoopStrengthReducePass();
159 Pass *createLoopUnswitchPass(bool OptimizeForSize = false);
165 Pass *createLoopInstSimplifyPass();
171 Pass *createLoopUnrollPass(int Threshold = -1, int Count = -1,
[all …]
DIPO.h26 class Pass; variable
92 Pass *createFunctionImportPass(const ModuleSummaryIndex *Index = nullptr);
103 Pass *createFunctionInliningPass();
104 Pass *createFunctionInliningPass(int Threshold);
105 Pass *createFunctionInliningPass(unsigned OptLevel, unsigned SizeOptLevel);
110 Pass *createAlwaysInlinerPass();
111 Pass *createAlwaysInlinerPass(bool InsertLifetime);
117 Pass *createPruneEHPass();
153 Pass *createArgumentPromotionPass(unsigned maxElements = 3);
173 Pass *createLoopExtractorPass();
[all …]
/external/llvm/include/llvm/Analysis/
DCGSCCPassManager.h70 explicit ModuleToPostOrderCGSCCPassAdaptor(CGSCCPassT Pass, bool DebugLogging = false)
71 : Pass(std::move(Pass)), DebugLogging(DebugLogging) {} in Pass() argument
76 : Pass(Arg.Pass), DebugLogging(Arg.DebugLogging) {} in ModuleToPostOrderCGSCCPassAdaptor()
78 : Pass(std::move(Arg.Pass)), DebugLogging(Arg.DebugLogging) {} in ModuleToPostOrderCGSCCPassAdaptor()
82 swap(LHS.Pass, RHS.Pass); in swap()
106 PreservedAnalyses PassPA = Pass.run(C, CGAM); in run()
133 CGSCCPassT Pass;
141 createModuleToPostOrderCGSCCPassAdaptor(CGSCCPassT Pass, bool DebugLogging = false) {
142 return ModuleToPostOrderCGSCCPassAdaptor<CGSCCPassT>(std::move(Pass), DebugLogging);
168 explicit CGSCCToFunctionPassAdaptor(FunctionPassT Pass, bool DebugLogging = false)
[all …]
/external/llvm/lib/IR/
DPass.cpp34 Pass::~Pass() { in ~Pass()
41 Pass *ModulePass::createPrinterPass(raw_ostream &O, in createPrinterPass()
54 bool Pass::mustPreserveAnalysisID(char &AID) const { in mustPreserveAnalysisID()
59 void Pass::dumpPassStructure(unsigned Offset) { in dumpPassStructure()
67 const char *Pass::getPassName() const { in getPassName()
75 void Pass::preparePassManager(PMStack &) { in preparePassManager()
79 PassManagerType Pass::getPotentialPassManagerType() const { in getPotentialPassManagerType()
84 void Pass::getAnalysisUsage(AnalysisUsage &) const { in getAnalysisUsage()
88 void Pass::releaseMemory() { in releaseMemory()
92 void Pass::verifyAnalysis() const { in verifyAnalysis()
[all …]
DLegacyPassManager.cpp194 Pass *getAsPass() override { return this; } in getAsPass()
230 class FunctionPassManagerImpl : public Pass,
239 Pass(PT_PassManager, ID), PMDataManager(), in FunctionPassManagerImpl()
243 void add(Pass *P) { in add()
248 Pass *createPrinterPass(raw_ostream &O, in createPrinterPass()
271 Pass *getAsPass() override { return this; } in getAsPass()
301 class MPPassManager : public Pass, public PMDataManager {
305 Pass(PT_PassManager, ID), PMDataManager() { } in MPPassManager()
316 Pass *createPrinterPass(raw_ostream &O, in createPrinterPass()
325 using llvm::Pass::doInitialization;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DPass.cpp43 Pass::~Pass() { in ~Pass()
50 Pass *ModulePass::createPrinterPass(raw_ostream &OS, in createPrinterPass()
63 bool Pass::mustPreserveAnalysisID(char &AID) const { in mustPreserveAnalysisID()
68 void Pass::dumpPassStructure(unsigned Offset) { in dumpPassStructure()
75 StringRef Pass::getPassName() const { in getPassName()
83 void Pass::preparePassManager(PMStack &) { in preparePassManager()
87 PassManagerType Pass::getPotentialPassManagerType() const { in getPotentialPassManagerType()
92 void Pass::getAnalysisUsage(AnalysisUsage &) const { in getAnalysisUsage()
96 void Pass::releaseMemory() { in releaseMemory()
100 void Pass::verifyAnalysis() const { in verifyAnalysis()
[all …]
DLegacyPassManager.cpp143 void PMDataManager::emitInstrCountChangedRemark(Pass *P, Module &M, in emitInstrCountChangedRemark()
253 Pass *getAsPass() override { return this; } in getAsPass()
287 class FunctionPassManagerImpl : public Pass,
296 Pass(PT_PassManager, ID), PMDataManager(), in FunctionPassManagerImpl()
300 void add(Pass *P) { in add()
305 Pass *createPrinterPass(raw_ostream &O, in createPrinterPass()
328 Pass *getAsPass() override { return this; } in getAsPass()
358 class MPPassManager : public Pass, public PMDataManager {
362 Pass(PT_PassManager, ID), PMDataManager() { } in MPPassManager()
373 Pass *createPrinterPass(raw_ostream &O, in createPrinterPass()
[all …]
/external/e2fsprogs/tests/f_opt_extent_ext3/
Dexpect12 Pass 1: Checking inodes, blocks, and sizes
13 Pass 2: Checking directory structure
14 Pass 3: Checking directory connectivity
15 Pass 4: Checking reference counts
16 Pass 5: Checking group summary information
19 Pass 1: Checking inodes, blocks, and sizes
20 Pass 2: Checking directory structure
21 Pass 3: Checking directory connectivity
22 Pass 3A: Optimizing directories
23 Pass 4: Checking reference counts
[all …]
/external/e2fsprogs/tests/f_opt_extent/
Dexpect12 Pass 1: Checking inodes, blocks, and sizes
13 Pass 2: Checking directory structure
14 Pass 3: Checking directory connectivity
15 Pass 4: Checking reference counts
16 Pass 5: Checking group summary information
19 Pass 1: Checking inodes, blocks, and sizes
20 Pass 2: Checking directory structure
21 Pass 3: Checking directory connectivity
22 Pass 3A: Optimizing directories
23 Pass 4: Checking reference counts
[all …]
/external/e2fsprogs/tests/t_iexpand_mcsum/
Dexpect12 Pass 1: Checking inodes, blocks, and sizes
13 Pass 2: Checking directory structure
14 Pass 3: Checking directory connectivity
15 Pass 4: Checking reference counts
16 Pass 5: Checking group summary information
29 Pass 1: Checking inodes, blocks, and sizes
30 Pass 2: Checking directory structure
31 Pass 3: Checking directory connectivity
32 Pass 3A: Optimizing directories
33 Pass 4: Checking reference counts
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Darm64-opt-remarks-lazy-bfi.ll20 ; HOTNESS: Executing Pass 'Spill Code Placement Analysis'
21 ; HOTNESS-NEXT: Executing Pass 'Lazy Machine Block Frequency Analysis'
22 ; HOTNESS-NEXT: Executing Pass 'Machine Optimization Remark Emitter'
24 ; HOTNESS-NEXT: Executing Pass 'Greedy Register Allocator'
31 ; HOTNESS: Freeing Pass 'Machine Outliner'
32 ; HOTNESS-NEXT: Executing Pass 'Function Pass Manager'
33 ; HOTNESS-NEXT: Executing Pass 'Verify generated machine code'
34 ; HOTNESS-NEXT: Freeing Pass 'Verify generated machine code'
35 ; HOTNESS-NEXT: Executing Pass 'Lazy Machine Block Frequency Analysis'
36 ; HOTNESS-NEXT: Executing Pass 'Machine Optimization Remark Emitter'
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/
DPass.h81 class Pass {
87 explicit Pass(PassKind K, char &pid) : PassID(&pid), Kind(K) {} in Pass() function
88 Pass(const Pass &) = delete;
89 Pass &operator=(const Pass &) = delete;
90 virtual ~Pass();
124 virtual Pass *createPrinterPass(raw_ostream &OS,
185 static Pass *createPass(AnalysisID ID);
225 class ModulePass : public Pass {
227 explicit ModulePass(char &pid) : Pass(PT_Module, pid) {} in ModulePass()
233 Pass *createPrinterPass(raw_ostream &OS,
[all …]
DPassAnalysisSupport.h32 class Pass; variable
156 Pass *findImplPass(AnalysisID PI) { in findImplPass()
157 Pass *ResultPass = nullptr; in findImplPass()
168 Pass *findImplPass(Pass *P, AnalysisID PI, Function &F);
170 void addAnalysisImplsPair(AnalysisID PI, Pass *P) { in addAnalysisImplsPair()
173 std::pair<AnalysisID, Pass*> pir = std::make_pair(PI,P); in addAnalysisImplsPair()
183 Pass *getAnalysisIfAvailable(AnalysisID ID, bool Direction) const;
188 std::vector<std::pair<AnalysisID, Pass *>> AnalysisImpls;
202 AnalysisType *Pass::getAnalysisIfAvailable() const { in getAnalysisIfAvailable()
207 Pass *ResultPass = Resolver->getAnalysisIfAvailable(PI, true); in getAnalysisIfAvailable()
[all …]
/external/e2fsprogs/tests/t_dangerous/
Dexpect31 Pass 1: Checking inodes, blocks, and sizes
32 Pass 2: Checking directory structure
33 Pass 3: Checking directory connectivity
34 Pass 4: Checking reference counts
35 Pass 5: Checking group summary information
48 Pass 1: Checking inodes, blocks, and sizes
49 Pass 2: Checking directory structure
50 Pass 3: Checking directory connectivity
51 Pass 4: Checking reference counts
52 Pass 5: Checking group summary information
[all …]
/external/python/cryptography/vectors/cryptography_vectors/ciphers/AES/CCM/
DDVPT256.rsp15 Result = Pass
40 Result = Pass
53 Result = Pass
84 Result = Pass
97 Result = Pass
114 Result = Pass
139 Result = Pass
152 Result = Pass
183 Result = Pass
196 Result = Pass
[all …]
DDVPT128.rsp15 Result = Pass
40 Result = Pass
83 Result = Pass
90 Result = Pass
97 Result = Pass
114 Result = Pass
139 Result = Pass
182 Result = Pass
189 Result = Pass
196 Result = Pass
[all …]
DDVPT192.rsp15 Result = Pass
40 Result = Pass
83 Result = Pass
90 Result = Pass
97 Result = Pass
114 Result = Pass
139 Result = Pass
182 Result = Pass
189 Result = Pass
196 Result = Pass
[all …]
/external/llvm/include/llvm/
DPass.h81 class Pass {
85 void operator=(const Pass&) = delete;
86 Pass(const Pass &) = delete;
89 explicit Pass(PassKind K, char &pid) in Pass() function
91 virtual ~Pass();
129 virtual Pass *createPrinterPass(raw_ostream &O,
191 static Pass *createPass(AnalysisID ID);
235 class ModulePass : public Pass {
238 Pass *createPrinterPass(raw_ostream &O,
250 explicit ModulePass(char &pid) : Pass(PT_Module, pid) {} in ModulePass()
[all …]
/external/e2fsprogs/tests/j_corrupt_revoke_csum/
Dexpect2 Pass 1: Checking inodes, blocks, and sizes
3 Pass 2: Checking directory structure
4 Pass 3: Checking directory connectivity
5 Pass 4: Checking reference counts
6 Pass 5: Checking group summary information
9 Pass 1: Checking inodes, blocks, and sizes
10 Pass 2: Checking directory structure
11 Pass 3: Checking directory connectivity
12 Pass 4: Checking reference counts
13 Pass 5: Checking group summary information

12345678910>>...73