/external/clang/test/CodeGenCXX/ |
H A D | 2004-09-27-DidntEmitTemplate.cpp | 9 template<typename PassName>
|
/external/llvm/tools/opt/ |
H A D | PassPrinters.cpp | 30 std::string PassName; member in struct:__anon13097::FunctionPassPrinter 36 PassName = "FunctionPass Printer: " + PassToPrintName; 49 const char *getPassName() const override { return PassName.c_str(); } 63 std::string PassName; member in struct:__anon13097::CallGraphSCCPassPrinter 69 PassName = "CallGraphSCCPass Printer: " + PassToPrintName; 86 const char *getPassName() const override { return PassName.c_str(); } 100 std::string PassName; member in struct:__anon13097::ModulePassPrinter 106 PassName = "ModulePass Printer: " + PassToPrintName; 118 const char *getPassName() const override { return PassName.c_str(); } 132 std::string PassName; member in struct:__anon13097::LoopPassPrinter 165 std::string PassName; member in struct:__anon13097::RegionPassPrinter 200 std::string PassName; member in struct:__anon13097::BasicBlockPassPrinter [all...] |
/external/llvm/include/llvm/IR/ |
H A D | DiagnosticInfo.h | 281 /// \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 D | PassInfo.h | 36 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 D | PassSupport.h | 85 #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 D | DiagnosticInfo.cpp | 188 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 D | LoopAccessAnalysis.h | 63 /// \brief Emit an analysis note for \p PassName with the debug location from 69 const char *PassName);
|
/external/llvm/lib/Analysis/ |
H A D | LoopAccessAnalysis.cpp | 75 const char *PassName) { 79 emitOptimizationRemarkAnalysis(TheFunction->getContext(), PassName, 72 emitAnalysis(const LoopAccessReport &Message, const Function *TheFunction, const Loop *TheLoop, const char *PassName) argument
|