Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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>
/llvm-project-15.0.7/llvm/lib/Transforms/Hello/
H A DHello.cpp40 static RegisterPass<Hello> X("hello", "Hello World Pass");
63 static RegisterPass<Hello2>
/llvm-project-15.0.7/polly/lib/Analysis/
H A DScopGraphPrinter.cpp205 static RegisterPass<ScopViewerWrapperPass> X("view-scops",
208 static RegisterPass<ScopOnlyViewerWrapperPass>
212 static RegisterPass<ScopPrinterWrapperPass>
215 static RegisterPass<ScopOnlyPrinterWrapperPass>
/llvm-project-15.0.7/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>
/llvm-project-15.0.7/llvm/include/llvm/
H A DPassSupport.h94 template <typename passName> struct RegisterPass : public PassInfo { struct
96 RegisterPass(StringRef PassArg, StringRef Name, bool CFGOnly = false,
/llvm-project-15.0.7/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
/llvm-project-15.0.7/llvm/examples/Bye/
H A DBye.cpp43 static RegisterPass<LegacyBye> X("goodbye", "Good Bye World Pass",
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DDebugify.cpp1061 static RegisterPass<DebugifyModulePass> DM("debugify",
1065 static RegisterPass<CheckDebugifyModulePass>
1069 static RegisterPass<DebugifyFunctionPass> DF("debugify-function",
1073 static RegisterPass<CheckDebugifyFunctionPass>
/llvm-project-15.0.7/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