Searched refs:PassName (Results 1 - 8 of 8) sorted by relevance

/external/clang/test/CodeGenCXX/
H A D2004-09-27-DidntEmitTemplate.cpp9 template<typename PassName>
/external/llvm/tools/opt/
H A DPassPrinters.cpp30 std::string PassName; member in struct:__anon13103::FunctionPassPrinter
36 PassName = "FunctionPass Printer: " + PassToPrintName;
49 const char *getPassName() const override { return PassName.c_str(); }
63 std::string PassName; member in struct:__anon13103::CallGraphSCCPassPrinter
69 PassName = "CallGraphSCCPass Printer: " + PassToPrintName;
86 const char *getPassName() const override { return PassName.c_str(); }
100 std::string PassName; member in struct:__anon13103::ModulePassPrinter
106 PassName = "ModulePass Printer: " + PassToPrintName;
118 const char *getPassName() const override { return PassName.c_str(); }
132 std::string PassName; member in struct:__anon13103::LoopPassPrinter
165 std::string PassName; member in struct:__anon13103::RegionPassPrinter
200 std::string PassName; member in struct:__anon13103::BasicBlockPassPrinter
[all...]
/external/llvm/include/llvm/IR/
H A DDiagnosticInfo.h281 /// \p PassName is the name of the pass emitting this diagnostic.
290 const char *PassName, const Function &Fn,
292 : DiagnosticInfo(Kind, Severity), PassName(PassName), Fn(Fn), DLoc(DLoc),
317 const char *getPassName() const { return PassName; }
326 const char *PassName; member in class:llvm::DiagnosticInfoOptimizationBase
341 /// \p PassName is the name of the pass emitting this diagnostic. If
349 DiagnosticInfoOptimizationRemark(const char *PassName, const Function &Fn, argument
352 PassName, Fn, DLoc, Msg) {}
366 /// \p PassName i
288 DiagnosticInfoOptimizationBase(enum DiagnosticKind Kind, enum DiagnosticSeverity Severity, const char *PassName, const Function &Fn, const DebugLoc &DLoc, const Twine &Msg) argument
374 DiagnosticInfoOptimizationRemarkMissed(const char *PassName, const Function &Fn, const DebugLoc &DLoc, const Twine &Msg) argument
400 DiagnosticInfoOptimizationRemarkAnalysis(const char *PassName, const Function &Fn, const DebugLoc &DLoc, const Twine &Msg) argument
415 DiagnosticInfoOptimizationRemarkAnalysis(enum DiagnosticKind Kind, const char *PassName, const Function &Fn, const DebugLoc &DLoc, const Twine &Msg) argument
439 DiagnosticInfoOptimizationRemarkAnalysisFPCommute(const char *PassName, const Function &Fn, const DebugLoc &DLoc, const Twine &Msg) argument
466 DiagnosticInfoOptimizationRemarkAnalysisAliasing(const char *PassName, const Function &Fn, const DebugLoc &DLoc, const Twine &Msg) argument
[all...]
/external/llvm/include/llvm/
H A DPassInfo.h36 const char *const PassName; // Nice name for Pass member in class:llvm::PassInfo
53 : PassName(name), PassArgument(arg), PassID(pi), IsCFGOnlyPass(isCFGOnly),
60 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
66 const char *getPassName() const { return PassName; }
H A DPassSupport.h85 #define INITIALIZE_PASS_WITH_OPTIONS(PassName, Arg, Name, Cfg, Analysis) \
86 INITIALIZE_PASS_BEGIN(PassName, Arg, Name, Cfg, Analysis) \
87 PassName::registerOptions(); \
88 INITIALIZE_PASS_END(PassName, Arg, Name, Cfg, Analysis)
90 #define INITIALIZE_PASS_WITH_OPTIONS_BEGIN(PassName, Arg, Name, Cfg, Analysis) \
91 INITIALIZE_PASS_BEGIN(PassName, Arg, Name, Cfg, Analysis) \
92 PassName::registerOptions(); \
94 template<typename PassName>
95 Pass *callDefaultCtor() { return new PassName(); }
97 template <typename PassName> Pas
[all...]
/external/llvm/lib/IR/
H A DDiagnosticInfo.cpp188 void llvm::emitOptimizationRemark(LLVMContext &Ctx, const char *PassName, argument
191 Ctx.diagnose(DiagnosticInfoOptimizationRemark(PassName, Fn, DLoc, Msg));
194 void llvm::emitOptimizationRemarkMissed(LLVMContext &Ctx, const char *PassName, argument
198 Ctx.diagnose(DiagnosticInfoOptimizationRemarkMissed(PassName, Fn, DLoc, Msg));
202 const char *PassName,
207 DiagnosticInfoOptimizationRemarkAnalysis(PassName, Fn, DLoc, Msg));
211 const char *PassName,
215 Ctx.diagnose(DiagnosticInfoOptimizationRemarkAnalysisFPCommute(PassName, Fn,
220 const char *PassName,
224 Ctx.diagnose(DiagnosticInfoOptimizationRemarkAnalysisAliasing(PassName, F
201 emitOptimizationRemarkAnalysis(LLVMContext &Ctx, const char *PassName, const Function &Fn, const DebugLoc &DLoc, const Twine &Msg) argument
210 emitOptimizationRemarkAnalysisFPCommute(LLVMContext &Ctx, const char *PassName, const Function &Fn, const DebugLoc &DLoc, const Twine &Msg) argument
219 emitOptimizationRemarkAnalysisAliasing(LLVMContext &Ctx, const char *PassName, const Function &Fn, const DebugLoc &DLoc, const Twine &Msg) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h63 /// \brief Emit an analysis note for \p PassName with the debug location from
69 const char *PassName);
/external/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp75 const char *PassName) {
79 emitOptimizationRemarkAnalysis(TheFunction->getContext(), PassName,
72 emitAnalysis(const LoopAccessReport &Message, const Function *TheFunction, const Loop *TheLoop, const char *PassName) argument

Completed in 387 milliseconds