Searched refs:RegisterPass (Results 1 – 18 of 18) sorted by relevance
/external/llvm/tools/bugpoint-passes/ |
D | TestPasses.cpp | 47 static RegisterPass<CrashOnCalls> 73 static RegisterPass<DeleteCalls> 98 static RegisterPass<CrashOnDeclFunc> 124 static RegisterPass<CrashOnTooManyCUs>
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Hello/ |
D | Hello.cpp | 40 static RegisterPass<Hello> X("hello", "Hello World Pass"); 63 static RegisterPass<Hello2>
|
/external/llvm/lib/Transforms/Hello/ |
D | Hello.cpp | 41 static RegisterPass<Hello> X("hello", "Hello World Pass"); 64 static RegisterPass<Hello2>
|
/external/swiftshader/third_party/LLVM/tools/bugpoint-passes/ |
D | TestPasses.cpp | 47 static RegisterPass<CrashOnCalls> 73 static RegisterPass<DeleteCalls>
|
/external/swiftshader/third_party/LLVM/tools/opt/ |
D | AnalysisWrappers.cpp | 72 static RegisterPass<ExternalFunctionsPassedConstants> 93 static RegisterPass<CallGraphPrinter>
|
D | GraphPrinters.cpp | 90 static RegisterPass<CallGraphPrinter> P2("dot-callgraph", 117 static RegisterPass<DomInfoPrinter>
|
D | PrintSCC.cpp | 67 static RegisterPass<CFGSCC> 71 static RegisterPass<CallGraphSCC>
|
/external/llvm/tools/opt/ |
D | PrintSCC.cpp | 67 static RegisterPass<CFGSCC> 71 static RegisterPass<CallGraphSCC>
|
D | GraphPrinters.cpp | 45 static RegisterPass<DomInfoPrinter>
|
D | AnalysisWrappers.cpp | 71 static RegisterPass<ExternalFunctionsPassedConstants>
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | PassSupport.h | 198 struct RegisterPass : public PassInfo { struct 201 RegisterPass(const char *PassArg, const char *Name, bool CFGOnly = false,
|
/external/llvm/include/llvm/ |
D | PassSupport.h | 102 template <typename passName> struct RegisterPass : public PassInfo { struct 104 RegisterPass(const char *PassArg, const char *Name, bool CFGOnly = false,
|
/external/llvm/utils/valgrind/ |
D | i386-pc-linux-gnu.supp | 2 False leak under RegisterPass
|
D | x86_64-pc-linux-gnu.supp | 2 False leak under RegisterPass
|
/external/swiftshader/third_party/LLVM/utils/valgrind/ |
D | i386-pc-linux-gnu.supp | 2 False leak under RegisterPass
|
D | x86_64-pc-linux-gnu.supp | 2 False leak under RegisterPass
|
/external/llvm/lib/Target/Sparc/ |
D | LeonPasses.cpp | 436 static RegisterPass<ReplaceSDIV> X("replace-sdiv", "Replase SDIV Pass", false,
|
/external/llvm/docs/ |
D | WritingAnLLVMPass.rst | 168 static RegisterPass<Hello> X("hello", "Hello World Pass", 203 static RegisterPass<Hello> X("hello", "Hello World Pass", false, false); 217 registered your pass with ``RegisterPass``, you will be able to use the 745 As we saw above, passes are registered with the ``RegisterPass`` template. The
|