Home
last modified time | relevance | path

Searched refs:RegisterPass (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/bugpoint-passes/
H A DTestPasses.cpp52 static RegisterPass<CrashOnCalls>
80 static RegisterPass<DeleteCalls>
105 static RegisterPass<CrashOnDeclFunc>
130 static RegisterPass<CrashOnTooManyCUs>
155 static RegisterPass<CrashOnFunctionAttribute>
184 static RegisterPass<CrashOnMetadata>
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Hello/
H A DHello.cpp40 static RegisterPass<Hello> X("hello", "Hello World Pass");
63 static RegisterPass<Hello2>
/netbsd-src/external/apache2/llvm/dist/llvm/tools/opt/
H A DPrintSCC.cpp66 static RegisterPass<CFGSCC>
70 static RegisterPass<CallGraphSCC>
H A DGraphPrinters.cpp44 static RegisterPass<DomInfoPrinter>
H A DAnalysisWrappers.cpp69 static RegisterPass<ExternalFunctionsPassedConstants>
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/
H A DPassSupport.h94 template <typename passName> struct RegisterPass : public PassInfo { struct
96 RegisterPass(StringRef PassArg, StringRef Name, bool CFGOnly = false,
/netbsd-src/external/apache2/llvm/dist/llvm/utils/valgrind/
H A Di386-pc-linux-gnu.supp2 False leak under RegisterPass
H A Dx86_64-pc-linux-gnu.supp2 False leak under RegisterPass
/netbsd-src/external/apache2/llvm/dist/llvm/examples/Bye/
H A DBye.cpp43 static RegisterPass<LegacyBye> X("goodbye", "Good Bye World Pass",
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DDebugify.cpp1016 static RegisterPass<DebugifyModulePass> DM("debugify",
1020 static RegisterPass<CheckDebugifyModulePass>
1024 static RegisterPass<DebugifyFunctionPass> DF("debugify-function",
1028 static RegisterPass<CheckDebugifyFunctionPass>
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DWritingAnLLVMPass.rst177 static RegisterPass<Hello> X("hello", "Hello World Pass",
227 static RegisterPass<Hello> X("hello", "Hello World Pass",
248 registered your pass with ``RegisterPass``, you will be able to use the
711 As we saw above, passes are registered with the ``RegisterPass`` template. The